styles.css 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450
  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. #u77958_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. #u77958 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u77958 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u77958_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u77959_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. #u77959 {
  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. #u77959 .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. #u77959_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u77960_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. #u77960 {
  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. #u77960 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u77960_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u77961 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u77962_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u77962 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u77962 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u77962_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u77963_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. #u77963 {
  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. #u77963 .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. #u77963_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u77964_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. #u77964 {
  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. #u77964 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u77964_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u77965 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u77966_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. #u77966_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. #u77966_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. #u77966 {
  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. #u77966 .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. #u77966_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. #u77966.disabled {
  356. }
  357. .u77966_input_option {
  358. font-size:14px;
  359. }
  360. #u77967_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u77967 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u77967 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u77967_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u77968_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. #u77968 {
  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. #u77968 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u77968_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u77969_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. #u77969 {
  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. #u77969 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u77969_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u77970 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u77971_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. #u77971 {
  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. #u77971 .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. #u77971_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u77972_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u77972 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u77972 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u77972_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u77973 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u77974_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. #u77974 {
  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. #u77974 .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. #u77974_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u77975_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u77975 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u77975 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u77975_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u77976 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u77977_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. #u77977 {
  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. #u77977 .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. #u77977_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u77978_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u77978 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u77978 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u77978_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u77979 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u77980_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. #u77980 {
  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. #u77980 .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. #u77980_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u77981_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u77981 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u77981 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u77981_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u77982 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u77983_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. #u77983 {
  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. #u77983 .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. #u77983_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u77984_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u77984 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u77984 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u77984_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u77985 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u77986_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. #u77986 {
  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. #u77986 .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. #u77986_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u77987_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u77987 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u77987 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u77987_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u77988 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u77989_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. #u77989 {
  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. #u77989 .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. #u77989_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u77990_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u77990 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u77990 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u77990_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u77991 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u77992_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. #u77992 {
  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. #u77992 .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. #u77992_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u77993_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u77993 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u77993 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u77993_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u77994 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u77995_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. #u77995 {
  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. #u77995 .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. #u77995_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u77996_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u77996 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u77996 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u77996_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u77997 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u77998_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. #u77998 {
  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. #u77998 .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. #u77998_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u77999_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u77999 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u77999 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u77999_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u78000_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. #u78000 {
  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. #u78000 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u78000_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u78001_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u78001 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u78001 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u78001_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u78002_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. #u78002 {
  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. #u78002 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u78002_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u78003_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u78003 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u78003 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u78003_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u78004 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u78005_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. #u78005 {
  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. #u78005 .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. #u78005_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u78006_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u78006 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u78006 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u78006_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u78007 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u78008_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. #u78008 {
  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. #u78008 .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. #u78008_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u78009_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u78009 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u78009 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u78009_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u78010_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u78010 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u78010 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u78010_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u78011_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u78011 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:71px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u78011 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u78011_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u78012_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:55px;
  1725. height:30px;
  1726. background:inherit;
  1727. background-color:rgba(255, 255, 255, 1);
  1728. box-sizing:border-box;
  1729. border-width:1px;
  1730. border-style:solid;
  1731. border-color:rgba(170, 170, 170, 1);
  1732. border-radius:4px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#555555;
  1741. }
  1742. #u78012 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:570px;
  1746. top:156px;
  1747. width:55px;
  1748. height:30px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. color:#555555;
  1755. }
  1756. #u78012 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:5px 15px 5px 15px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u78012_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u78013 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:0px;
  1774. height:0px;
  1775. }
  1776. #u78014_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:140px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 1);
  1785. box-sizing:border-box;
  1786. border-width:1px;
  1787. border-style:solid;
  1788. border-color:rgba(201, 201, 201, 1);
  1789. border-radius:4px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. font-family:'Microsoft YaHei', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#CCCCCC;
  1798. text-align:left;
  1799. }
  1800. #u78014 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:351px;
  1804. top:156px;
  1805. width:140px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'Microsoft YaHei', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#CCCCCC;
  1813. text-align:left;
  1814. }
  1815. #u78014 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 8px 2px 8px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u78014_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. visibility:hidden;
  1827. }
  1828. #u78015_input {
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:127px;
  1833. height:25px;
  1834. padding:2px 2px 2px 2px;
  1835. font-family:'Microsoft YaHei', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:10px;
  1839. letter-spacing:normal;
  1840. color:#000000;
  1841. vertical-align:none;
  1842. text-align:left;
  1843. text-transform:none;
  1844. background-color:transparent;
  1845. border-color:transparent;
  1846. }
  1847. #u78015_input.disabled {
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:127px;
  1852. height:25px;
  1853. padding:2px 2px 2px 2px;
  1854. font-family:'Microsoft YaHei', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:10px;
  1858. letter-spacing:normal;
  1859. color:#000000;
  1860. vertical-align:none;
  1861. text-align:left;
  1862. text-transform:none;
  1863. background-color:transparent;
  1864. border-color:transparent;
  1865. }
  1866. #u78015_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:127px;
  1872. height:25px;
  1873. background:inherit;
  1874. background-color:rgba(255, 255, 255, 1);
  1875. border:none;
  1876. border-radius:0px;
  1877. -moz-box-shadow:none;
  1878. -webkit-box-shadow:none;
  1879. box-shadow:none;
  1880. font-family:'Microsoft YaHei', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:10px;
  1884. }
  1885. #u78015 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:359px;
  1889. top:157px;
  1890. width:127px;
  1891. height:25px;
  1892. display:flex;
  1893. font-family:'Microsoft YaHei', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:10px;
  1897. }
  1898. #u78015 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 2px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u78015_div.disabled {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:127px;
  1911. height:25px;
  1912. background:inherit;
  1913. background-color:rgba(240, 240, 240, 1);
  1914. border:none;
  1915. border-radius:0px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'Microsoft YaHei', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:10px;
  1923. }
  1924. #u78015.disabled {
  1925. }
  1926. #u78016_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:59px;
  1932. height:30px;
  1933. background:inherit;
  1934. background-color:rgba(0, 153, 255, 1);
  1935. box-sizing:border-box;
  1936. border-width:1px;
  1937. border-style:solid;
  1938. border-color:rgba(0, 153, 255, 1);
  1939. border-radius:4px;
  1940. -moz-box-shadow:none;
  1941. -webkit-box-shadow:none;
  1942. box-shadow:none;
  1943. font-family:'Microsoft YaHei', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. color:#FFFFFF;
  1948. }
  1949. #u78016 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:501px;
  1953. top:156px;
  1954. width:59px;
  1955. height:30px;
  1956. display:flex;
  1957. font-family:'Microsoft YaHei', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:14px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u78016 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:5px 15px 5px 15px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u78016_text {
  1971. border-width:0px;
  1972. white-space:nowrap;
  1973. text-transform:none;
  1974. }
  1975. #u78017 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:0px;
  1981. height:0px;
  1982. }
  1983. #u78018_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:140px;
  1989. height:30px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 1);
  1992. box-sizing:border-box;
  1993. border-width:1px;
  1994. border-style:solid;
  1995. border-color:rgba(201, 201, 201, 1);
  1996. border-radius:4px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. font-family:'Microsoft YaHei', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. color:#CCCCCC;
  2005. text-align:left;
  2006. }
  2007. #u78018 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:1101px;
  2011. top:116px;
  2012. width:140px;
  2013. height:30px;
  2014. display:flex;
  2015. font-family:'Microsoft YaHei', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:14px;
  2019. color:#CCCCCC;
  2020. text-align:left;
  2021. }
  2022. #u78018 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 8px 2px 8px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u78018_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. visibility:hidden;
  2034. }
  2035. #u78019_input {
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:127px;
  2040. height:25px;
  2041. padding:2px 2px 2px 2px;
  2042. font-family:'Microsoft YaHei', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. letter-spacing:normal;
  2047. color:#000000;
  2048. vertical-align:none;
  2049. text-align:left;
  2050. text-transform:none;
  2051. background-color:transparent;
  2052. border-color:transparent;
  2053. }
  2054. #u78019_input.disabled {
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:127px;
  2059. height:25px;
  2060. padding:2px 2px 2px 2px;
  2061. font-family:'Microsoft YaHei', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:10px;
  2065. letter-spacing:normal;
  2066. color:#000000;
  2067. vertical-align:none;
  2068. text-align:left;
  2069. text-transform:none;
  2070. background-color:transparent;
  2071. border-color:transparent;
  2072. }
  2073. #u78019_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:127px;
  2079. height:25px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 1);
  2082. border:none;
  2083. border-radius:0px;
  2084. -moz-box-shadow:none;
  2085. -webkit-box-shadow:none;
  2086. box-shadow:none;
  2087. font-family:'Microsoft YaHei', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:10px;
  2091. }
  2092. #u78019 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:1109px;
  2096. top:117px;
  2097. width:127px;
  2098. height:25px;
  2099. display:flex;
  2100. font-family:'Microsoft YaHei', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:10px;
  2104. }
  2105. #u78019 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 2px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u78019_div.disabled {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:127px;
  2118. height:25px;
  2119. background:inherit;
  2120. background-color:rgba(240, 240, 240, 1);
  2121. border:none;
  2122. border-radius:0px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'Microsoft YaHei', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. }
  2131. #u78019.disabled {
  2132. }
  2133. #u78020 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:0px;
  2139. height:0px;
  2140. }
  2141. #u78021_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:140px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 1);
  2150. box-sizing:border-box;
  2151. border-width:1px;
  2152. border-style:solid;
  2153. border-color:rgba(215, 215, 215, 1);
  2154. border-radius:4px;
  2155. -moz-box-shadow:none;
  2156. -webkit-box-shadow:none;
  2157. box-shadow:none;
  2158. font-size:11px;
  2159. }
  2160. #u78021 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:501px;
  2164. top:116px;
  2165. width:140px;
  2166. height:30px;
  2167. display:flex;
  2168. font-size:11px;
  2169. }
  2170. #u78021 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u78021_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u78022_input {
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:123px;
  2188. height:23px;
  2189. padding:2px 2px 2px 2px;
  2190. font-family:'ArialMT', 'Arial', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:11px;
  2194. letter-spacing:normal;
  2195. color:#AAAAAA;
  2196. vertical-align:none;
  2197. text-align:left;
  2198. text-transform:none;
  2199. background-color:transparent;
  2200. border-color:transparent;
  2201. }
  2202. #u78022_input.disabled {
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:123px;
  2207. height:23px;
  2208. padding:2px 2px 2px 2px;
  2209. font-family:'ArialMT', 'Arial', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:11px;
  2213. letter-spacing:normal;
  2214. color:#AAAAAA;
  2215. vertical-align:none;
  2216. text-align:left;
  2217. text-transform:none;
  2218. background-color:transparent;
  2219. border-color:transparent;
  2220. }
  2221. #u78022_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:123px;
  2227. height:23px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 1);
  2230. border:none;
  2231. border-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-size:11px;
  2236. color:#AAAAAA;
  2237. }
  2238. #u78022 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:507px;
  2242. top:118px;
  2243. width:123px;
  2244. height:23px;
  2245. display:flex;
  2246. font-size:11px;
  2247. color:#AAAAAA;
  2248. }
  2249. #u78022 .text {
  2250. position:absolute;
  2251. align-self:flex-start;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u78022_div.disabled {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:123px;
  2262. height:23px;
  2263. background:inherit;
  2264. background-color:rgba(240, 240, 240, 1);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. font-size:11px;
  2271. color:#AAAAAA;
  2272. }
  2273. #u78022.disabled {
  2274. }
  2275. .u78022_input_option {
  2276. font-size:11px;
  2277. }
  2278. #u78023 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:0px;
  2284. height:0px;
  2285. }
  2286. #u78024_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:140px;
  2292. height:30px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 1);
  2295. box-sizing:border-box;
  2296. border-width:1px;
  2297. border-style:solid;
  2298. border-color:rgba(215, 215, 215, 1);
  2299. border-radius:4px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-size:11px;
  2304. }
  2305. #u78024 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:651px;
  2309. top:116px;
  2310. width:140px;
  2311. height:30px;
  2312. display:flex;
  2313. font-size:11px;
  2314. }
  2315. #u78024 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 2px 2px 2px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u78024_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. visibility:hidden;
  2327. }
  2328. #u78025_input {
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:123px;
  2333. height:23px;
  2334. padding:2px 2px 2px 2px;
  2335. font-family:'ArialMT', 'Arial', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:11px;
  2339. letter-spacing:normal;
  2340. color:#AAAAAA;
  2341. vertical-align:none;
  2342. text-align:left;
  2343. text-transform:none;
  2344. background-color:transparent;
  2345. border-color:transparent;
  2346. }
  2347. #u78025_input.disabled {
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:123px;
  2352. height:23px;
  2353. padding:2px 2px 2px 2px;
  2354. font-family:'ArialMT', 'Arial', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:11px;
  2358. letter-spacing:normal;
  2359. color:#AAAAAA;
  2360. vertical-align:none;
  2361. text-align:left;
  2362. text-transform:none;
  2363. background-color:transparent;
  2364. border-color:transparent;
  2365. }
  2366. #u78025_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:123px;
  2372. height:23px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 1);
  2375. border:none;
  2376. border-radius:0px;
  2377. -moz-box-shadow:none;
  2378. -webkit-box-shadow:none;
  2379. box-shadow:none;
  2380. font-size:11px;
  2381. color:#AAAAAA;
  2382. }
  2383. #u78025 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:657px;
  2387. top:118px;
  2388. width:123px;
  2389. height:23px;
  2390. display:flex;
  2391. font-size:11px;
  2392. color:#AAAAAA;
  2393. }
  2394. #u78025 .text {
  2395. position:absolute;
  2396. align-self:flex-start;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u78025_div.disabled {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:123px;
  2407. height:23px;
  2408. background:inherit;
  2409. background-color:rgba(240, 240, 240, 1);
  2410. border:none;
  2411. border-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-size:11px;
  2416. color:#AAAAAA;
  2417. }
  2418. #u78025.disabled {
  2419. }
  2420. .u78025_input_option {
  2421. font-size:11px;
  2422. }
  2423. #u78026 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:0px;
  2429. height:0px;
  2430. }
  2431. #u78027_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:140px;
  2437. height:30px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 1);
  2440. box-sizing:border-box;
  2441. border-width:1px;
  2442. border-style:solid;
  2443. border-color:rgba(215, 215, 215, 1);
  2444. border-radius:4px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-size:11px;
  2449. }
  2450. #u78027 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:351px;
  2454. top:115px;
  2455. width:140px;
  2456. height:30px;
  2457. display:flex;
  2458. font-size:11px;
  2459. }
  2460. #u78027 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u78027_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u78028_input {
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:123px;
  2478. height:23px;
  2479. padding:2px 2px 2px 2px;
  2480. font-family:'ArialMT', 'Arial', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:11px;
  2484. letter-spacing:normal;
  2485. color:#AAAAAA;
  2486. vertical-align:none;
  2487. text-align:left;
  2488. text-transform:none;
  2489. background-color:transparent;
  2490. border-color:transparent;
  2491. }
  2492. #u78028_input.disabled {
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:123px;
  2497. height:23px;
  2498. padding:2px 2px 2px 2px;
  2499. font-family:'ArialMT', 'Arial', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:11px;
  2503. letter-spacing:normal;
  2504. color:#AAAAAA;
  2505. vertical-align:none;
  2506. text-align:left;
  2507. text-transform:none;
  2508. background-color:transparent;
  2509. border-color:transparent;
  2510. }
  2511. #u78028_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:123px;
  2517. height:23px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 1);
  2520. border:none;
  2521. border-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-size:11px;
  2526. color:#AAAAAA;
  2527. }
  2528. #u78028 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:357px;
  2532. top:117px;
  2533. width:123px;
  2534. height:23px;
  2535. display:flex;
  2536. font-size:11px;
  2537. color:#AAAAAA;
  2538. }
  2539. #u78028 .text {
  2540. position:absolute;
  2541. align-self:flex-start;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u78028_div.disabled {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:123px;
  2552. height:23px;
  2553. background:inherit;
  2554. background-color:rgba(240, 240, 240, 1);
  2555. border:none;
  2556. border-radius:0px;
  2557. -moz-box-shadow:none;
  2558. -webkit-box-shadow:none;
  2559. box-shadow:none;
  2560. font-size:11px;
  2561. color:#AAAAAA;
  2562. }
  2563. #u78028.disabled {
  2564. }
  2565. .u78028_input_option {
  2566. font-size:11px;
  2567. }
  2568. #u78029 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:0px;
  2574. height:0px;
  2575. }
  2576. #u78030_div {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:140px;
  2582. height:30px;
  2583. background:inherit;
  2584. background-color:rgba(255, 255, 255, 1);
  2585. box-sizing:border-box;
  2586. border-width:1px;
  2587. border-style:solid;
  2588. border-color:rgba(201, 201, 201, 1);
  2589. border-radius:4px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'Microsoft YaHei', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. color:#CCCCCC;
  2598. text-align:left;
  2599. }
  2600. #u78030 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:1251px;
  2604. top:116px;
  2605. width:140px;
  2606. height:30px;
  2607. display:flex;
  2608. font-family:'Microsoft YaHei', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:14px;
  2612. color:#CCCCCC;
  2613. text-align:left;
  2614. }
  2615. #u78030 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 8px 2px 8px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u78030_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u78031_input {
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:127px;
  2633. height:25px;
  2634. padding:2px 2px 2px 2px;
  2635. font-family:'Microsoft YaHei', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:10px;
  2639. letter-spacing:normal;
  2640. color:#000000;
  2641. vertical-align:none;
  2642. text-align:left;
  2643. text-transform:none;
  2644. background-color:transparent;
  2645. border-color:transparent;
  2646. }
  2647. #u78031_input.disabled {
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:127px;
  2652. height:25px;
  2653. padding:2px 2px 2px 2px;
  2654. font-family:'Microsoft YaHei', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:10px;
  2658. letter-spacing:normal;
  2659. color:#000000;
  2660. vertical-align:none;
  2661. text-align:left;
  2662. text-transform:none;
  2663. background-color:transparent;
  2664. border-color:transparent;
  2665. }
  2666. #u78031_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:127px;
  2672. height:25px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 1);
  2675. border:none;
  2676. border-radius:0px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'Microsoft YaHei', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:10px;
  2684. }
  2685. #u78031 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:1259px;
  2689. top:117px;
  2690. width:127px;
  2691. height:25px;
  2692. display:flex;
  2693. font-family:'Microsoft YaHei', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:10px;
  2697. }
  2698. #u78031 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u78031_div.disabled {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:127px;
  2711. height:25px;
  2712. background:inherit;
  2713. background-color:rgba(240, 240, 240, 1);
  2714. border:none;
  2715. border-radius:0px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. font-family:'Microsoft YaHei', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:10px;
  2723. }
  2724. #u78031.disabled {
  2725. }
  2726. #u78032_div {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:55px;
  2732. height:30px;
  2733. background:inherit;
  2734. background-color:rgba(255, 255, 255, 1);
  2735. box-sizing:border-box;
  2736. border-width:1px;
  2737. border-style:solid;
  2738. border-color:rgba(170, 170, 170, 1);
  2739. border-radius:4px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#555555;
  2748. }
  2749. #u78032 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:351px;
  2753. top:205px;
  2754. width:55px;
  2755. height:30px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. color:#555555;
  2762. }
  2763. #u78032 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:5px 15px 5px 15px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u78032_text {
  2771. border-width:0px;
  2772. white-space:nowrap;
  2773. text-transform:none;
  2774. }
  2775. #u78033 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:0px;
  2781. height:0px;
  2782. }
  2783. #u78034_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:140px;
  2789. height:30px;
  2790. background:inherit;
  2791. background-color:rgba(255, 255, 255, 1);
  2792. box-sizing:border-box;
  2793. border-width:1px;
  2794. border-style:solid;
  2795. border-color:rgba(215, 215, 215, 1);
  2796. border-radius:4px;
  2797. -moz-box-shadow:none;
  2798. -webkit-box-shadow:none;
  2799. box-shadow:none;
  2800. font-size:11px;
  2801. }
  2802. #u78034 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:801px;
  2806. top:116px;
  2807. width:140px;
  2808. height:30px;
  2809. display:flex;
  2810. font-size:11px;
  2811. }
  2812. #u78034 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 2px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u78034_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u78035_input {
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:123px;
  2830. height:23px;
  2831. padding:2px 2px 2px 2px;
  2832. font-family:'ArialMT', 'Arial', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:11px;
  2836. letter-spacing:normal;
  2837. color:#AAAAAA;
  2838. vertical-align:none;
  2839. text-align:left;
  2840. text-transform:none;
  2841. background-color:transparent;
  2842. border-color:transparent;
  2843. }
  2844. #u78035_input.disabled {
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:123px;
  2849. height:23px;
  2850. padding:2px 2px 2px 2px;
  2851. font-family:'ArialMT', 'Arial', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:11px;
  2855. letter-spacing:normal;
  2856. color:#AAAAAA;
  2857. vertical-align:none;
  2858. text-align:left;
  2859. text-transform:none;
  2860. background-color:transparent;
  2861. border-color:transparent;
  2862. }
  2863. #u78035_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:123px;
  2869. height:23px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 1);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-size:11px;
  2878. color:#AAAAAA;
  2879. }
  2880. #u78035 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:807px;
  2884. top:118px;
  2885. width:123px;
  2886. height:23px;
  2887. display:flex;
  2888. font-size:11px;
  2889. color:#AAAAAA;
  2890. }
  2891. #u78035 .text {
  2892. position:absolute;
  2893. align-self:flex-start;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u78035_div.disabled {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:123px;
  2904. height:23px;
  2905. background:inherit;
  2906. background-color:rgba(240, 240, 240, 1);
  2907. border:none;
  2908. border-radius:0px;
  2909. -moz-box-shadow:none;
  2910. -webkit-box-shadow:none;
  2911. box-shadow:none;
  2912. font-size:11px;
  2913. color:#AAAAAA;
  2914. }
  2915. #u78035.disabled {
  2916. }
  2917. .u78035_input_option {
  2918. font-size:11px;
  2919. }
  2920. #u78036 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:0px;
  2926. height:0px;
  2927. }
  2928. #u78037_div {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:140px;
  2934. height:30px;
  2935. background:inherit;
  2936. background-color:rgba(255, 255, 255, 1);
  2937. box-sizing:border-box;
  2938. border-width:1px;
  2939. border-style:solid;
  2940. border-color:rgba(215, 215, 215, 1);
  2941. border-radius:4px;
  2942. -moz-box-shadow:none;
  2943. -webkit-box-shadow:none;
  2944. box-shadow:none;
  2945. font-size:11px;
  2946. }
  2947. #u78037 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:951px;
  2951. top:116px;
  2952. width:140px;
  2953. height:30px;
  2954. display:flex;
  2955. font-size:11px;
  2956. }
  2957. #u78037 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 2px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u78037_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. visibility:hidden;
  2969. }
  2970. #u78038_input {
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:123px;
  2975. height:23px;
  2976. padding:2px 2px 2px 2px;
  2977. font-family:'ArialMT', 'Arial', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:11px;
  2981. letter-spacing:normal;
  2982. color:#AAAAAA;
  2983. vertical-align:none;
  2984. text-align:left;
  2985. text-transform:none;
  2986. background-color:transparent;
  2987. border-color:transparent;
  2988. }
  2989. #u78038_input.disabled {
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:123px;
  2994. height:23px;
  2995. padding:2px 2px 2px 2px;
  2996. font-family:'ArialMT', 'Arial', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:11px;
  3000. letter-spacing:normal;
  3001. color:#AAAAAA;
  3002. vertical-align:none;
  3003. text-align:left;
  3004. text-transform:none;
  3005. background-color:transparent;
  3006. border-color:transparent;
  3007. }
  3008. #u78038_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:123px;
  3014. height:23px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 1);
  3017. border:none;
  3018. border-radius:0px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-size:11px;
  3023. color:#AAAAAA;
  3024. }
  3025. #u78038 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:957px;
  3029. top:118px;
  3030. width:123px;
  3031. height:23px;
  3032. display:flex;
  3033. font-size:11px;
  3034. color:#AAAAAA;
  3035. }
  3036. #u78038 .text {
  3037. position:absolute;
  3038. align-self:flex-start;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u78038_div.disabled {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:123px;
  3049. height:23px;
  3050. background:inherit;
  3051. background-color:rgba(240, 240, 240, 1);
  3052. border:none;
  3053. border-radius:0px;
  3054. -moz-box-shadow:none;
  3055. -webkit-box-shadow:none;
  3056. box-shadow:none;
  3057. font-size:11px;
  3058. color:#AAAAAA;
  3059. }
  3060. #u78038.disabled {
  3061. }
  3062. .u78038_input_option {
  3063. font-size:11px;
  3064. }
  3065. #u78039 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:0px;
  3071. height:0px;
  3072. }
  3073. #u78040 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:351px;
  3077. top:245px;
  3078. width:1222px;
  3079. height:413px;
  3080. }
  3081. #u78041_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:70px;
  3087. height:43px;
  3088. }
  3089. #u78041 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:70px;
  3095. height:43px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. color:#FFFFFF;
  3102. text-align:left;
  3103. line-height:30px;
  3104. }
  3105. #u78041 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 10px 2px 10px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u78041_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. }
  3117. #u78042_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:70px;
  3123. height:43px;
  3124. }
  3125. #u78042 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:70px;
  3129. top:0px;
  3130. width:70px;
  3131. height:43px;
  3132. display:flex;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:14px;
  3137. color:#FFFFFF;
  3138. text-align:left;
  3139. line-height:30px;
  3140. }
  3141. #u78042 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 10px 2px 10px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u78042_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. }
  3153. #u78043_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:101px;
  3159. height:43px;
  3160. }
  3161. #u78043 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:140px;
  3165. top:0px;
  3166. width:101px;
  3167. height:43px;
  3168. display:flex;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:14px;
  3173. color:#FFFFFF;
  3174. text-align:left;
  3175. line-height:30px;
  3176. }
  3177. #u78043 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 10px 2px 10px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u78043_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. }
  3189. #u78044_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:101px;
  3195. height:43px;
  3196. }
  3197. #u78044 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:241px;
  3201. top:0px;
  3202. width:101px;
  3203. height:43px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:14px;
  3209. color:#FFFFFF;
  3210. text-align:left;
  3211. line-height:30px;
  3212. }
  3213. #u78044 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 10px 2px 10px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u78044_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u78045_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:101px;
  3231. height:43px;
  3232. }
  3233. #u78045 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:342px;
  3237. top:0px;
  3238. width:101px;
  3239. height:43px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:14px;
  3245. color:#FFFFFF;
  3246. text-align:left;
  3247. line-height:30px;
  3248. }
  3249. #u78045 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 10px 2px 10px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u78045_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. }
  3261. #u78046_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:100px;
  3267. height:43px;
  3268. }
  3269. #u78046 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:443px;
  3273. top:0px;
  3274. width:100px;
  3275. height:43px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:14px;
  3281. color:#FFFFFF;
  3282. text-align:left;
  3283. line-height:30px;
  3284. }
  3285. #u78046 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 10px 2px 10px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u78046_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u78047_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:162px;
  3303. height:43px;
  3304. }
  3305. #u78047 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:543px;
  3309. top:0px;
  3310. width:162px;
  3311. height:43px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. color:#FFFFFF;
  3318. text-align:left;
  3319. line-height:30px;
  3320. }
  3321. #u78047 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 10px 2px 10px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u78047_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. }
  3333. #u78048_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:101px;
  3339. height:43px;
  3340. }
  3341. #u78048 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:705px;
  3345. top:0px;
  3346. width:101px;
  3347. height:43px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. color:#FFFFFF;
  3354. text-align:left;
  3355. line-height:30px;
  3356. }
  3357. #u78048 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 10px 2px 10px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u78048_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. }
  3369. #u78049_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:101px;
  3375. height:43px;
  3376. }
  3377. #u78049 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:806px;
  3381. top:0px;
  3382. width:101px;
  3383. height:43px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. color:#FFFFFF;
  3390. text-align:left;
  3391. line-height:30px;
  3392. }
  3393. #u78049 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 10px 2px 10px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u78049_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. }
  3405. #u78050_img {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:81px;
  3411. height:43px;
  3412. }
  3413. #u78050 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:907px;
  3417. top:0px;
  3418. width:81px;
  3419. height:43px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:14px;
  3425. color:#FFFFFF;
  3426. text-align:left;
  3427. line-height:30px;
  3428. }
  3429. #u78050 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 10px 2px 10px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u78050_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u78051_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:81px;
  3447. height:43px;
  3448. }
  3449. #u78051 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:988px;
  3453. top:0px;
  3454. width:81px;
  3455. height:43px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. color:#FFFFFF;
  3462. text-align:left;
  3463. line-height:30px;
  3464. }
  3465. #u78051 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 10px 2px 10px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u78051_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. }
  3477. #u78052_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:153px;
  3483. height:43px;
  3484. }
  3485. #u78052 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:1069px;
  3489. top:0px;
  3490. width:153px;
  3491. height:43px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:14px;
  3497. color:#FFFFFF;
  3498. text-align:left;
  3499. line-height:30px;
  3500. }
  3501. #u78052 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 10px 2px 10px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u78052_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. }
  3513. #u78053_img {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:70px;
  3519. height:50px;
  3520. }
  3521. #u78053 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:43px;
  3526. width:70px;
  3527. height:50px;
  3528. display:flex;
  3529. font-size:14px;
  3530. text-align:left;
  3531. }
  3532. #u78053 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 10px 2px 10px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u78053_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u78054_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:70px;
  3551. height:50px;
  3552. }
  3553. #u78054 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:70px;
  3557. top:43px;
  3558. width:70px;
  3559. height:50px;
  3560. display:flex;
  3561. font-size:14px;
  3562. text-align:left;
  3563. }
  3564. #u78054 .text {
  3565. position:absolute;
  3566. align-self:center;
  3567. padding:2px 10px 2px 10px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u78054_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. visibility:hidden;
  3576. }
  3577. #u78055_img {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:101px;
  3583. height:50px;
  3584. }
  3585. #u78055 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:140px;
  3589. top:43px;
  3590. width:101px;
  3591. height:50px;
  3592. display:flex;
  3593. font-size:14px;
  3594. text-align:left;
  3595. }
  3596. #u78055 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 10px 2px 10px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u78055_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. }
  3608. #u78056_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:101px;
  3614. height:50px;
  3615. }
  3616. #u78056 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:241px;
  3620. top:43px;
  3621. width:101px;
  3622. height:50px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:14px;
  3628. text-align:left;
  3629. }
  3630. #u78056 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 10px 2px 10px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u78056_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. }
  3642. #u78057_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:101px;
  3648. height:50px;
  3649. }
  3650. #u78057 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:342px;
  3654. top:43px;
  3655. width:101px;
  3656. height:50px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:14px;
  3662. text-align:left;
  3663. }
  3664. #u78057 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 10px 2px 10px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u78057_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u78058_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:100px;
  3683. height:50px;
  3684. }
  3685. #u78058 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:443px;
  3689. top:43px;
  3690. width:100px;
  3691. height:50px;
  3692. display:flex;
  3693. font-size:14px;
  3694. text-align:left;
  3695. }
  3696. #u78058 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 10px 2px 10px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u78058_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u78059_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:162px;
  3715. height:50px;
  3716. }
  3717. #u78059 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:543px;
  3721. top:43px;
  3722. width:162px;
  3723. height:50px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. text-align:left;
  3729. }
  3730. #u78059 .text {
  3731. position:absolute;
  3732. align-self:center;
  3733. padding:2px 10px 2px 10px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u78059_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. }
  3742. #u78060_img {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:101px;
  3748. height:50px;
  3749. }
  3750. #u78060 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:705px;
  3754. top:43px;
  3755. width:101px;
  3756. height:50px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. text-align:left;
  3762. }
  3763. #u78060 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 10px 2px 10px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u78060_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u78061_img {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:101px;
  3782. height:50px;
  3783. }
  3784. #u78061 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:806px;
  3788. top:43px;
  3789. width:101px;
  3790. height:50px;
  3791. display:flex;
  3792. font-size:14px;
  3793. text-align:left;
  3794. }
  3795. #u78061 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 10px 2px 10px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u78061_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u78062_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:81px;
  3814. height:50px;
  3815. }
  3816. #u78062 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:907px;
  3820. top:43px;
  3821. width:81px;
  3822. height:50px;
  3823. display:flex;
  3824. font-size:14px;
  3825. text-align:left;
  3826. }
  3827. #u78062 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 10px 2px 10px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u78062_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. visibility:hidden;
  3839. }
  3840. #u78063_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:81px;
  3846. height:50px;
  3847. }
  3848. #u78063 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:988px;
  3852. top:43px;
  3853. width:81px;
  3854. height:50px;
  3855. display:flex;
  3856. font-size:14px;
  3857. text-align:left;
  3858. }
  3859. #u78063 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 10px 2px 10px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u78063_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u78064_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:153px;
  3878. height:50px;
  3879. }
  3880. #u78064 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1069px;
  3884. top:43px;
  3885. width:153px;
  3886. height:50px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. color:#0099FF;
  3893. text-align:left;
  3894. }
  3895. #u78064 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 10px 2px 10px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u78064_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. }
  3907. #u78065_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:70px;
  3913. height:50px;
  3914. }
  3915. #u78065 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:93px;
  3920. width:70px;
  3921. height:50px;
  3922. display:flex;
  3923. font-size:14px;
  3924. text-align:left;
  3925. }
  3926. #u78065 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 10px 2px 10px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u78065_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u78066_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:70px;
  3945. height:50px;
  3946. }
  3947. #u78066 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:70px;
  3951. top:93px;
  3952. width:70px;
  3953. height:50px;
  3954. display:flex;
  3955. font-size:14px;
  3956. text-align:left;
  3957. }
  3958. #u78066 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 10px 2px 10px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u78066_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u78067_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:101px;
  3977. height:50px;
  3978. }
  3979. #u78067 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:140px;
  3983. top:93px;
  3984. width:101px;
  3985. height:50px;
  3986. display:flex;
  3987. font-size:14px;
  3988. text-align:left;
  3989. }
  3990. #u78067 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 10px 2px 10px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u78067_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. }
  4002. #u78068_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:101px;
  4008. height:50px;
  4009. }
  4010. #u78068 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:241px;
  4014. top:93px;
  4015. width:101px;
  4016. height:50px;
  4017. display:flex;
  4018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4019. font-weight:400;
  4020. font-style:normal;
  4021. font-size:14px;
  4022. text-align:left;
  4023. }
  4024. #u78068 .text {
  4025. position:absolute;
  4026. align-self:center;
  4027. padding:2px 10px 2px 10px;
  4028. box-sizing:border-box;
  4029. width:100%;
  4030. }
  4031. #u78068_text {
  4032. border-width:0px;
  4033. word-wrap:break-word;
  4034. text-transform:none;
  4035. }
  4036. #u78069_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:101px;
  4042. height:50px;
  4043. }
  4044. #u78069 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:342px;
  4048. top:93px;
  4049. width:101px;
  4050. height:50px;
  4051. display:flex;
  4052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:14px;
  4056. text-align:left;
  4057. }
  4058. #u78069 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 10px 2px 10px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u78069_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u78070_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:100px;
  4077. height:50px;
  4078. }
  4079. #u78070 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:443px;
  4083. top:93px;
  4084. width:100px;
  4085. height:50px;
  4086. display:flex;
  4087. font-size:14px;
  4088. text-align:left;
  4089. }
  4090. #u78070 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 10px 2px 10px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u78070_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u78071_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:162px;
  4109. height:50px;
  4110. }
  4111. #u78071 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:543px;
  4115. top:93px;
  4116. width:162px;
  4117. height:50px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. text-align:left;
  4123. }
  4124. #u78071 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 10px 2px 10px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u78071_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. }
  4136. #u78072_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:101px;
  4142. height:50px;
  4143. }
  4144. #u78072 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:705px;
  4148. top:93px;
  4149. width:101px;
  4150. height:50px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. text-align:left;
  4156. }
  4157. #u78072 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 10px 2px 10px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u78072_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. visibility:hidden;
  4169. }
  4170. #u78073_img {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:101px;
  4176. height:50px;
  4177. }
  4178. #u78073 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:806px;
  4182. top:93px;
  4183. width:101px;
  4184. height:50px;
  4185. display:flex;
  4186. font-size:14px;
  4187. text-align:left;
  4188. }
  4189. #u78073 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 10px 2px 10px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u78073_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u78074_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:81px;
  4208. height:50px;
  4209. }
  4210. #u78074 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:907px;
  4214. top:93px;
  4215. width:81px;
  4216. height:50px;
  4217. display:flex;
  4218. font-size:14px;
  4219. text-align:left;
  4220. }
  4221. #u78074 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 10px 2px 10px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u78074_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u78075_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:81px;
  4240. height:50px;
  4241. }
  4242. #u78075 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:988px;
  4246. top:93px;
  4247. width:81px;
  4248. height:50px;
  4249. display:flex;
  4250. font-size:14px;
  4251. text-align:left;
  4252. }
  4253. #u78075 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 10px 2px 10px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u78075_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u78076_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:153px;
  4272. height:50px;
  4273. }
  4274. #u78076 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:1069px;
  4278. top:93px;
  4279. width:153px;
  4280. height:50px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:14px;
  4286. color:#0099FF;
  4287. text-align:left;
  4288. }
  4289. #u78076 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:2px 10px 2px 10px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u78076_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. }
  4301. #u78077_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:70px;
  4307. height:50px;
  4308. }
  4309. #u78077 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:143px;
  4314. width:70px;
  4315. height:50px;
  4316. display:flex;
  4317. font-size:14px;
  4318. text-align:left;
  4319. }
  4320. #u78077 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 10px 2px 10px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u78077_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u78078_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:70px;
  4339. height:50px;
  4340. }
  4341. #u78078 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:70px;
  4345. top:143px;
  4346. width:70px;
  4347. height:50px;
  4348. display:flex;
  4349. font-size:14px;
  4350. text-align:left;
  4351. }
  4352. #u78078 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 10px 2px 10px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u78078_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u78079_img {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:101px;
  4371. height:50px;
  4372. }
  4373. #u78079 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:140px;
  4377. top:143px;
  4378. width:101px;
  4379. height:50px;
  4380. display:flex;
  4381. font-size:14px;
  4382. text-align:left;
  4383. }
  4384. #u78079 .text {
  4385. position:absolute;
  4386. align-self:center;
  4387. padding:2px 10px 2px 10px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u78079_text {
  4392. border-width:0px;
  4393. word-wrap:break-word;
  4394. text-transform:none;
  4395. }
  4396. #u78080_img {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:101px;
  4402. height:50px;
  4403. }
  4404. #u78080 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:241px;
  4408. top:143px;
  4409. width:101px;
  4410. height:50px;
  4411. display:flex;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:14px;
  4416. text-align:left;
  4417. }
  4418. #u78080 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 10px 2px 10px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u78080_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. }
  4430. #u78081_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:101px;
  4436. height:50px;
  4437. }
  4438. #u78081 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:342px;
  4442. top:143px;
  4443. width:101px;
  4444. height:50px;
  4445. display:flex;
  4446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:14px;
  4450. text-align:left;
  4451. }
  4452. #u78081 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 10px 2px 10px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u78081_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u78082_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:100px;
  4471. height:50px;
  4472. }
  4473. #u78082 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:443px;
  4477. top:143px;
  4478. width:100px;
  4479. height:50px;
  4480. display:flex;
  4481. font-size:14px;
  4482. text-align:left;
  4483. }
  4484. #u78082 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 10px 2px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u78082_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u78083_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:162px;
  4503. height:50px;
  4504. }
  4505. #u78083 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:543px;
  4509. top:143px;
  4510. width:162px;
  4511. height:50px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. text-align:left;
  4517. }
  4518. #u78083 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 10px 2px 10px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u78083_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. }
  4530. #u78084_img {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:101px;
  4536. height:50px;
  4537. }
  4538. #u78084 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:705px;
  4542. top:143px;
  4543. width:101px;
  4544. height:50px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. text-align:left;
  4550. }
  4551. #u78084 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 10px 2px 10px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u78084_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u78085_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:101px;
  4570. height:50px;
  4571. }
  4572. #u78085 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:806px;
  4576. top:143px;
  4577. width:101px;
  4578. height:50px;
  4579. display:flex;
  4580. font-size:14px;
  4581. text-align:left;
  4582. }
  4583. #u78085 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 10px 2px 10px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u78085_text {
  4591. border-width:0px;
  4592. word-wrap:break-word;
  4593. text-transform:none;
  4594. visibility:hidden;
  4595. }
  4596. #u78086_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:81px;
  4602. height:50px;
  4603. }
  4604. #u78086 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:907px;
  4608. top:143px;
  4609. width:81px;
  4610. height:50px;
  4611. display:flex;
  4612. font-size:14px;
  4613. text-align:left;
  4614. }
  4615. #u78086 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 10px 2px 10px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u78086_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u78087_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:81px;
  4634. height:50px;
  4635. }
  4636. #u78087 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:988px;
  4640. top:143px;
  4641. width:81px;
  4642. height:50px;
  4643. display:flex;
  4644. font-size:14px;
  4645. text-align:left;
  4646. }
  4647. #u78087 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 10px 2px 10px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u78087_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u78088_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:153px;
  4666. height:50px;
  4667. }
  4668. #u78088 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:1069px;
  4672. top:143px;
  4673. width:153px;
  4674. height:50px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:14px;
  4680. text-align:left;
  4681. }
  4682. #u78088 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:2px 10px 2px 10px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u78088_text {
  4690. border-width:0px;
  4691. word-wrap:break-word;
  4692. text-transform:none;
  4693. }
  4694. #u78089_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:70px;
  4700. height:44px;
  4701. }
  4702. #u78089 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:193px;
  4707. width:70px;
  4708. height:44px;
  4709. display:flex;
  4710. font-size:14px;
  4711. text-align:left;
  4712. }
  4713. #u78089 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 10px 2px 10px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u78089_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u78090_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:70px;
  4732. height:44px;
  4733. }
  4734. #u78090 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:70px;
  4738. top:193px;
  4739. width:70px;
  4740. height:44px;
  4741. display:flex;
  4742. font-size:14px;
  4743. text-align:left;
  4744. }
  4745. #u78090 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 10px 2px 10px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u78090_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u78091_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:101px;
  4764. height:44px;
  4765. }
  4766. #u78091 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:140px;
  4770. top:193px;
  4771. width:101px;
  4772. height:44px;
  4773. display:flex;
  4774. font-size:14px;
  4775. text-align:left;
  4776. }
  4777. #u78091 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 10px 2px 10px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u78091_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u78092_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:101px;
  4796. height:44px;
  4797. }
  4798. #u78092 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:241px;
  4802. top:193px;
  4803. width:101px;
  4804. height:44px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. text-align:left;
  4811. }
  4812. #u78092 .text {
  4813. position:absolute;
  4814. align-self:center;
  4815. padding:2px 10px 2px 10px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u78092_text {
  4820. border-width:0px;
  4821. word-wrap:break-word;
  4822. text-transform:none;
  4823. visibility:hidden;
  4824. }
  4825. #u78093_img {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:101px;
  4831. height:44px;
  4832. }
  4833. #u78093 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:342px;
  4837. top:193px;
  4838. width:101px;
  4839. height:44px;
  4840. display:flex;
  4841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4842. font-weight:400;
  4843. font-style:normal;
  4844. font-size:14px;
  4845. text-align:left;
  4846. }
  4847. #u78093 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:2px 10px 2px 10px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u78093_text {
  4855. border-width:0px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. visibility:hidden;
  4859. }
  4860. #u78094_img {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:100px;
  4866. height:44px;
  4867. }
  4868. #u78094 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:443px;
  4872. top:193px;
  4873. width:100px;
  4874. height:44px;
  4875. display:flex;
  4876. font-size:14px;
  4877. text-align:left;
  4878. }
  4879. #u78094 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 10px 2px 10px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u78094_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u78095_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:162px;
  4898. height:44px;
  4899. }
  4900. #u78095 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:543px;
  4904. top:193px;
  4905. width:162px;
  4906. height:44px;
  4907. display:flex;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:14px;
  4912. text-align:left;
  4913. }
  4914. #u78095 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 10px 2px 10px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u78095_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u78096_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:101px;
  4933. height:44px;
  4934. }
  4935. #u78096 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:705px;
  4939. top:193px;
  4940. width:101px;
  4941. height:44px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. text-align:left;
  4947. }
  4948. #u78096 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 10px 2px 10px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u78096_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u78097_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:101px;
  4967. height:44px;
  4968. }
  4969. #u78097 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:806px;
  4973. top:193px;
  4974. width:101px;
  4975. height:44px;
  4976. display:flex;
  4977. font-size:14px;
  4978. text-align:left;
  4979. }
  4980. #u78097 .text {
  4981. position:absolute;
  4982. align-self:center;
  4983. padding:2px 10px 2px 10px;
  4984. box-sizing:border-box;
  4985. width:100%;
  4986. }
  4987. #u78097_text {
  4988. border-width:0px;
  4989. word-wrap:break-word;
  4990. text-transform:none;
  4991. visibility:hidden;
  4992. }
  4993. #u78098_img {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:81px;
  4999. height:44px;
  5000. }
  5001. #u78098 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:907px;
  5005. top:193px;
  5006. width:81px;
  5007. height:44px;
  5008. display:flex;
  5009. font-size:14px;
  5010. text-align:left;
  5011. }
  5012. #u78098 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 10px 2px 10px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u78098_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u78099_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:81px;
  5031. height:44px;
  5032. }
  5033. #u78099 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:988px;
  5037. top:193px;
  5038. width:81px;
  5039. height:44px;
  5040. display:flex;
  5041. font-size:14px;
  5042. text-align:left;
  5043. }
  5044. #u78099 .text {
  5045. position:absolute;
  5046. align-self:center;
  5047. padding:2px 10px 2px 10px;
  5048. box-sizing:border-box;
  5049. width:100%;
  5050. }
  5051. #u78099_text {
  5052. border-width:0px;
  5053. word-wrap:break-word;
  5054. text-transform:none;
  5055. visibility:hidden;
  5056. }
  5057. #u78100_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:153px;
  5063. height:44px;
  5064. }
  5065. #u78100 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:1069px;
  5069. top:193px;
  5070. width:153px;
  5071. height:44px;
  5072. display:flex;
  5073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5074. font-weight:400;
  5075. font-style:normal;
  5076. font-size:14px;
  5077. text-align:left;
  5078. }
  5079. #u78100 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 10px 2px 10px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u78100_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. }
  5091. #u78101_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:70px;
  5097. height:44px;
  5098. }
  5099. #u78101 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:237px;
  5104. width:70px;
  5105. height:44px;
  5106. display:flex;
  5107. font-size:14px;
  5108. text-align:left;
  5109. }
  5110. #u78101 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 10px 2px 10px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u78101_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u78102_img {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:70px;
  5129. height:44px;
  5130. }
  5131. #u78102 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:70px;
  5135. top:237px;
  5136. width:70px;
  5137. height:44px;
  5138. display:flex;
  5139. font-size:14px;
  5140. text-align:left;
  5141. }
  5142. #u78102 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:2px 10px 2px 10px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u78102_text {
  5150. border-width:0px;
  5151. word-wrap:break-word;
  5152. text-transform:none;
  5153. visibility:hidden;
  5154. }
  5155. #u78103_img {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:101px;
  5161. height:44px;
  5162. }
  5163. #u78103 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:140px;
  5167. top:237px;
  5168. width:101px;
  5169. height:44px;
  5170. display:flex;
  5171. font-size:14px;
  5172. text-align:left;
  5173. }
  5174. #u78103 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 10px 2px 10px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u78103_text {
  5182. border-width:0px;
  5183. word-wrap:break-word;
  5184. text-transform:none;
  5185. visibility:hidden;
  5186. }
  5187. #u78104_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:101px;
  5193. height:44px;
  5194. }
  5195. #u78104 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:241px;
  5199. top:237px;
  5200. width:101px;
  5201. height:44px;
  5202. display:flex;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:14px;
  5207. text-align:left;
  5208. }
  5209. #u78104 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 10px 2px 10px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u78104_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u78105_img {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:101px;
  5228. height:44px;
  5229. }
  5230. #u78105 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:342px;
  5234. top:237px;
  5235. width:101px;
  5236. height:44px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:14px;
  5242. text-align:left;
  5243. }
  5244. #u78105 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 10px 2px 10px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u78105_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u78106_img {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:100px;
  5263. height:44px;
  5264. }
  5265. #u78106 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:443px;
  5269. top:237px;
  5270. width:100px;
  5271. height:44px;
  5272. display:flex;
  5273. font-size:14px;
  5274. text-align:left;
  5275. }
  5276. #u78106 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:2px 10px 2px 10px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u78106_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u78107_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:162px;
  5295. height:44px;
  5296. }
  5297. #u78107 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:543px;
  5301. top:237px;
  5302. width:162px;
  5303. height:44px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. text-align:left;
  5309. }
  5310. #u78107 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 10px 2px 10px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u78107_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u78108_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:101px;
  5329. height:44px;
  5330. }
  5331. #u78108 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:705px;
  5335. top:237px;
  5336. width:101px;
  5337. height:44px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. text-align:left;
  5343. }
  5344. #u78108 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 10px 2px 10px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u78108_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u78109_img {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:101px;
  5363. height:44px;
  5364. }
  5365. #u78109 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:806px;
  5369. top:237px;
  5370. width:101px;
  5371. height:44px;
  5372. display:flex;
  5373. font-size:14px;
  5374. text-align:left;
  5375. }
  5376. #u78109 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:2px 10px 2px 10px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u78109_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. #u78110_img {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:81px;
  5395. height:44px;
  5396. }
  5397. #u78110 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:907px;
  5401. top:237px;
  5402. width:81px;
  5403. height:44px;
  5404. display:flex;
  5405. font-size:14px;
  5406. text-align:left;
  5407. }
  5408. #u78110 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 10px 2px 10px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u78110_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. }
  5420. #u78111_img {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:81px;
  5426. height:44px;
  5427. }
  5428. #u78111 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:988px;
  5432. top:237px;
  5433. width:81px;
  5434. height:44px;
  5435. display:flex;
  5436. font-size:14px;
  5437. text-align:left;
  5438. }
  5439. #u78111 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 10px 2px 10px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u78111_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u78112_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:153px;
  5458. height:44px;
  5459. }
  5460. #u78112 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:1069px;
  5464. top:237px;
  5465. width:153px;
  5466. height:44px;
  5467. display:flex;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:14px;
  5472. color:#1890FF;
  5473. text-align:left;
  5474. }
  5475. #u78112 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 10px 2px 10px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u78112_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. }
  5487. #u78113_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:70px;
  5493. height:44px;
  5494. }
  5495. #u78113 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:281px;
  5500. width:70px;
  5501. height:44px;
  5502. display:flex;
  5503. font-size:14px;
  5504. text-align:left;
  5505. }
  5506. #u78113 .text {
  5507. position:absolute;
  5508. align-self:center;
  5509. padding:2px 10px 2px 10px;
  5510. box-sizing:border-box;
  5511. width:100%;
  5512. }
  5513. #u78113_text {
  5514. border-width:0px;
  5515. word-wrap:break-word;
  5516. text-transform:none;
  5517. visibility:hidden;
  5518. }
  5519. #u78114_img {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:70px;
  5525. height:44px;
  5526. }
  5527. #u78114 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:70px;
  5531. top:281px;
  5532. width:70px;
  5533. height:44px;
  5534. display:flex;
  5535. font-size:14px;
  5536. text-align:left;
  5537. }
  5538. #u78114 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:2px 10px 2px 10px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u78114_text {
  5546. border-width:0px;
  5547. word-wrap:break-word;
  5548. text-transform:none;
  5549. visibility:hidden;
  5550. }
  5551. #u78115_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:101px;
  5557. height:44px;
  5558. }
  5559. #u78115 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:140px;
  5563. top:281px;
  5564. width:101px;
  5565. height:44px;
  5566. display:flex;
  5567. font-size:14px;
  5568. text-align:left;
  5569. }
  5570. #u78115 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 10px 2px 10px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u78115_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u78116_img {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:101px;
  5589. height:44px;
  5590. }
  5591. #u78116 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:241px;
  5595. top:281px;
  5596. width:101px;
  5597. height:44px;
  5598. display:flex;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. text-align:left;
  5604. }
  5605. #u78116 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 10px 2px 10px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u78116_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. visibility:hidden;
  5617. }
  5618. #u78117_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:101px;
  5624. height:44px;
  5625. }
  5626. #u78117 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:342px;
  5630. top:281px;
  5631. width:101px;
  5632. height:44px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:14px;
  5638. text-align:left;
  5639. }
  5640. #u78117 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 10px 2px 10px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u78117_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u78118_img {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:100px;
  5659. height:44px;
  5660. }
  5661. #u78118 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:443px;
  5665. top:281px;
  5666. width:100px;
  5667. height:44px;
  5668. display:flex;
  5669. font-size:14px;
  5670. text-align:left;
  5671. }
  5672. #u78118 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 10px 2px 10px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u78118_text {
  5680. border-width:0px;
  5681. word-wrap:break-word;
  5682. text-transform:none;
  5683. visibility:hidden;
  5684. }
  5685. #u78119_img {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:162px;
  5691. height:44px;
  5692. }
  5693. #u78119 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:543px;
  5697. top:281px;
  5698. width:162px;
  5699. height:44px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. text-align:left;
  5705. }
  5706. #u78119 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 10px 2px 10px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u78119_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u78120_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:101px;
  5725. height:44px;
  5726. }
  5727. #u78120 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:705px;
  5731. top:281px;
  5732. width:101px;
  5733. height:44px;
  5734. display:flex;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. text-align:left;
  5739. }
  5740. #u78120 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:2px 10px 2px 10px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u78120_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. visibility:hidden;
  5752. }
  5753. #u78121_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:101px;
  5759. height:44px;
  5760. }
  5761. #u78121 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:806px;
  5765. top:281px;
  5766. width:101px;
  5767. height:44px;
  5768. display:flex;
  5769. font-size:14px;
  5770. text-align:left;
  5771. }
  5772. #u78121 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:2px 10px 2px 10px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u78121_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. visibility:hidden;
  5784. }
  5785. #u78122_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:81px;
  5791. height:44px;
  5792. }
  5793. #u78122 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:907px;
  5797. top:281px;
  5798. width:81px;
  5799. height:44px;
  5800. display:flex;
  5801. font-size:14px;
  5802. text-align:left;
  5803. }
  5804. #u78122 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 10px 2px 10px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u78122_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. visibility:hidden;
  5816. }
  5817. #u78123_img {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:81px;
  5823. height:44px;
  5824. }
  5825. #u78123 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:988px;
  5829. top:281px;
  5830. width:81px;
  5831. height:44px;
  5832. display:flex;
  5833. font-size:14px;
  5834. text-align:left;
  5835. }
  5836. #u78123 .text {
  5837. position:absolute;
  5838. align-self:center;
  5839. padding:2px 10px 2px 10px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u78123_text {
  5844. border-width:0px;
  5845. word-wrap:break-word;
  5846. text-transform:none;
  5847. visibility:hidden;
  5848. }
  5849. #u78124_img {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:153px;
  5855. height:44px;
  5856. }
  5857. #u78124 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:1069px;
  5861. top:281px;
  5862. width:153px;
  5863. height:44px;
  5864. display:flex;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:14px;
  5869. color:#1890FF;
  5870. text-align:left;
  5871. }
  5872. #u78124 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 10px 2px 10px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u78124_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. }
  5884. #u78125_img {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:70px;
  5890. height:44px;
  5891. }
  5892. #u78125 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:0px;
  5896. top:325px;
  5897. width:70px;
  5898. height:44px;
  5899. display:flex;
  5900. font-size:14px;
  5901. text-align:left;
  5902. }
  5903. #u78125 .text {
  5904. position:absolute;
  5905. align-self:center;
  5906. padding:2px 10px 2px 10px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u78125_text {
  5911. border-width:0px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. visibility:hidden;
  5915. }
  5916. #u78126_img {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:70px;
  5922. height:44px;
  5923. }
  5924. #u78126 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:70px;
  5928. top:325px;
  5929. width:70px;
  5930. height:44px;
  5931. display:flex;
  5932. font-size:14px;
  5933. text-align:left;
  5934. }
  5935. #u78126 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 10px 2px 10px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u78126_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u78127_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:101px;
  5954. height:44px;
  5955. }
  5956. #u78127 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:140px;
  5960. top:325px;
  5961. width:101px;
  5962. height:44px;
  5963. display:flex;
  5964. font-size:14px;
  5965. text-align:left;
  5966. }
  5967. #u78127 .text {
  5968. position:absolute;
  5969. align-self:center;
  5970. padding:2px 10px 2px 10px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u78127_text {
  5975. border-width:0px;
  5976. word-wrap:break-word;
  5977. text-transform:none;
  5978. visibility:hidden;
  5979. }
  5980. #u78128_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:101px;
  5986. height:44px;
  5987. }
  5988. #u78128 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:241px;
  5992. top:325px;
  5993. width:101px;
  5994. height:44px;
  5995. display:flex;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:14px;
  6000. text-align:left;
  6001. }
  6002. #u78128 .text {
  6003. position:absolute;
  6004. align-self:center;
  6005. padding:2px 10px 2px 10px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u78128_text {
  6010. border-width:0px;
  6011. word-wrap:break-word;
  6012. text-transform:none;
  6013. visibility:hidden;
  6014. }
  6015. #u78129_img {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:101px;
  6021. height:44px;
  6022. }
  6023. #u78129 {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:342px;
  6027. top:325px;
  6028. width:101px;
  6029. height:44px;
  6030. display:flex;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:14px;
  6035. text-align:left;
  6036. }
  6037. #u78129 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:2px 10px 2px 10px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u78129_text {
  6045. border-width:0px;
  6046. word-wrap:break-word;
  6047. text-transform:none;
  6048. visibility:hidden;
  6049. }
  6050. #u78130_img {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:100px;
  6056. height:44px;
  6057. }
  6058. #u78130 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:443px;
  6062. top:325px;
  6063. width:100px;
  6064. height:44px;
  6065. display:flex;
  6066. font-size:14px;
  6067. text-align:left;
  6068. }
  6069. #u78130 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 10px 2px 10px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u78130_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u78131_img {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:162px;
  6088. height:44px;
  6089. }
  6090. #u78131 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:543px;
  6094. top:325px;
  6095. width:162px;
  6096. height:44px;
  6097. display:flex;
  6098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. text-align:left;
  6102. }
  6103. #u78131 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 10px 2px 10px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u78131_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u78132_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:101px;
  6122. height:44px;
  6123. }
  6124. #u78132 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:705px;
  6128. top:325px;
  6129. width:101px;
  6130. height:44px;
  6131. display:flex;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. text-align:left;
  6136. }
  6137. #u78132 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 10px 2px 10px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u78132_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u78133_img {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:101px;
  6156. height:44px;
  6157. }
  6158. #u78133 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:806px;
  6162. top:325px;
  6163. width:101px;
  6164. height:44px;
  6165. display:flex;
  6166. font-size:14px;
  6167. text-align:left;
  6168. }
  6169. #u78133 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:2px 10px 2px 10px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u78133_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u78134_img {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:81px;
  6188. height:44px;
  6189. }
  6190. #u78134 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:907px;
  6194. top:325px;
  6195. width:81px;
  6196. height:44px;
  6197. display:flex;
  6198. font-size:14px;
  6199. text-align:left;
  6200. }
  6201. #u78134 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 10px 2px 10px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u78134_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u78135_img {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:81px;
  6220. height:44px;
  6221. }
  6222. #u78135 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:988px;
  6226. top:325px;
  6227. width:81px;
  6228. height:44px;
  6229. display:flex;
  6230. font-size:14px;
  6231. text-align:left;
  6232. }
  6233. #u78135 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 10px 2px 10px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u78135_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u78136_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:153px;
  6252. height:44px;
  6253. }
  6254. #u78136 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:1069px;
  6258. top:325px;
  6259. width:153px;
  6260. height:44px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:14px;
  6266. color:#1890FF;
  6267. text-align:left;
  6268. }
  6269. #u78136 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 10px 2px 10px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u78136_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u78137_img {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:70px;
  6288. height:44px;
  6289. }
  6290. #u78137 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:369px;
  6295. width:70px;
  6296. height:44px;
  6297. display:flex;
  6298. font-size:14px;
  6299. text-align:left;
  6300. }
  6301. #u78137 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 10px 2px 10px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u78137_text {
  6309. border-width:0px;
  6310. word-wrap:break-word;
  6311. text-transform:none;
  6312. visibility:hidden;
  6313. }
  6314. #u78138_img {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:70px;
  6320. height:44px;
  6321. }
  6322. #u78138 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:70px;
  6326. top:369px;
  6327. width:70px;
  6328. height:44px;
  6329. display:flex;
  6330. font-size:14px;
  6331. text-align:left;
  6332. }
  6333. #u78138 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 10px 2px 10px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u78138_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. visibility:hidden;
  6345. }
  6346. #u78139_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:101px;
  6352. height:44px;
  6353. }
  6354. #u78139 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:140px;
  6358. top:369px;
  6359. width:101px;
  6360. height:44px;
  6361. display:flex;
  6362. font-size:14px;
  6363. text-align:left;
  6364. }
  6365. #u78139 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 10px 2px 10px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u78139_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u78140_img {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:101px;
  6384. height:44px;
  6385. }
  6386. #u78140 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:241px;
  6390. top:369px;
  6391. width:101px;
  6392. height:44px;
  6393. display:flex;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:14px;
  6398. text-align:left;
  6399. }
  6400. #u78140 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 10px 2px 10px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u78140_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u78141_img {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:101px;
  6419. height:44px;
  6420. }
  6421. #u78141 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:342px;
  6425. top:369px;
  6426. width:101px;
  6427. height:44px;
  6428. display:flex;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:14px;
  6433. text-align:left;
  6434. }
  6435. #u78141 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:2px 10px 2px 10px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u78141_text {
  6443. border-width:0px;
  6444. word-wrap:break-word;
  6445. text-transform:none;
  6446. visibility:hidden;
  6447. }
  6448. #u78142_img {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:100px;
  6454. height:44px;
  6455. }
  6456. #u78142 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:443px;
  6460. top:369px;
  6461. width:100px;
  6462. height:44px;
  6463. display:flex;
  6464. font-size:14px;
  6465. text-align:left;
  6466. }
  6467. #u78142 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 10px 2px 10px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u78142_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. visibility:hidden;
  6479. }
  6480. #u78143_img {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:162px;
  6486. height:44px;
  6487. }
  6488. #u78143 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:543px;
  6492. top:369px;
  6493. width:162px;
  6494. height:44px;
  6495. display:flex;
  6496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. text-align:left;
  6500. }
  6501. #u78143 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:2px 10px 2px 10px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u78143_text {
  6509. border-width:0px;
  6510. word-wrap:break-word;
  6511. text-transform:none;
  6512. visibility:hidden;
  6513. }
  6514. #u78144_img {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:101px;
  6520. height:44px;
  6521. }
  6522. #u78144 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:705px;
  6526. top:369px;
  6527. width:101px;
  6528. height:44px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. text-align:left;
  6534. }
  6535. #u78144 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 10px 2px 10px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u78144_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u78145_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:101px;
  6554. height:44px;
  6555. }
  6556. #u78145 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:806px;
  6560. top:369px;
  6561. width:101px;
  6562. height:44px;
  6563. display:flex;
  6564. font-size:14px;
  6565. text-align:left;
  6566. }
  6567. #u78145 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:2px 10px 2px 10px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u78145_text {
  6575. border-width:0px;
  6576. word-wrap:break-word;
  6577. text-transform:none;
  6578. visibility:hidden;
  6579. }
  6580. #u78146_img {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:81px;
  6586. height:44px;
  6587. }
  6588. #u78146 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:907px;
  6592. top:369px;
  6593. width:81px;
  6594. height:44px;
  6595. display:flex;
  6596. font-size:14px;
  6597. text-align:left;
  6598. }
  6599. #u78146 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:2px 10px 2px 10px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u78146_text {
  6607. border-width:0px;
  6608. word-wrap:break-word;
  6609. text-transform:none;
  6610. visibility:hidden;
  6611. }
  6612. #u78147_img {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:81px;
  6618. height:44px;
  6619. }
  6620. #u78147 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:988px;
  6624. top:369px;
  6625. width:81px;
  6626. height:44px;
  6627. display:flex;
  6628. font-size:14px;
  6629. text-align:left;
  6630. }
  6631. #u78147 .text {
  6632. position:absolute;
  6633. align-self:center;
  6634. padding:2px 10px 2px 10px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u78147_text {
  6639. border-width:0px;
  6640. word-wrap:break-word;
  6641. text-transform:none;
  6642. visibility:hidden;
  6643. }
  6644. #u78148_img {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:153px;
  6650. height:44px;
  6651. }
  6652. #u78148 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:1069px;
  6656. top:369px;
  6657. width:153px;
  6658. height:44px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. color:#1890FF;
  6665. text-align:left;
  6666. }
  6667. #u78148 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 10px 2px 10px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u78148_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u78149_div {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:19px;
  6686. height:18px;
  6687. background:inherit;
  6688. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6689. box-sizing:border-box;
  6690. border-width:1px;
  6691. border-style:solid;
  6692. border-color:rgba(0, 153, 255, 1);
  6693. border-radius:4px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:10px;
  6701. color:#0099FF;
  6702. }
  6703. #u78149 {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:638px;
  6707. top:306px;
  6708. width:19px;
  6709. height:18px;
  6710. display:flex;
  6711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:10px;
  6715. color:#0099FF;
  6716. }
  6717. #u78149 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:2px 2px 2px 2px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u78149_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. }
  6729. #u78150_div {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:19px;
  6735. height:18px;
  6736. background:inherit;
  6737. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6738. box-sizing:border-box;
  6739. border-width:1px;
  6740. border-style:solid;
  6741. border-color:rgba(0, 153, 255, 1);
  6742. border-radius:4px;
  6743. -moz-box-shadow:none;
  6744. -webkit-box-shadow:none;
  6745. box-shadow:none;
  6746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. font-size:10px;
  6750. color:#0099FF;
  6751. }
  6752. #u78150 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:638px;
  6756. top:356px;
  6757. width:19px;
  6758. height:18px;
  6759. display:flex;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:10px;
  6764. color:#0099FF;
  6765. }
  6766. #u78150 .text {
  6767. position:absolute;
  6768. align-self:center;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u78150_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. }
  6778. #u78151_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:38px;
  6784. height:24px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 1);
  6787. box-sizing:border-box;
  6788. border-width:1px;
  6789. border-style:solid;
  6790. border-color:rgba(170, 170, 170, 1);
  6791. border-radius:4px;
  6792. -moz-box-shadow:none;
  6793. -webkit-box-shadow:none;
  6794. box-shadow:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:10px;
  6799. color:#555555;
  6800. }
  6801. #u78151 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:1353px;
  6805. top:300px;
  6806. width:38px;
  6807. height:24px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:10px;
  6813. color:#555555;
  6814. }
  6815. #u78151 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:5px 0px 5px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u78151_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. }
  6827. #u78152_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:38px;
  6833. height:24px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 1);
  6836. box-sizing:border-box;
  6837. border-width:1px;
  6838. border-style:solid;
  6839. border-color:rgba(217, 0, 27, 1);
  6840. border-radius:4px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:10px;
  6848. color:#D9001B;
  6849. }
  6850. #u78152 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:1353px;
  6854. top:493px;
  6855. width:38px;
  6856. height:24px;
  6857. display:flex;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:10px;
  6862. color:#D9001B;
  6863. }
  6864. #u78152 .text {
  6865. position:absolute;
  6866. align-self:center;
  6867. padding:5px 0px 5px 0px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u78152_text {
  6872. border-width:0px;
  6873. word-wrap:break-word;
  6874. text-transform:none;
  6875. }
  6876. #u78153_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:38px;
  6882. height:24px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 1);
  6885. box-sizing:border-box;
  6886. border-width:1px;
  6887. border-style:solid;
  6888. border-color:rgba(170, 170, 170, 1);
  6889. border-radius:4px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:10px;
  6897. color:#555555;
  6898. }
  6899. #u78153 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:1353px;
  6903. top:353px;
  6904. width:38px;
  6905. height:24px;
  6906. display:flex;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:10px;
  6911. color:#555555;
  6912. }
  6913. #u78153 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:5px 0px 5px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u78153_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. }
  6925. #u78154_div {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:38px;
  6931. height:24px;
  6932. background:inherit;
  6933. background-color:rgba(255, 255, 255, 1);
  6934. box-sizing:border-box;
  6935. border-width:1px;
  6936. border-style:solid;
  6937. border-color:rgba(170, 170, 170, 1);
  6938. border-radius:4px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:10px;
  6946. color:#555555;
  6947. }
  6948. #u78154 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1353px;
  6952. top:401px;
  6953. width:38px;
  6954. height:24px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:10px;
  6960. color:#555555;
  6961. }
  6962. #u78154 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:5px 0px 5px 0px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u78154_text {
  6970. border-width:0px;
  6971. word-wrap:break-word;
  6972. text-transform:none;
  6973. }
  6974. #u78155_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:38px;
  6980. height:24px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 1);
  6983. box-sizing:border-box;
  6984. border-width:1px;
  6985. border-style:solid;
  6986. border-color:rgba(170, 170, 170, 1);
  6987. border-radius:4px;
  6988. -moz-box-shadow:none;
  6989. -webkit-box-shadow:none;
  6990. box-shadow:none;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:10px;
  6995. color:#555555;
  6996. }
  6997. #u78155 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:1353px;
  7001. top:449px;
  7002. width:38px;
  7003. height:24px;
  7004. display:flex;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:10px;
  7009. color:#555555;
  7010. }
  7011. #u78155 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:5px 0px 5px 0px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u78155_text {
  7019. border-width:0px;
  7020. word-wrap:break-word;
  7021. text-transform:none;
  7022. }
  7023. #u78156_div {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:38px;
  7029. height:24px;
  7030. background:inherit;
  7031. background-color:rgba(255, 255, 255, 1);
  7032. box-sizing:border-box;
  7033. border-width:1px;
  7034. border-style:solid;
  7035. border-color:rgba(170, 170, 170, 1);
  7036. border-radius:4px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:10px;
  7044. color:#555555;
  7045. }
  7046. #u78156 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:1273px;
  7050. top:353px;
  7051. width:38px;
  7052. height:24px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:10px;
  7058. color:#555555;
  7059. }
  7060. #u78156 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:5px 0px 5px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u78156_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. }
  7072. #u78157_div {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:38px;
  7078. height:24px;
  7079. background:inherit;
  7080. background-color:rgba(255, 255, 255, 1);
  7081. box-sizing:border-box;
  7082. border-width:1px;
  7083. border-style:solid;
  7084. border-color:rgba(217, 0, 27, 1);
  7085. border-radius:4px;
  7086. -moz-box-shadow:none;
  7087. -webkit-box-shadow:none;
  7088. box-shadow:none;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:10px;
  7093. color:#D9001B;
  7094. }
  7095. #u78157 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:1273px;
  7099. top:449px;
  7100. width:38px;
  7101. height:24px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:10px;
  7107. color:#D9001B;
  7108. }
  7109. #u78157 .text {
  7110. position:absolute;
  7111. align-self:center;
  7112. padding:5px 0px 5px 0px;
  7113. box-sizing:border-box;
  7114. width:100%;
  7115. }
  7116. #u78157_text {
  7117. border-width:0px;
  7118. word-wrap:break-word;
  7119. text-transform:none;
  7120. }
  7121. #u78158_div {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:38px;
  7127. height:24px;
  7128. background:inherit;
  7129. background-color:rgba(255, 255, 255, 1);
  7130. box-sizing:border-box;
  7131. border-width:1px;
  7132. border-style:solid;
  7133. border-color:rgba(170, 170, 170, 1);
  7134. border-radius:4px;
  7135. -moz-box-shadow:none;
  7136. -webkit-box-shadow:none;
  7137. box-shadow:none;
  7138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:10px;
  7142. color:#555555;
  7143. }
  7144. #u78158 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:1273px;
  7148. top:401px;
  7149. width:38px;
  7150. height:24px;
  7151. display:flex;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:10px;
  7156. color:#555555;
  7157. }
  7158. #u78158 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:5px 0px 5px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u78158_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. }
  7170. #u78159_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:38px;
  7176. height:24px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 1);
  7179. box-sizing:border-box;
  7180. border-width:1px;
  7181. border-style:solid;
  7182. border-color:rgba(170, 170, 170, 1);
  7183. border-radius:4px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:10px;
  7191. color:#555555;
  7192. }
  7193. #u78159 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:1273px;
  7197. top:300px;
  7198. width:38px;
  7199. height:24px;
  7200. display:flex;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:10px;
  7205. color:#555555;
  7206. }
  7207. #u78159 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:5px 0px 5px 0px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u78159_text {
  7215. border-width:0px;
  7216. word-wrap:break-word;
  7217. text-transform:none;
  7218. }
  7219. #u78161 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:0px;
  7225. height:0px;
  7226. }
  7227. #u78162_img {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:200px;
  7233. height:1191px;
  7234. }
  7235. #u78162 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:120px;
  7239. top:50px;
  7240. width:200px;
  7241. height:1191px;
  7242. display:flex;
  7243. }
  7244. #u78162 .text {
  7245. position:absolute;
  7246. align-self:center;
  7247. padding:2px 2px 2px 2px;
  7248. box-sizing:border-box;
  7249. width:100%;
  7250. }
  7251. #u78162_text {
  7252. border-width:0px;
  7253. word-wrap:break-word;
  7254. text-transform:none;
  7255. visibility:hidden;
  7256. }
  7257. #u78163_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:200px;
  7263. height:60px;
  7264. background:inherit;
  7265. background-color:rgba(224, 231, 247, 1);
  7266. border:none;
  7267. border-radius:0px;
  7268. -moz-box-shadow:none;
  7269. -webkit-box-shadow:none;
  7270. box-shadow:none;
  7271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7272. font-weight:500;
  7273. font-style:normal;
  7274. font-size:18px;
  7275. }
  7276. #u78163 {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:120px;
  7280. top:50px;
  7281. width:200px;
  7282. height:60px;
  7283. display:flex;
  7284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7285. font-weight:500;
  7286. font-style:normal;
  7287. font-size:18px;
  7288. }
  7289. #u78163 .text {
  7290. position:absolute;
  7291. align-self:center;
  7292. padding:0px 0px 0px 20px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u78163_text {
  7297. border-width:0px;
  7298. word-wrap:break-word;
  7299. text-transform:none;
  7300. }
  7301. #u78164 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:120px;
  7305. top:130px;
  7306. width:200px;
  7307. height:1078px;
  7308. }
  7309. #u78164_state0 {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:200px;
  7315. height:1078px;
  7316. overflow:auto;
  7317. -webkit-overflow-scrolling:touch;
  7318. -ms-overflow-x:hidden;
  7319. overflow-x:hidden;
  7320. background-image:none;
  7321. border:none;
  7322. border-radius:0px;
  7323. -moz-box-shadow:none;
  7324. -webkit-box-shadow:none;
  7325. box-shadow:none;
  7326. }
  7327. #u78164_state0_content {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:1px;
  7333. height:1px;
  7334. }
  7335. #u78165_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:97px;
  7341. height:22px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 255, 0);
  7344. border:none;
  7345. border-radius:0px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:16px;
  7353. }
  7354. #u78165 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:30px;
  7358. top:0px;
  7359. width:97px;
  7360. height:22px;
  7361. display:flex;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:16px;
  7366. }
  7367. #u78165 .text {
  7368. position:absolute;
  7369. align-self:flex-start;
  7370. padding:0px 0px 0px 0px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u78165_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. }
  7379. #u78166_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:65px;
  7385. height:22px;
  7386. background:inherit;
  7387. background-color:rgba(255, 255, 255, 0);
  7388. border:none;
  7389. border-radius:0px;
  7390. -moz-box-shadow:none;
  7391. -webkit-box-shadow:none;
  7392. box-shadow:none;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:16px;
  7397. }
  7398. #u78166 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:30px;
  7402. top:42px;
  7403. width:65px;
  7404. height:22px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:16px;
  7410. }
  7411. #u78166 .text {
  7412. position:absolute;
  7413. align-self:flex-start;
  7414. padding:0px 0px 0px 0px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u78166_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }
  7423. #u78167_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:49px;
  7429. height:22px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 0);
  7432. border:none;
  7433. border-radius:0px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:16px;
  7441. }
  7442. #u78167 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:30px;
  7446. top:145px;
  7447. width:49px;
  7448. height:22px;
  7449. display:flex;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:16px;
  7454. }
  7455. #u78167 .text {
  7456. position:absolute;
  7457. align-self:flex-start;
  7458. padding:0px 0px 0px 0px;
  7459. box-sizing:border-box;
  7460. width:100%;
  7461. }
  7462. #u78167_text {
  7463. border-width:0px;
  7464. white-space:nowrap;
  7465. text-transform:none;
  7466. }
  7467. #u78168_div {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:0px;
  7471. top:0px;
  7472. width:97px;
  7473. height:22px;
  7474. background:inherit;
  7475. background-color:rgba(255, 255, 255, 0);
  7476. border:none;
  7477. border-radius:0px;
  7478. -moz-box-shadow:none;
  7479. -webkit-box-shadow:none;
  7480. box-shadow:none;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:16px;
  7485. }
  7486. #u78168 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:30px;
  7490. top:187px;
  7491. width:97px;
  7492. height:22px;
  7493. display:flex;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:16px;
  7498. }
  7499. #u78168 .text {
  7500. position:absolute;
  7501. align-self:flex-start;
  7502. padding:0px 0px 0px 0px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u78168_text {
  7507. border-width:0px;
  7508. word-wrap:break-word;
  7509. text-transform:none;
  7510. }
  7511. #u78169_img {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:201px;
  7517. height:2px;
  7518. }
  7519. #u78169 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:84px;
  7524. width:200px;
  7525. height:1px;
  7526. display:flex;
  7527. }
  7528. #u78169 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 2px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u78169_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u78170_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:49px;
  7547. height:17px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 0);
  7550. border:none;
  7551. border-radius:0px;
  7552. -moz-box-shadow:none;
  7553. -webkit-box-shadow:none;
  7554. box-shadow:none;
  7555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:12px;
  7559. color:#AAAAAA;
  7560. }
  7561. #u78170 {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:30px;
  7565. top:105px;
  7566. width:49px;
  7567. height:17px;
  7568. display:flex;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:12px;
  7573. color:#AAAAAA;
  7574. }
  7575. #u78170 .text {
  7576. position:absolute;
  7577. align-self:flex-start;
  7578. padding:0px 0px 0px 0px;
  7579. box-sizing:border-box;
  7580. width:100%;
  7581. }
  7582. #u78170_text {
  7583. border-width:0px;
  7584. white-space:nowrap;
  7585. text-transform:none;
  7586. }
  7587. #u78171_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:97px;
  7593. height:22px;
  7594. background:inherit;
  7595. background-color:rgba(255, 255, 255, 0);
  7596. border:none;
  7597. border-radius:0px;
  7598. -moz-box-shadow:none;
  7599. -webkit-box-shadow:none;
  7600. box-shadow:none;
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:16px;
  7605. }
  7606. #u78171 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:30px;
  7610. top:229px;
  7611. width:97px;
  7612. height:22px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:16px;
  7618. }
  7619. #u78171 .text {
  7620. position:absolute;
  7621. align-self:flex-start;
  7622. padding:0px 0px 0px 0px;
  7623. box-sizing:border-box;
  7624. width:100%;
  7625. }
  7626. #u78171_text {
  7627. border-width:0px;
  7628. word-wrap:break-word;
  7629. text-transform:none;
  7630. }
  7631. #u78172_div {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:65px;
  7637. height:22px;
  7638. background:inherit;
  7639. background-color:rgba(255, 255, 255, 0);
  7640. border:none;
  7641. border-radius:0px;
  7642. -moz-box-shadow:none;
  7643. -webkit-box-shadow:none;
  7644. box-shadow:none;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:16px;
  7649. }
  7650. #u78172 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:30px;
  7654. top:271px;
  7655. width:65px;
  7656. height:22px;
  7657. display:flex;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:16px;
  7662. }
  7663. #u78172 .text {
  7664. position:absolute;
  7665. align-self:flex-start;
  7666. padding:0px 0px 0px 0px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u78172_text {
  7671. border-width:0px;
  7672. white-space:nowrap;
  7673. text-transform:none;
  7674. }
  7675. #u78173_img {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:201px;
  7681. height:2px;
  7682. }
  7683. #u78173 {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:0px;
  7687. top:313px;
  7688. width:200px;
  7689. height:1px;
  7690. display:flex;
  7691. }
  7692. #u78173 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 2px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u78173_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. visibility:hidden;
  7704. }
  7705. #u78174_div {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:65px;
  7711. height:22px;
  7712. background:inherit;
  7713. background-color:rgba(255, 255, 255, 0);
  7714. border:none;
  7715. border-radius:0px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:16px;
  7723. }
  7724. #u78174 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:30px;
  7728. top:370px;
  7729. width:65px;
  7730. height:22px;
  7731. display:flex;
  7732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:16px;
  7736. }
  7737. #u78174 .text {
  7738. position:absolute;
  7739. align-self:flex-start;
  7740. padding:0px 0px 0px 0px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u78174_text {
  7745. border-width:0px;
  7746. white-space:nowrap;
  7747. text-transform:none;
  7748. }
  7749. #u78175_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:49px;
  7755. height:17px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 0);
  7758. border:none;
  7759. border-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:12px;
  7767. color:#AAAAAA;
  7768. }
  7769. #u78175 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:30px;
  7773. top:334px;
  7774. width:49px;
  7775. height:17px;
  7776. display:flex;
  7777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:12px;
  7781. color:#AAAAAA;
  7782. }
  7783. #u78175 .text {
  7784. position:absolute;
  7785. align-self:flex-start;
  7786. padding:0px 0px 0px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u78175_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u78176_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:65px;
  7801. height:22px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 0);
  7804. border:none;
  7805. border-radius:0px;
  7806. -moz-box-shadow:none;
  7807. -webkit-box-shadow:none;
  7808. box-shadow:none;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:16px;
  7813. }
  7814. #u78176 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:30px;
  7818. top:412px;
  7819. width:65px;
  7820. height:22px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:16px;
  7826. }
  7827. #u78176 .text {
  7828. position:absolute;
  7829. align-self:flex-start;
  7830. padding:0px 0px 0px 0px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u78176_text {
  7835. border-width:0px;
  7836. white-space:nowrap;
  7837. text-transform:none;
  7838. }
  7839. #u78177_div {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:65px;
  7845. height:22px;
  7846. background:inherit;
  7847. background-color:rgba(255, 255, 255, 0);
  7848. border:none;
  7849. border-radius:0px;
  7850. -moz-box-shadow:none;
  7851. -webkit-box-shadow:none;
  7852. box-shadow:none;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:16px;
  7857. }
  7858. #u78177 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:30px;
  7862. top:454px;
  7863. width:65px;
  7864. height:22px;
  7865. display:flex;
  7866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:16px;
  7870. }
  7871. #u78177 .text {
  7872. position:absolute;
  7873. align-self:flex-start;
  7874. padding:0px 0px 0px 0px;
  7875. box-sizing:border-box;
  7876. width:100%;
  7877. }
  7878. #u78177_text {
  7879. border-width:0px;
  7880. white-space:nowrap;
  7881. text-transform:none;
  7882. }
  7883. #u78178_div {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:0px;
  7887. top:0px;
  7888. width:65px;
  7889. height:22px;
  7890. background:inherit;
  7891. background-color:rgba(255, 255, 255, 0);
  7892. border:none;
  7893. border-radius:0px;
  7894. -moz-box-shadow:none;
  7895. -webkit-box-shadow:none;
  7896. box-shadow:none;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:16px;
  7901. }
  7902. #u78178 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:30px;
  7906. top:496px;
  7907. width:65px;
  7908. height:22px;
  7909. display:flex;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:16px;
  7914. }
  7915. #u78178 .text {
  7916. position:absolute;
  7917. align-self:flex-start;
  7918. padding:0px 0px 0px 0px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u78178_text {
  7923. border-width:0px;
  7924. white-space:nowrap;
  7925. text-transform:none;
  7926. }
  7927. #u78179_div {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:65px;
  7933. height:22px;
  7934. background:inherit;
  7935. background-color:rgba(255, 255, 255, 0);
  7936. border:none;
  7937. border-radius:0px;
  7938. -moz-box-shadow:none;
  7939. -webkit-box-shadow:none;
  7940. box-shadow:none;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:16px;
  7945. }
  7946. #u78179 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:30px;
  7950. top:538px;
  7951. width:65px;
  7952. height:22px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:16px;
  7958. }
  7959. #u78179 .text {
  7960. position:absolute;
  7961. align-self:flex-start;
  7962. padding:0px 0px 0px 0px;
  7963. box-sizing:border-box;
  7964. width:100%;
  7965. }
  7966. #u78179_text {
  7967. border-width:0px;
  7968. white-space:nowrap;
  7969. text-transform:none;
  7970. }
  7971. #u78180_div {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:65px;
  7977. height:22px;
  7978. background:inherit;
  7979. background-color:rgba(255, 255, 255, 0);
  7980. border:none;
  7981. border-radius:0px;
  7982. -moz-box-shadow:none;
  7983. -webkit-box-shadow:none;
  7984. box-shadow:none;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:16px;
  7989. }
  7990. #u78180 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:30px;
  7994. top:580px;
  7995. width:65px;
  7996. height:22px;
  7997. display:flex;
  7998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7999. font-weight:400;
  8000. font-style:normal;
  8001. font-size:16px;
  8002. }
  8003. #u78180 .text {
  8004. position:absolute;
  8005. align-self:flex-start;
  8006. padding:0px 0px 0px 0px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u78180_text {
  8011. border-width:0px;
  8012. white-space:nowrap;
  8013. text-transform:none;
  8014. }
  8015. #u78181_img {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:201px;
  8021. height:2px;
  8022. }
  8023. #u78181 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:1289px;
  8028. width:200px;
  8029. height:1px;
  8030. display:flex;
  8031. }
  8032. #u78181 .text {
  8033. position:absolute;
  8034. align-self:center;
  8035. padding:2px 2px 2px 2px;
  8036. box-sizing:border-box;
  8037. width:100%;
  8038. }
  8039. #u78181_text {
  8040. border-width:0px;
  8041. word-wrap:break-word;
  8042. text-transform:none;
  8043. visibility:hidden;
  8044. }
  8045. #u78182_div {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:65px;
  8051. height:22px;
  8052. background:inherit;
  8053. background-color:rgba(255, 255, 255, 0);
  8054. border:none;
  8055. border-radius:0px;
  8056. -moz-box-shadow:none;
  8057. -webkit-box-shadow:none;
  8058. box-shadow:none;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:16px;
  8063. }
  8064. #u78182 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:30px;
  8068. top:1346px;
  8069. width:65px;
  8070. height:22px;
  8071. display:flex;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:16px;
  8076. }
  8077. #u78182 .text {
  8078. position:absolute;
  8079. align-self:flex-start;
  8080. padding:0px 0px 0px 0px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u78182_text {
  8085. border-width:0px;
  8086. white-space:nowrap;
  8087. text-transform:none;
  8088. }
  8089. #u78183_div {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:49px;
  8095. height:17px;
  8096. background:inherit;
  8097. background-color:rgba(255, 255, 255, 0);
  8098. border:none;
  8099. border-radius:0px;
  8100. -moz-box-shadow:none;
  8101. -webkit-box-shadow:none;
  8102. box-shadow:none;
  8103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8104. font-weight:400;
  8105. font-style:normal;
  8106. font-size:12px;
  8107. color:#AAAAAA;
  8108. }
  8109. #u78183 {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:30px;
  8113. top:1310px;
  8114. width:49px;
  8115. height:17px;
  8116. display:flex;
  8117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. font-size:12px;
  8121. color:#AAAAAA;
  8122. }
  8123. #u78183 .text {
  8124. position:absolute;
  8125. align-self:flex-start;
  8126. padding:0px 0px 0px 0px;
  8127. box-sizing:border-box;
  8128. width:100%;
  8129. }
  8130. #u78183_text {
  8131. border-width:0px;
  8132. white-space:nowrap;
  8133. text-transform:none;
  8134. }
  8135. #u78184_div {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:65px;
  8141. height:22px;
  8142. background:inherit;
  8143. background-color:rgba(255, 255, 255, 0);
  8144. border:none;
  8145. border-radius:0px;
  8146. -moz-box-shadow:none;
  8147. -webkit-box-shadow:none;
  8148. box-shadow:none;
  8149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8150. font-weight:400;
  8151. font-style:normal;
  8152. font-size:16px;
  8153. }
  8154. #u78184 {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:30px;
  8158. top:1388px;
  8159. width:65px;
  8160. height:22px;
  8161. display:flex;
  8162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8163. font-weight:400;
  8164. font-style:normal;
  8165. font-size:16px;
  8166. }
  8167. #u78184 .text {
  8168. position:absolute;
  8169. align-self:flex-start;
  8170. padding:0px 0px 0px 0px;
  8171. box-sizing:border-box;
  8172. width:100%;
  8173. }
  8174. #u78184_text {
  8175. border-width:0px;
  8176. white-space:nowrap;
  8177. text-transform:none;
  8178. }
  8179. #u78185_div {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:65px;
  8185. height:22px;
  8186. background:inherit;
  8187. background-color:rgba(255, 255, 255, 0);
  8188. border:none;
  8189. border-radius:0px;
  8190. -moz-box-shadow:none;
  8191. -webkit-box-shadow:none;
  8192. box-shadow:none;
  8193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8194. font-weight:400;
  8195. font-style:normal;
  8196. font-size:16px;
  8197. }
  8198. #u78185 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:30px;
  8202. top:1472px;
  8203. width:65px;
  8204. height:22px;
  8205. display:flex;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:16px;
  8210. }
  8211. #u78185 .text {
  8212. position:absolute;
  8213. align-self:flex-start;
  8214. padding:0px 0px 0px 0px;
  8215. box-sizing:border-box;
  8216. width:100%;
  8217. }
  8218. #u78185_text {
  8219. border-width:0px;
  8220. white-space:nowrap;
  8221. text-transform:none;
  8222. }
  8223. #u78186_img {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:201px;
  8229. height:2px;
  8230. }
  8231. #u78186 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:1514px;
  8236. width:200px;
  8237. height:1px;
  8238. display:flex;
  8239. }
  8240. #u78186 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 2px 2px 2px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u78186_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. visibility:hidden;
  8252. }
  8253. #u78187_div {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:49px;
  8259. height:22px;
  8260. background:inherit;
  8261. background-color:rgba(255, 255, 255, 0);
  8262. border:none;
  8263. border-radius:0px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:16px;
  8271. }
  8272. #u78187 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:30px;
  8276. top:1571px;
  8277. width:49px;
  8278. height:22px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:16px;
  8284. }
  8285. #u78187 .text {
  8286. position:absolute;
  8287. align-self:flex-start;
  8288. padding:0px 0px 0px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u78187_text {
  8293. border-width:0px;
  8294. white-space:nowrap;
  8295. text-transform:none;
  8296. }
  8297. #u78188_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:49px;
  8303. height:17px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 0);
  8306. border:none;
  8307. border-radius:0px;
  8308. -moz-box-shadow:none;
  8309. -webkit-box-shadow:none;
  8310. box-shadow:none;
  8311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8312. font-weight:400;
  8313. font-style:normal;
  8314. font-size:12px;
  8315. color:#AAAAAA;
  8316. }
  8317. #u78188 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:30px;
  8321. top:1535px;
  8322. width:49px;
  8323. height:17px;
  8324. display:flex;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#AAAAAA;
  8330. }
  8331. #u78188 .text {
  8332. position:absolute;
  8333. align-self:flex-start;
  8334. padding:0px 0px 0px 0px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u78188_text {
  8339. border-width:0px;
  8340. white-space:nowrap;
  8341. text-transform:none;
  8342. }
  8343. #u78189_div {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:49px;
  8349. height:22px;
  8350. background:inherit;
  8351. background-color:rgba(255, 255, 255, 0);
  8352. border:none;
  8353. border-radius:0px;
  8354. -moz-box-shadow:none;
  8355. -webkit-box-shadow:none;
  8356. box-shadow:none;
  8357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:16px;
  8361. }
  8362. #u78189 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:30px;
  8366. top:1613px;
  8367. width:49px;
  8368. height:22px;
  8369. display:flex;
  8370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:16px;
  8374. }
  8375. #u78189 .text {
  8376. position:absolute;
  8377. align-self:flex-start;
  8378. padding:0px 0px 0px 0px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u78189_text {
  8383. border-width:0px;
  8384. white-space:nowrap;
  8385. text-transform:none;
  8386. }
  8387. #u78190_div {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:0px;
  8392. width:65px;
  8393. height:22px;
  8394. background:inherit;
  8395. background-color:rgba(255, 255, 255, 0);
  8396. border:none;
  8397. border-radius:0px;
  8398. -moz-box-shadow:none;
  8399. -webkit-box-shadow:none;
  8400. box-shadow:none;
  8401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8402. font-weight:400;
  8403. font-style:normal;
  8404. font-size:16px;
  8405. }
  8406. #u78190 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:30px;
  8410. top:1655px;
  8411. width:65px;
  8412. height:22px;
  8413. display:flex;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:16px;
  8418. }
  8419. #u78190 .text {
  8420. position:absolute;
  8421. align-self:flex-start;
  8422. padding:0px 0px 0px 0px;
  8423. box-sizing:border-box;
  8424. width:100%;
  8425. }
  8426. #u78190_text {
  8427. border-width:0px;
  8428. white-space:nowrap;
  8429. text-transform:none;
  8430. }
  8431. #u78191_img {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:0px;
  8435. top:0px;
  8436. width:201px;
  8437. height:2px;
  8438. }
  8439. #u78191 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:0px;
  8443. top:1697px;
  8444. width:200px;
  8445. height:1px;
  8446. display:flex;
  8447. }
  8448. #u78191 .text {
  8449. position:absolute;
  8450. align-self:center;
  8451. padding:2px 2px 2px 2px;
  8452. box-sizing:border-box;
  8453. width:100%;
  8454. }
  8455. #u78191_text {
  8456. border-width:0px;
  8457. word-wrap:break-word;
  8458. text-transform:none;
  8459. visibility:hidden;
  8460. }
  8461. #u78192_div {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:81px;
  8467. height:22px;
  8468. background:inherit;
  8469. background-color:rgba(255, 255, 255, 0);
  8470. border:none;
  8471. border-radius:0px;
  8472. -moz-box-shadow:none;
  8473. -webkit-box-shadow:none;
  8474. box-shadow:none;
  8475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8476. font-weight:400;
  8477. font-style:normal;
  8478. font-size:16px;
  8479. }
  8480. #u78192 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:30px;
  8484. top:1754px;
  8485. width:81px;
  8486. height:22px;
  8487. display:flex;
  8488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8489. font-weight:400;
  8490. font-style:normal;
  8491. font-size:16px;
  8492. }
  8493. #u78192 .text {
  8494. position:absolute;
  8495. align-self:flex-start;
  8496. padding:0px 0px 0px 0px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u78192_text {
  8501. border-width:0px;
  8502. white-space:nowrap;
  8503. text-transform:none;
  8504. }
  8505. #u78193_div {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:49px;
  8511. height:17px;
  8512. background:inherit;
  8513. background-color:rgba(255, 255, 255, 0);
  8514. border:none;
  8515. border-radius:0px;
  8516. -moz-box-shadow:none;
  8517. -webkit-box-shadow:none;
  8518. box-shadow:none;
  8519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:12px;
  8523. color:#AAAAAA;
  8524. }
  8525. #u78193 {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:30px;
  8529. top:1718px;
  8530. width:49px;
  8531. height:17px;
  8532. display:flex;
  8533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:12px;
  8537. color:#AAAAAA;
  8538. }
  8539. #u78193 .text {
  8540. position:absolute;
  8541. align-self:flex-start;
  8542. padding:0px 0px 0px 0px;
  8543. box-sizing:border-box;
  8544. width:100%;
  8545. }
  8546. #u78193_text {
  8547. border-width:0px;
  8548. white-space:nowrap;
  8549. text-transform:none;
  8550. }
  8551. #u78194_div {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:81px;
  8557. height:22px;
  8558. background:inherit;
  8559. background-color:rgba(255, 255, 255, 0);
  8560. border:none;
  8561. border-radius:0px;
  8562. -moz-box-shadow:none;
  8563. -webkit-box-shadow:none;
  8564. box-shadow:none;
  8565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:16px;
  8569. }
  8570. #u78194 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:30px;
  8574. top:1796px;
  8575. width:81px;
  8576. height:22px;
  8577. display:flex;
  8578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:16px;
  8582. }
  8583. #u78194 .text {
  8584. position:absolute;
  8585. align-self:flex-start;
  8586. padding:0px 0px 0px 0px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u78194_text {
  8591. border-width:0px;
  8592. white-space:nowrap;
  8593. text-transform:none;
  8594. }
  8595. #u78195_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:81px;
  8601. height:22px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 0);
  8604. border:none;
  8605. border-radius:0px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:16px;
  8613. }
  8614. #u78195 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:30px;
  8618. top:1838px;
  8619. width:81px;
  8620. height:22px;
  8621. display:flex;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:16px;
  8626. }
  8627. #u78195 .text {
  8628. position:absolute;
  8629. align-self:flex-start;
  8630. padding:0px 0px 0px 0px;
  8631. box-sizing:border-box;
  8632. width:100%;
  8633. }
  8634. #u78195_text {
  8635. border-width:0px;
  8636. white-space:nowrap;
  8637. text-transform:none;
  8638. }
  8639. #u78196_div {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:0px;
  8643. top:0px;
  8644. width:65px;
  8645. height:22px;
  8646. background:inherit;
  8647. background-color:rgba(255, 255, 255, 0);
  8648. border:none;
  8649. border-radius:0px;
  8650. -moz-box-shadow:none;
  8651. -webkit-box-shadow:none;
  8652. box-shadow:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:16px;
  8657. }
  8658. #u78196 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:30px;
  8662. top:1430px;
  8663. width:65px;
  8664. height:22px;
  8665. display:flex;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:16px;
  8670. }
  8671. #u78196 .text {
  8672. position:absolute;
  8673. align-self:flex-start;
  8674. padding:0px 0px 0px 0px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u78196_text {
  8679. border-width:0px;
  8680. white-space:nowrap;
  8681. text-transform:none;
  8682. }
  8683. #u78197_img {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:201px;
  8689. height:2px;
  8690. }
  8691. #u78197 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:669px;
  8696. width:200px;
  8697. height:1px;
  8698. display:flex;
  8699. }
  8700. #u78197 .text {
  8701. position:absolute;
  8702. align-self:center;
  8703. padding:2px 2px 2px 2px;
  8704. box-sizing:border-box;
  8705. width:100%;
  8706. }
  8707. #u78197_text {
  8708. border-width:0px;
  8709. word-wrap:break-word;
  8710. text-transform:none;
  8711. visibility:hidden;
  8712. }
  8713. #u78198_div {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:65px;
  8719. height:22px;
  8720. background:inherit;
  8721. background-color:rgba(255, 255, 255, 0);
  8722. border:none;
  8723. border-radius:0px;
  8724. -moz-box-shadow:none;
  8725. -webkit-box-shadow:none;
  8726. box-shadow:none;
  8727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. font-size:16px;
  8731. }
  8732. #u78198 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:30px;
  8736. top:726px;
  8737. width:65px;
  8738. height:22px;
  8739. display:flex;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:16px;
  8744. }
  8745. #u78198 .text {
  8746. position:absolute;
  8747. align-self:flex-start;
  8748. padding:0px 0px 0px 0px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u78198_text {
  8753. border-width:0px;
  8754. white-space:nowrap;
  8755. text-transform:none;
  8756. }
  8757. #u78199_div {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:49px;
  8763. height:17px;
  8764. background:inherit;
  8765. background-color:rgba(255, 255, 255, 0);
  8766. border:none;
  8767. border-radius:0px;
  8768. -moz-box-shadow:none;
  8769. -webkit-box-shadow:none;
  8770. box-shadow:none;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:12px;
  8775. color:#AAAAAA;
  8776. }
  8777. #u78199 {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:30px;
  8781. top:690px;
  8782. width:49px;
  8783. height:17px;
  8784. display:flex;
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:12px;
  8789. color:#AAAAAA;
  8790. }
  8791. #u78199 .text {
  8792. position:absolute;
  8793. align-self:flex-start;
  8794. padding:0px 0px 0px 0px;
  8795. box-sizing:border-box;
  8796. width:100%;
  8797. }
  8798. #u78199_text {
  8799. border-width:0px;
  8800. white-space:nowrap;
  8801. text-transform:none;
  8802. }
  8803. #u78200_div {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:65px;
  8809. height:22px;
  8810. background:inherit;
  8811. background-color:rgba(255, 255, 255, 0);
  8812. border:none;
  8813. border-radius:0px;
  8814. -moz-box-shadow:none;
  8815. -webkit-box-shadow:none;
  8816. box-shadow:none;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:16px;
  8821. }
  8822. #u78200 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:30px;
  8826. top:768px;
  8827. width:65px;
  8828. height:22px;
  8829. display:flex;
  8830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8831. font-weight:400;
  8832. font-style:normal;
  8833. font-size:16px;
  8834. }
  8835. #u78200 .text {
  8836. position:absolute;
  8837. align-self:flex-start;
  8838. padding:0px 0px 0px 0px;
  8839. box-sizing:border-box;
  8840. width:100%;
  8841. }
  8842. #u78200_text {
  8843. border-width:0px;
  8844. white-space:nowrap;
  8845. text-transform:none;
  8846. }
  8847. #u78201_div {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:0px;
  8851. top:0px;
  8852. width:65px;
  8853. height:22px;
  8854. background:inherit;
  8855. background-color:rgba(255, 255, 255, 0);
  8856. border:none;
  8857. border-radius:0px;
  8858. -moz-box-shadow:none;
  8859. -webkit-box-shadow:none;
  8860. box-shadow:none;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:16px;
  8865. }
  8866. #u78201 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:30px;
  8870. top:852px;
  8871. width:65px;
  8872. height:22px;
  8873. display:flex;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:16px;
  8878. }
  8879. #u78201 .text {
  8880. position:absolute;
  8881. align-self:flex-start;
  8882. padding:0px 0px 0px 0px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u78201_text {
  8887. border-width:0px;
  8888. white-space:nowrap;
  8889. text-transform:none;
  8890. }
  8891. #u78202_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:65px;
  8897. height:22px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 0);
  8900. border:none;
  8901. border-radius:0px;
  8902. -moz-box-shadow:none;
  8903. -webkit-box-shadow:none;
  8904. box-shadow:none;
  8905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. font-size:16px;
  8909. }
  8910. #u78202 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:30px;
  8914. top:810px;
  8915. width:65px;
  8916. height:22px;
  8917. display:flex;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:16px;
  8922. }
  8923. #u78202 .text {
  8924. position:absolute;
  8925. align-self:flex-start;
  8926. padding:0px 0px 0px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u78202_text {
  8931. border-width:0px;
  8932. white-space:nowrap;
  8933. text-transform:none;
  8934. }
  8935. #u78203_div {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:65px;
  8941. height:22px;
  8942. background:inherit;
  8943. background-color:rgba(255, 255, 255, 0);
  8944. border:none;
  8945. border-radius:0px;
  8946. -moz-box-shadow:none;
  8947. -webkit-box-shadow:none;
  8948. box-shadow:none;
  8949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8950. font-weight:400;
  8951. font-style:normal;
  8952. font-size:16px;
  8953. }
  8954. #u78203 {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:30px;
  8958. top:894px;
  8959. width:65px;
  8960. height:22px;
  8961. display:flex;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:16px;
  8966. }
  8967. #u78203 .text {
  8968. position:absolute;
  8969. align-self:flex-start;
  8970. padding:0px 0px 0px 0px;
  8971. box-sizing:border-box;
  8972. width:100%;
  8973. }
  8974. #u78203_text {
  8975. border-width:0px;
  8976. white-space:nowrap;
  8977. text-transform:none;
  8978. }
  8979. #u78204_div {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:65px;
  8985. height:22px;
  8986. background:inherit;
  8987. background-color:rgba(255, 255, 255, 0);
  8988. border:none;
  8989. border-radius:0px;
  8990. -moz-box-shadow:none;
  8991. -webkit-box-shadow:none;
  8992. box-shadow:none;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:16px;
  8997. }
  8998. #u78204 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:30px;
  9002. top:936px;
  9003. width:65px;
  9004. height:22px;
  9005. display:flex;
  9006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9007. font-weight:400;
  9008. font-style:normal;
  9009. font-size:16px;
  9010. }
  9011. #u78204 .text {
  9012. position:absolute;
  9013. align-self:flex-start;
  9014. padding:0px 0px 0px 0px;
  9015. box-sizing:border-box;
  9016. width:100%;
  9017. }
  9018. #u78204_text {
  9019. border-width:0px;
  9020. white-space:nowrap;
  9021. text-transform:none;
  9022. }
  9023. #u78205_img {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:0px;
  9027. top:0px;
  9028. width:201px;
  9029. height:2px;
  9030. }
  9031. #u78205 {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:0px;
  9035. top:1018px;
  9036. width:200px;
  9037. height:1px;
  9038. display:flex;
  9039. }
  9040. #u78205 .text {
  9041. position:absolute;
  9042. align-self:center;
  9043. padding:2px 2px 2px 2px;
  9044. box-sizing:border-box;
  9045. width:100%;
  9046. }
  9047. #u78205_text {
  9048. border-width:0px;
  9049. word-wrap:break-word;
  9050. text-transform:none;
  9051. visibility:hidden;
  9052. }
  9053. #u78206_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:65px;
  9059. height:22px;
  9060. background:inherit;
  9061. background-color:rgba(255, 255, 255, 0);
  9062. border:none;
  9063. border-radius:0px;
  9064. -moz-box-shadow:none;
  9065. -webkit-box-shadow:none;
  9066. box-shadow:none;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:16px;
  9071. }
  9072. #u78206 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:30px;
  9076. top:1075px;
  9077. width:65px;
  9078. height:22px;
  9079. display:flex;
  9080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9081. font-weight:400;
  9082. font-style:normal;
  9083. font-size:16px;
  9084. }
  9085. #u78206 .text {
  9086. position:absolute;
  9087. align-self:flex-start;
  9088. padding:0px 0px 0px 0px;
  9089. box-sizing:border-box;
  9090. width:100%;
  9091. }
  9092. #u78206_text {
  9093. border-width:0px;
  9094. white-space:nowrap;
  9095. text-transform:none;
  9096. }
  9097. #u78207_div {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:49px;
  9103. height:17px;
  9104. background:inherit;
  9105. background-color:rgba(255, 255, 255, 0);
  9106. border:none;
  9107. border-radius:0px;
  9108. -moz-box-shadow:none;
  9109. -webkit-box-shadow:none;
  9110. box-shadow:none;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:12px;
  9115. color:#AAAAAA;
  9116. }
  9117. #u78207 {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:30px;
  9121. top:1039px;
  9122. width:49px;
  9123. height:17px;
  9124. display:flex;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:12px;
  9129. color:#AAAAAA;
  9130. }
  9131. #u78207 .text {
  9132. position:absolute;
  9133. align-self:flex-start;
  9134. padding:0px 0px 0px 0px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u78207_text {
  9139. border-width:0px;
  9140. white-space:nowrap;
  9141. text-transform:none;
  9142. }
  9143. #u78208_div {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:65px;
  9149. height:22px;
  9150. background:inherit;
  9151. background-color:rgba(255, 255, 255, 0);
  9152. border:none;
  9153. border-radius:0px;
  9154. -moz-box-shadow:none;
  9155. -webkit-box-shadow:none;
  9156. box-shadow:none;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:16px;
  9161. }
  9162. #u78208 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:30px;
  9166. top:1117px;
  9167. width:65px;
  9168. height:22px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:16px;
  9174. }
  9175. #u78208 .text {
  9176. position:absolute;
  9177. align-self:flex-start;
  9178. padding:0px 0px 0px 0px;
  9179. box-sizing:border-box;
  9180. width:100%;
  9181. }
  9182. #u78208_text {
  9183. border-width:0px;
  9184. white-space:nowrap;
  9185. text-transform:none;
  9186. }
  9187. #u78209_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:65px;
  9193. height:22px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 0);
  9196. border:none;
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:16px;
  9205. }
  9206. #u78209 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:30px;
  9210. top:1201px;
  9211. width:65px;
  9212. height:22px;
  9213. display:flex;
  9214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:16px;
  9218. }
  9219. #u78209 .text {
  9220. position:absolute;
  9221. align-self:flex-start;
  9222. padding:0px 0px 0px 0px;
  9223. box-sizing:border-box;
  9224. width:100%;
  9225. }
  9226. #u78209_text {
  9227. border-width:0px;
  9228. white-space:nowrap;
  9229. text-transform:none;
  9230. }
  9231. #u78210_div {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:0px;
  9235. top:0px;
  9236. width:65px;
  9237. height:22px;
  9238. background:inherit;
  9239. background-color:rgba(255, 255, 255, 0);
  9240. border:none;
  9241. border-radius:0px;
  9242. -moz-box-shadow:none;
  9243. -webkit-box-shadow:none;
  9244. box-shadow:none;
  9245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:16px;
  9249. }
  9250. #u78210 {
  9251. border-width:0px;
  9252. position:absolute;
  9253. left:30px;
  9254. top:1159px;
  9255. width:65px;
  9256. height:22px;
  9257. display:flex;
  9258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9259. font-weight:400;
  9260. font-style:normal;
  9261. font-size:16px;
  9262. }
  9263. #u78210 .text {
  9264. position:absolute;
  9265. align-self:flex-start;
  9266. padding:0px 0px 0px 0px;
  9267. box-sizing:border-box;
  9268. width:100%;
  9269. }
  9270. #u78210_text {
  9271. border-width:0px;
  9272. white-space:nowrap;
  9273. text-transform:none;
  9274. }
  9275. #u78211_div {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:0px;
  9279. top:0px;
  9280. width:65px;
  9281. height:22px;
  9282. background:inherit;
  9283. background-color:rgba(255, 255, 255, 0);
  9284. border:none;
  9285. border-radius:0px;
  9286. -moz-box-shadow:none;
  9287. -webkit-box-shadow:none;
  9288. box-shadow:none;
  9289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9290. font-weight:400;
  9291. font-style:normal;
  9292. font-size:16px;
  9293. }
  9294. #u78211 {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:30px;
  9298. top:1243px;
  9299. width:65px;
  9300. height:22px;
  9301. display:flex;
  9302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9303. font-weight:400;
  9304. font-style:normal;
  9305. font-size:16px;
  9306. }
  9307. #u78211 .text {
  9308. position:absolute;
  9309. align-self:flex-start;
  9310. padding:0px 0px 0px 0px;
  9311. box-sizing:border-box;
  9312. width:100%;
  9313. }
  9314. #u78211_text {
  9315. border-width:0px;
  9316. white-space:nowrap;
  9317. text-transform:none;
  9318. }
  9319. #u78212_div {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:0px;
  9323. top:0px;
  9324. width:65px;
  9325. height:22px;
  9326. background:inherit;
  9327. background-color:rgba(255, 255, 255, 0);
  9328. border:none;
  9329. border-radius:0px;
  9330. -moz-box-shadow:none;
  9331. -webkit-box-shadow:none;
  9332. box-shadow:none;
  9333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9334. font-weight:400;
  9335. font-style:normal;
  9336. font-size:16px;
  9337. }
  9338. #u78212 {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:30px;
  9342. top:978px;
  9343. width:65px;
  9344. height:22px;
  9345. display:flex;
  9346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9347. font-weight:400;
  9348. font-style:normal;
  9349. font-size:16px;
  9350. }
  9351. #u78212 .text {
  9352. position:absolute;
  9353. align-self:flex-start;
  9354. padding:0px 0px 0px 0px;
  9355. box-sizing:border-box;
  9356. width:100%;
  9357. }
  9358. #u78212_text {
  9359. border-width:0px;
  9360. white-space:nowrap;
  9361. text-transform:none;
  9362. }
  9363. #u78213_div {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:65px;
  9369. height:22px;
  9370. background:inherit;
  9371. background-color:rgba(255, 255, 255, 0);
  9372. border:none;
  9373. border-radius:0px;
  9374. -moz-box-shadow:none;
  9375. -webkit-box-shadow:none;
  9376. box-shadow:none;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:16px;
  9381. }
  9382. #u78213 {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:30px;
  9386. top:622px;
  9387. width:65px;
  9388. height:22px;
  9389. display:flex;
  9390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9391. font-weight:400;
  9392. font-style:normal;
  9393. font-size:16px;
  9394. }
  9395. #u78213 .text {
  9396. position:absolute;
  9397. align-self:flex-start;
  9398. padding:0px 0px 0px 0px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u78213_text {
  9403. border-width:0px;
  9404. white-space:nowrap;
  9405. text-transform:none;
  9406. }
  9407. #u78214_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:1040px;
  9413. height:200px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 0);
  9416. border:none;
  9417. border-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9422. font-style:normal;
  9423. font-size:18px;
  9424. line-height:40px;
  9425. }
  9426. #u78214 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:359px;
  9430. top:703px;
  9431. width:1040px;
  9432. height:200px;
  9433. display:flex;
  9434. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9435. font-style:normal;
  9436. font-size:18px;
  9437. line-height:40px;
  9438. }
  9439. #u78214 .text {
  9440. position:absolute;
  9441. align-self:flex-start;
  9442. padding:0px 0px 0px 0px;
  9443. box-sizing:border-box;
  9444. width:100%;
  9445. }
  9446. #u78214_text {
  9447. border-width:0px;
  9448. white-space:nowrap;
  9449. text-transform:none;
  9450. }