styles.css 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028
  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. #u79248_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. #u79248 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u79248 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u79248_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u79249_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. #u79249 {
  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. #u79249 .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. #u79249_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u79250_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. #u79250 {
  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. #u79250 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u79250_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u79251 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u79252_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u79252 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u79252 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u79252_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u79253_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. #u79253 {
  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. #u79253 .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. #u79253_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u79254_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. #u79254 {
  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. #u79254 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u79254_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u79255 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u79256_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u79256 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u79256 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u79256_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u79257_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u79257 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u79257 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u79257_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u79258 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u79259_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u79259 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u79259 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u79259_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u79260_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u79260 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u79260 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u79260_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u79261 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u79262_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u79262 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u79262 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u79262_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79263_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79263 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u79263 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u79263_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u79264 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u79265_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u79265 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u79265 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u79265_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u79266_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u79266 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u79266 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u79266_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u79267 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u79268_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u79268 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u79268 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u79268_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u79269_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u79269 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u79269 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u79269_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u79270 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u79271_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u79271 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u79271 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u79271_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u79272_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u79272 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u79272 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u79272_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u79273 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u79274_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u79274 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u79274 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u79274_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u79275_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u79275 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u79275 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u79275_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u79276 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u79277_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u79277 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u79277 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u79277_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u79278_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u79278 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u79278 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u79278_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u79279 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u79280_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u79280 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u79280 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u79280_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u79281_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u79281 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u79281 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u79281_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u79282_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u79282 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u79282 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u79282_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u79283_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u79283 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u79283 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u79283_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u79284_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u79284 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u79284 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u79284_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u79285_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u79285 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u79285 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u79285_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u79286 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u79287_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u79287 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u79287 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u79287_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u79288_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u79288 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u79288 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u79288_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u79289 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u79290_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u79290 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u79290 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u79290_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u79291_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u79291 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u79291 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u79291_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u79292 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u79293_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u79293_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u79293_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u79293 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u79293 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u79293_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u79293.disabled {
  1428. }
  1429. .u79293_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u79294_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u79294 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u79294 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u79294_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u79295_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u79295 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u79295 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u79295_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u79296_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u79296 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u79296 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u79296_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u79297_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1552. }
  1553. #u79297 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u79297 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u79297_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u79298_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:25px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u79298 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:350px;
  1598. top:71px;
  1599. width:73px;
  1600. height:25px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u79298 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u79298_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u79299_div {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:55px;
  1625. height:30px;
  1626. background:inherit;
  1627. background-color:rgba(255, 255, 255, 1);
  1628. box-sizing:border-box;
  1629. border-width:1px;
  1630. border-style:solid;
  1631. border-color:rgba(170, 170, 170, 1);
  1632. border-radius:4px;
  1633. -moz-box-shadow:none;
  1634. -webkit-box-shadow:none;
  1635. box-shadow:none;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:12px;
  1640. color:#555555;
  1641. }
  1642. #u79299 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:1320px;
  1646. top:116px;
  1647. width:55px;
  1648. height:30px;
  1649. display:flex;
  1650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:12px;
  1654. color:#555555;
  1655. }
  1656. #u79299 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:5px 15px 5px 15px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u79299_text {
  1664. border-width:0px;
  1665. white-space:nowrap;
  1666. text-transform:none;
  1667. }
  1668. #u79300 {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:0px;
  1674. height:0px;
  1675. }
  1676. #u79301_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:140px;
  1682. height:30px;
  1683. background:inherit;
  1684. background-color:rgba(255, 255, 255, 1);
  1685. box-sizing:border-box;
  1686. border-width:1px;
  1687. border-style:solid;
  1688. border-color:rgba(201, 201, 201, 1);
  1689. border-radius:4px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'Microsoft YaHei', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:14px;
  1697. color:#CCCCCC;
  1698. text-align:left;
  1699. }
  1700. #u79301 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:1101px;
  1704. top:116px;
  1705. width:140px;
  1706. height:30px;
  1707. display:flex;
  1708. font-family:'Microsoft YaHei', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:14px;
  1712. color:#CCCCCC;
  1713. text-align:left;
  1714. }
  1715. #u79301 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:2px 8px 2px 8px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u79301_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. visibility:hidden;
  1727. }
  1728. #u79302_input {
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:127px;
  1733. height:25px;
  1734. padding:2px 2px 2px 2px;
  1735. font-family:'Microsoft YaHei', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:10px;
  1739. letter-spacing:normal;
  1740. color:#000000;
  1741. vertical-align:none;
  1742. text-align:left;
  1743. text-transform:none;
  1744. background-color:transparent;
  1745. border-color:transparent;
  1746. }
  1747. #u79302_input.disabled {
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:127px;
  1752. height:25px;
  1753. padding:2px 2px 2px 2px;
  1754. font-family:'Microsoft YaHei', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:10px;
  1758. letter-spacing:normal;
  1759. color:#000000;
  1760. vertical-align:none;
  1761. text-align:left;
  1762. text-transform:none;
  1763. background-color:transparent;
  1764. border-color:transparent;
  1765. }
  1766. #u79302_div {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:127px;
  1772. height:25px;
  1773. background:inherit;
  1774. background-color:rgba(255, 255, 255, 1);
  1775. border:none;
  1776. border-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-family:'Microsoft YaHei', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:10px;
  1784. }
  1785. #u79302 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:1109px;
  1789. top:117px;
  1790. width:127px;
  1791. height:25px;
  1792. display:flex;
  1793. font-family:'Microsoft YaHei', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:10px;
  1797. }
  1798. #u79302 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u79302_div.disabled {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:127px;
  1811. height:25px;
  1812. background:inherit;
  1813. background-color:rgba(240, 240, 240, 1);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'Microsoft YaHei', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:10px;
  1823. }
  1824. #u79302.disabled {
  1825. }
  1826. #u79303_div {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:59px;
  1832. height:30px;
  1833. background:inherit;
  1834. background-color:rgba(0, 153, 255, 1);
  1835. box-sizing:border-box;
  1836. border-width:1px;
  1837. border-style:solid;
  1838. border-color:rgba(0, 153, 255, 1);
  1839. border-radius:4px;
  1840. -moz-box-shadow:none;
  1841. -webkit-box-shadow:none;
  1842. box-shadow:none;
  1843. font-family:'Microsoft YaHei', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u79303 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:1251px;
  1853. top:116px;
  1854. width:59px;
  1855. height:30px;
  1856. display:flex;
  1857. font-family:'Microsoft YaHei', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:14px;
  1861. color:#FFFFFF;
  1862. }
  1863. #u79303 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:5px 15px 5px 15px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u79303_text {
  1871. border-width:0px;
  1872. white-space:nowrap;
  1873. text-transform:none;
  1874. }
  1875. #u79304 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:0px;
  1881. height:0px;
  1882. }
  1883. #u79305_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:140px;
  1889. height:30px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 1);
  1892. box-sizing:border-box;
  1893. border-width:1px;
  1894. border-style:solid;
  1895. border-color:rgba(201, 201, 201, 1);
  1896. border-radius:4px;
  1897. -moz-box-shadow:none;
  1898. -webkit-box-shadow:none;
  1899. box-shadow:none;
  1900. font-family:'Microsoft YaHei', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:14px;
  1904. color:#CCCCCC;
  1905. text-align:left;
  1906. }
  1907. #u79305 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:801px;
  1911. top:116px;
  1912. width:140px;
  1913. height:30px;
  1914. display:flex;
  1915. font-family:'Microsoft YaHei', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:14px;
  1919. color:#CCCCCC;
  1920. text-align:left;
  1921. }
  1922. #u79305 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 8px 2px 8px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u79305_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u79306_input {
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:127px;
  1940. height:25px;
  1941. padding:2px 2px 2px 2px;
  1942. font-family:'Microsoft YaHei', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:10px;
  1946. letter-spacing:normal;
  1947. color:#000000;
  1948. vertical-align:none;
  1949. text-align:left;
  1950. text-transform:none;
  1951. background-color:transparent;
  1952. border-color:transparent;
  1953. }
  1954. #u79306_input.disabled {
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:127px;
  1959. height:25px;
  1960. padding:2px 2px 2px 2px;
  1961. font-family:'Microsoft YaHei', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:10px;
  1965. letter-spacing:normal;
  1966. color:#000000;
  1967. vertical-align:none;
  1968. text-align:left;
  1969. text-transform:none;
  1970. background-color:transparent;
  1971. border-color:transparent;
  1972. }
  1973. #u79306_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:127px;
  1979. height:25px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 1);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'Microsoft YaHei', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:10px;
  1991. }
  1992. #u79306 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:809px;
  1996. top:117px;
  1997. width:127px;
  1998. height:25px;
  1999. display:flex;
  2000. font-family:'Microsoft YaHei', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:10px;
  2004. }
  2005. #u79306 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u79306_div.disabled {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:127px;
  2018. height:25px;
  2019. background:inherit;
  2020. background-color:rgba(240, 240, 240, 1);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'Microsoft YaHei', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:10px;
  2030. }
  2031. #u79306.disabled {
  2032. }
  2033. #u79307 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:0px;
  2039. height:0px;
  2040. }
  2041. #u79308_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:140px;
  2047. height:30px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 1);
  2050. box-sizing:border-box;
  2051. border-width:1px;
  2052. border-style:solid;
  2053. border-color:rgba(215, 215, 215, 1);
  2054. border-radius:4px;
  2055. -moz-box-shadow:none;
  2056. -webkit-box-shadow:none;
  2057. box-shadow:none;
  2058. font-size:11px;
  2059. }
  2060. #u79308 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:501px;
  2064. top:116px;
  2065. width:140px;
  2066. height:30px;
  2067. display:flex;
  2068. font-size:11px;
  2069. }
  2070. #u79308 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u79308_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u79309_input {
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:123px;
  2088. height:23px;
  2089. padding:2px 2px 2px 2px;
  2090. font-family:'ArialMT', 'Arial', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:11px;
  2094. letter-spacing:normal;
  2095. color:#AAAAAA;
  2096. vertical-align:none;
  2097. text-align:left;
  2098. text-transform:none;
  2099. background-color:transparent;
  2100. border-color:transparent;
  2101. }
  2102. #u79309_input.disabled {
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:123px;
  2107. height:23px;
  2108. padding:2px 2px 2px 2px;
  2109. font-family:'ArialMT', 'Arial', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:11px;
  2113. letter-spacing:normal;
  2114. color:#AAAAAA;
  2115. vertical-align:none;
  2116. text-align:left;
  2117. text-transform:none;
  2118. background-color:transparent;
  2119. border-color:transparent;
  2120. }
  2121. #u79309_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:123px;
  2127. height:23px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 1);
  2130. border:none;
  2131. border-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. font-size:11px;
  2136. color:#AAAAAA;
  2137. }
  2138. #u79309 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:507px;
  2142. top:118px;
  2143. width:123px;
  2144. height:23px;
  2145. display:flex;
  2146. font-size:11px;
  2147. color:#AAAAAA;
  2148. }
  2149. #u79309 .text {
  2150. position:absolute;
  2151. align-self:flex-start;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u79309_div.disabled {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:123px;
  2162. height:23px;
  2163. background:inherit;
  2164. background-color:rgba(240, 240, 240, 1);
  2165. border:none;
  2166. border-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-size:11px;
  2171. color:#AAAAAA;
  2172. }
  2173. #u79309.disabled {
  2174. }
  2175. .u79309_input_option {
  2176. font-size:11px;
  2177. }
  2178. #u79310 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:0px;
  2184. height:0px;
  2185. }
  2186. #u79311_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:140px;
  2192. height:30px;
  2193. background:inherit;
  2194. background-color:rgba(255, 255, 255, 1);
  2195. box-sizing:border-box;
  2196. border-width:1px;
  2197. border-style:solid;
  2198. border-color:rgba(215, 215, 215, 1);
  2199. border-radius:4px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-size:11px;
  2204. }
  2205. #u79311 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:351px;
  2209. top:115px;
  2210. width:140px;
  2211. height:30px;
  2212. display:flex;
  2213. font-size:11px;
  2214. }
  2215. #u79311 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 2px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u79311_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. visibility:hidden;
  2227. }
  2228. #u79312_input {
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:123px;
  2233. height:23px;
  2234. padding:2px 2px 2px 2px;
  2235. font-family:'ArialMT', 'Arial', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:11px;
  2239. letter-spacing:normal;
  2240. color:#AAAAAA;
  2241. vertical-align:none;
  2242. text-align:left;
  2243. text-transform:none;
  2244. background-color:transparent;
  2245. border-color:transparent;
  2246. }
  2247. #u79312_input.disabled {
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:123px;
  2252. height:23px;
  2253. padding:2px 2px 2px 2px;
  2254. font-family:'ArialMT', 'Arial', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:11px;
  2258. letter-spacing:normal;
  2259. color:#AAAAAA;
  2260. vertical-align:none;
  2261. text-align:left;
  2262. text-transform:none;
  2263. background-color:transparent;
  2264. border-color:transparent;
  2265. }
  2266. #u79312_div {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:123px;
  2272. height:23px;
  2273. background:inherit;
  2274. background-color:rgba(255, 255, 255, 1);
  2275. border:none;
  2276. border-radius:0px;
  2277. -moz-box-shadow:none;
  2278. -webkit-box-shadow:none;
  2279. box-shadow:none;
  2280. font-size:11px;
  2281. color:#AAAAAA;
  2282. }
  2283. #u79312 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:357px;
  2287. top:117px;
  2288. width:123px;
  2289. height:23px;
  2290. display:flex;
  2291. font-size:11px;
  2292. color:#AAAAAA;
  2293. }
  2294. #u79312 .text {
  2295. position:absolute;
  2296. align-self:flex-start;
  2297. padding:2px 2px 2px 2px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u79312_div.disabled {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:123px;
  2307. height:23px;
  2308. background:inherit;
  2309. background-color:rgba(240, 240, 240, 1);
  2310. border:none;
  2311. border-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. font-size:11px;
  2316. color:#AAAAAA;
  2317. }
  2318. #u79312.disabled {
  2319. }
  2320. .u79312_input_option {
  2321. font-size:11px;
  2322. }
  2323. #u79313 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:0px;
  2329. height:0px;
  2330. }
  2331. #u79314_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:140px;
  2337. height:30px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 1);
  2340. box-sizing:border-box;
  2341. border-width:1px;
  2342. border-style:solid;
  2343. border-color:rgba(201, 201, 201, 1);
  2344. border-radius:4px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'Microsoft YaHei', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#CCCCCC;
  2353. text-align:left;
  2354. }
  2355. #u79314 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:951px;
  2359. top:116px;
  2360. width:140px;
  2361. height:30px;
  2362. display:flex;
  2363. font-family:'Microsoft YaHei', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:14px;
  2367. color:#CCCCCC;
  2368. text-align:left;
  2369. }
  2370. #u79314 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 8px 2px 8px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u79314_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u79315_input {
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:127px;
  2388. height:25px;
  2389. padding:2px 2px 2px 2px;
  2390. font-family:'Microsoft YaHei', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:10px;
  2394. letter-spacing:normal;
  2395. color:#000000;
  2396. vertical-align:none;
  2397. text-align:left;
  2398. text-transform:none;
  2399. background-color:transparent;
  2400. border-color:transparent;
  2401. }
  2402. #u79315_input.disabled {
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:127px;
  2407. height:25px;
  2408. padding:2px 2px 2px 2px;
  2409. font-family:'Microsoft YaHei', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:10px;
  2413. letter-spacing:normal;
  2414. color:#000000;
  2415. vertical-align:none;
  2416. text-align:left;
  2417. text-transform:none;
  2418. background-color:transparent;
  2419. border-color:transparent;
  2420. }
  2421. #u79315_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:127px;
  2427. height:25px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 1);
  2430. border:none;
  2431. border-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'Microsoft YaHei', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:10px;
  2439. }
  2440. #u79315 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:959px;
  2444. top:117px;
  2445. width:127px;
  2446. height:25px;
  2447. display:flex;
  2448. font-family:'Microsoft YaHei', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:10px;
  2452. }
  2453. #u79315 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u79315_div.disabled {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:127px;
  2466. height:25px;
  2467. background:inherit;
  2468. background-color:rgba(240, 240, 240, 1);
  2469. border:none;
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'Microsoft YaHei', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:10px;
  2478. }
  2479. #u79315.disabled {
  2480. }
  2481. #u79316_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:55px;
  2487. height:30px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 1);
  2490. box-sizing:border-box;
  2491. border-width:1px;
  2492. border-style:solid;
  2493. border-color:rgba(170, 170, 170, 1);
  2494. border-radius:4px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#555555;
  2503. }
  2504. #u79316 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:351px;
  2508. top:165px;
  2509. width:55px;
  2510. height:30px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. color:#555555;
  2517. }
  2518. #u79316 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:5px 15px 5px 15px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u79316_text {
  2526. border-width:0px;
  2527. white-space:nowrap;
  2528. text-transform:none;
  2529. }
  2530. #u79317 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:0px;
  2536. height:0px;
  2537. }
  2538. #u79318_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:140px;
  2544. height:30px;
  2545. background:inherit;
  2546. background-color:rgba(255, 255, 255, 1);
  2547. box-sizing:border-box;
  2548. border-width:1px;
  2549. border-style:solid;
  2550. border-color:rgba(215, 215, 215, 1);
  2551. border-radius:4px;
  2552. -moz-box-shadow:none;
  2553. -webkit-box-shadow:none;
  2554. box-shadow:none;
  2555. font-size:11px;
  2556. }
  2557. #u79318 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:651px;
  2561. top:116px;
  2562. width:140px;
  2563. height:30px;
  2564. display:flex;
  2565. font-size:11px;
  2566. }
  2567. #u79318 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u79318_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u79319_input {
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:123px;
  2585. height:23px;
  2586. padding:2px 2px 2px 2px;
  2587. font-family:'ArialMT', 'Arial', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:11px;
  2591. letter-spacing:normal;
  2592. color:#AAAAAA;
  2593. vertical-align:none;
  2594. text-align:left;
  2595. text-transform:none;
  2596. background-color:transparent;
  2597. border-color:transparent;
  2598. }
  2599. #u79319_input.disabled {
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:123px;
  2604. height:23px;
  2605. padding:2px 2px 2px 2px;
  2606. font-family:'ArialMT', 'Arial', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:11px;
  2610. letter-spacing:normal;
  2611. color:#AAAAAA;
  2612. vertical-align:none;
  2613. text-align:left;
  2614. text-transform:none;
  2615. background-color:transparent;
  2616. border-color:transparent;
  2617. }
  2618. #u79319_div {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:123px;
  2624. height:23px;
  2625. background:inherit;
  2626. background-color:rgba(255, 255, 255, 1);
  2627. border:none;
  2628. border-radius:0px;
  2629. -moz-box-shadow:none;
  2630. -webkit-box-shadow:none;
  2631. box-shadow:none;
  2632. font-size:11px;
  2633. color:#AAAAAA;
  2634. }
  2635. #u79319 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:657px;
  2639. top:118px;
  2640. width:123px;
  2641. height:23px;
  2642. display:flex;
  2643. font-size:11px;
  2644. color:#AAAAAA;
  2645. }
  2646. #u79319 .text {
  2647. position:absolute;
  2648. align-self:flex-start;
  2649. padding:2px 2px 2px 2px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u79319_div.disabled {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:123px;
  2659. height:23px;
  2660. background:inherit;
  2661. background-color:rgba(240, 240, 240, 1);
  2662. border:none;
  2663. border-radius:0px;
  2664. -moz-box-shadow:none;
  2665. -webkit-box-shadow:none;
  2666. box-shadow:none;
  2667. font-size:11px;
  2668. color:#AAAAAA;
  2669. }
  2670. #u79319.disabled {
  2671. }
  2672. .u79319_input_option {
  2673. font-size:11px;
  2674. }
  2675. #u79320 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:0px;
  2681. height:0px;
  2682. }
  2683. #u79321 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:351px;
  2687. top:205px;
  2688. width:1207px;
  2689. height:413px;
  2690. }
  2691. #u79322_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:80px;
  2697. height:43px;
  2698. }
  2699. #u79322 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:80px;
  2705. height:43px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:14px;
  2711. color:#FFFFFF;
  2712. text-align:left;
  2713. line-height:30px;
  2714. }
  2715. #u79322 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 10px 2px 10px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u79322_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. }
  2727. #u79323_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:80px;
  2733. height:43px;
  2734. }
  2735. #u79323 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:80px;
  2739. top:0px;
  2740. width:80px;
  2741. height:43px;
  2742. display:flex;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:14px;
  2747. color:#FFFFFF;
  2748. text-align:left;
  2749. line-height:30px;
  2750. }
  2751. #u79323 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 10px 2px 10px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u79323_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u79324_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:117px;
  2769. height:43px;
  2770. }
  2771. #u79324 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:160px;
  2775. top:0px;
  2776. width:117px;
  2777. height:43px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:14px;
  2783. color:#FFFFFF;
  2784. text-align:left;
  2785. line-height:30px;
  2786. }
  2787. #u79324 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 10px 2px 10px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u79324_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u79325_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:117px;
  2805. height:43px;
  2806. }
  2807. #u79325 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:277px;
  2811. top:0px;
  2812. width:117px;
  2813. height:43px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:14px;
  2819. color:#FFFFFF;
  2820. text-align:left;
  2821. line-height:30px;
  2822. }
  2823. #u79325 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 10px 2px 10px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u79325_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. }
  2835. #u79326_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:117px;
  2841. height:43px;
  2842. }
  2843. #u79326 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:394px;
  2847. top:0px;
  2848. width:117px;
  2849. height:43px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. color:#FFFFFF;
  2856. text-align:left;
  2857. line-height:30px;
  2858. }
  2859. #u79326 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 10px 2px 10px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u79326_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. }
  2871. #u79327_img {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:116px;
  2877. height:43px;
  2878. }
  2879. #u79327 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:511px;
  2883. top:0px;
  2884. width:116px;
  2885. height:43px;
  2886. display:flex;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:14px;
  2891. color:#FFFFFF;
  2892. text-align:left;
  2893. line-height:30px;
  2894. }
  2895. #u79327 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 10px 2px 10px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u79327_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u79328_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:188px;
  2913. height:43px;
  2914. }
  2915. #u79328 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:627px;
  2919. top:0px;
  2920. width:188px;
  2921. height:43px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:14px;
  2927. color:#FFFFFF;
  2928. text-align:left;
  2929. line-height:30px;
  2930. }
  2931. #u79328 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 10px 2px 10px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u79328_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. }
  2943. #u79329_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:117px;
  2949. height:43px;
  2950. }
  2951. #u79329 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:815px;
  2955. top:0px;
  2956. width:117px;
  2957. height:43px;
  2958. display:flex;
  2959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:14px;
  2963. color:#FFFFFF;
  2964. text-align:left;
  2965. line-height:30px;
  2966. }
  2967. #u79329 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 10px 2px 10px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u79329_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. }
  2979. #u79330_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:94px;
  2985. height:43px;
  2986. }
  2987. #u79330 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:932px;
  2991. top:0px;
  2992. width:94px;
  2993. height:43px;
  2994. display:flex;
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:14px;
  2999. color:#FFFFFF;
  3000. text-align:left;
  3001. line-height:30px;
  3002. }
  3003. #u79330 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 10px 2px 10px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u79330_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. }
  3015. #u79331_img {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:180px;
  3021. height:43px;
  3022. }
  3023. #u79331 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:1026px;
  3027. top:0px;
  3028. width:180px;
  3029. height:43px;
  3030. display:flex;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:14px;
  3035. color:#FFFFFF;
  3036. text-align:left;
  3037. line-height:30px;
  3038. }
  3039. #u79331 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 10px 2px 10px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u79331_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. }
  3051. #u79332_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:80px;
  3057. height:50px;
  3058. }
  3059. #u79332 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:43px;
  3064. width:80px;
  3065. height:50px;
  3066. display:flex;
  3067. font-size:14px;
  3068. text-align:left;
  3069. }
  3070. #u79332 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 10px 2px 10px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u79332_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u79333_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:80px;
  3089. height:50px;
  3090. }
  3091. #u79333 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:80px;
  3095. top:43px;
  3096. width:80px;
  3097. height:50px;
  3098. display:flex;
  3099. font-size:14px;
  3100. text-align:left;
  3101. }
  3102. #u79333 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 10px 2px 10px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u79333_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. visibility:hidden;
  3114. }
  3115. #u79334_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:117px;
  3121. height:50px;
  3122. }
  3123. #u79334 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:160px;
  3127. top:43px;
  3128. width:117px;
  3129. height:50px;
  3130. display:flex;
  3131. font-size:14px;
  3132. text-align:left;
  3133. }
  3134. #u79334 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 10px 2px 10px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u79334_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. }
  3146. #u79335_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:117px;
  3152. height:50px;
  3153. }
  3154. #u79335 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:277px;
  3158. top:43px;
  3159. width:117px;
  3160. height:50px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. text-align:left;
  3167. }
  3168. #u79335 .text {
  3169. position:absolute;
  3170. align-self:center;
  3171. padding:2px 10px 2px 10px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u79335_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. }
  3180. #u79336_img {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:117px;
  3186. height:50px;
  3187. }
  3188. #u79336 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:394px;
  3192. top:43px;
  3193. width:117px;
  3194. height:50px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:14px;
  3200. text-align:left;
  3201. }
  3202. #u79336 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:2px 10px 2px 10px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u79336_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. visibility:hidden;
  3214. }
  3215. #u79337_img {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:116px;
  3221. height:50px;
  3222. }
  3223. #u79337 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:511px;
  3227. top:43px;
  3228. width:116px;
  3229. height:50px;
  3230. display:flex;
  3231. font-size:14px;
  3232. text-align:left;
  3233. }
  3234. #u79337 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 10px 2px 10px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u79337_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u79338_img {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:188px;
  3253. height:50px;
  3254. }
  3255. #u79338 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:627px;
  3259. top:43px;
  3260. width:188px;
  3261. height:50px;
  3262. display:flex;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. text-align:left;
  3267. }
  3268. #u79338 .text {
  3269. position:absolute;
  3270. align-self:center;
  3271. padding:2px 10px 2px 10px;
  3272. box-sizing:border-box;
  3273. width:100%;
  3274. }
  3275. #u79338_text {
  3276. border-width:0px;
  3277. word-wrap:break-word;
  3278. text-transform:none;
  3279. }
  3280. #u79339_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:117px;
  3286. height:50px;
  3287. }
  3288. #u79339 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:815px;
  3292. top:43px;
  3293. width:117px;
  3294. height:50px;
  3295. display:flex;
  3296. font-size:14px;
  3297. text-align:left;
  3298. }
  3299. #u79339 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 10px 2px 10px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u79339_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u79340_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:94px;
  3318. height:50px;
  3319. }
  3320. #u79340 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:932px;
  3324. top:43px;
  3325. width:94px;
  3326. height:50px;
  3327. display:flex;
  3328. font-size:14px;
  3329. text-align:left;
  3330. }
  3331. #u79340 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 10px 2px 10px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u79340_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u79341_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:180px;
  3350. height:50px;
  3351. }
  3352. #u79341 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:1026px;
  3356. top:43px;
  3357. width:180px;
  3358. height:50px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:14px;
  3364. text-align:left;
  3365. }
  3366. #u79341 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 10px 2px 10px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u79341_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. }
  3378. #u79342_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:80px;
  3384. height:50px;
  3385. }
  3386. #u79342 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:93px;
  3391. width:80px;
  3392. height:50px;
  3393. display:flex;
  3394. font-size:14px;
  3395. text-align:left;
  3396. }
  3397. #u79342 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 10px 2px 10px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u79342_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. visibility:hidden;
  3409. }
  3410. #u79343_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:80px;
  3416. height:50px;
  3417. }
  3418. #u79343 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:80px;
  3422. top:93px;
  3423. width:80px;
  3424. height:50px;
  3425. display:flex;
  3426. font-size:14px;
  3427. text-align:left;
  3428. }
  3429. #u79343 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 10px 2px 10px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u79343_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u79344_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:117px;
  3448. height:50px;
  3449. }
  3450. #u79344 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:160px;
  3454. top:93px;
  3455. width:117px;
  3456. height:50px;
  3457. display:flex;
  3458. font-size:14px;
  3459. text-align:left;
  3460. }
  3461. #u79344 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 10px 2px 10px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u79344_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. }
  3473. #u79345_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:117px;
  3479. height:50px;
  3480. }
  3481. #u79345 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:277px;
  3485. top:93px;
  3486. width:117px;
  3487. height:50px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. text-align:left;
  3494. }
  3495. #u79345 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 10px 2px 10px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u79345_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. }
  3507. #u79346_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:117px;
  3513. height:50px;
  3514. }
  3515. #u79346 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:394px;
  3519. top:93px;
  3520. width:117px;
  3521. height:50px;
  3522. display:flex;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:14px;
  3527. text-align:left;
  3528. }
  3529. #u79346 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 10px 2px 10px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u79346_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u79347_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:116px;
  3548. height:50px;
  3549. }
  3550. #u79347 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:511px;
  3554. top:93px;
  3555. width:116px;
  3556. height:50px;
  3557. display:flex;
  3558. font-size:14px;
  3559. text-align:left;
  3560. }
  3561. #u79347 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 10px 2px 10px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u79347_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u79348_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:188px;
  3580. height:50px;
  3581. }
  3582. #u79348 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:627px;
  3586. top:93px;
  3587. width:188px;
  3588. height:50px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. text-align:left;
  3594. }
  3595. #u79348 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 10px 2px 10px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u79348_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. }
  3607. #u79349_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:117px;
  3613. height:50px;
  3614. }
  3615. #u79349 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:815px;
  3619. top:93px;
  3620. width:117px;
  3621. height:50px;
  3622. display:flex;
  3623. font-size:14px;
  3624. text-align:left;
  3625. }
  3626. #u79349 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 10px 2px 10px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u79349_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u79350_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:94px;
  3645. height:50px;
  3646. }
  3647. #u79350 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:932px;
  3651. top:93px;
  3652. width:94px;
  3653. height:50px;
  3654. display:flex;
  3655. font-size:14px;
  3656. text-align:left;
  3657. }
  3658. #u79350 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 10px 2px 10px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u79350_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u79351_img {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:180px;
  3677. height:50px;
  3678. }
  3679. #u79351 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:1026px;
  3683. top:93px;
  3684. width:180px;
  3685. height:50px;
  3686. display:flex;
  3687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:14px;
  3691. text-align:left;
  3692. }
  3693. #u79351 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 10px 2px 10px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u79351_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. }
  3705. #u79352_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:80px;
  3711. height:50px;
  3712. }
  3713. #u79352 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:143px;
  3718. width:80px;
  3719. height:50px;
  3720. display:flex;
  3721. font-size:14px;
  3722. text-align:left;
  3723. }
  3724. #u79352 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 10px 2px 10px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u79352_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u79353_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:80px;
  3743. height:50px;
  3744. }
  3745. #u79353 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:80px;
  3749. top:143px;
  3750. width:80px;
  3751. height:50px;
  3752. display:flex;
  3753. font-size:14px;
  3754. text-align:left;
  3755. }
  3756. #u79353 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 10px 2px 10px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u79353_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u79354_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:117px;
  3775. height:50px;
  3776. }
  3777. #u79354 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:160px;
  3781. top:143px;
  3782. width:117px;
  3783. height:50px;
  3784. display:flex;
  3785. font-size:14px;
  3786. text-align:left;
  3787. }
  3788. #u79354 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 10px 2px 10px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u79354_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. }
  3800. #u79355_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:117px;
  3806. height:50px;
  3807. }
  3808. #u79355 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:277px;
  3812. top:143px;
  3813. width:117px;
  3814. height:50px;
  3815. display:flex;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. text-align:left;
  3821. }
  3822. #u79355 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 10px 2px 10px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u79355_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. }
  3834. #u79356_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:117px;
  3840. height:50px;
  3841. }
  3842. #u79356 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:394px;
  3846. top:143px;
  3847. width:117px;
  3848. height:50px;
  3849. display:flex;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:14px;
  3854. text-align:left;
  3855. }
  3856. #u79356 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 10px 2px 10px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u79356_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u79357_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:116px;
  3875. height:50px;
  3876. }
  3877. #u79357 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:511px;
  3881. top:143px;
  3882. width:116px;
  3883. height:50px;
  3884. display:flex;
  3885. font-size:14px;
  3886. text-align:left;
  3887. }
  3888. #u79357 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 10px 2px 10px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u79357_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u79358_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:188px;
  3907. height:50px;
  3908. }
  3909. #u79358 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:627px;
  3913. top:143px;
  3914. width:188px;
  3915. height:50px;
  3916. display:flex;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. text-align:left;
  3921. }
  3922. #u79358 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 10px 2px 10px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u79358_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. }
  3934. #u79359_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:117px;
  3940. height:50px;
  3941. }
  3942. #u79359 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:815px;
  3946. top:143px;
  3947. width:117px;
  3948. height:50px;
  3949. display:flex;
  3950. font-size:14px;
  3951. text-align:left;
  3952. }
  3953. #u79359 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 10px 2px 10px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u79359_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u79360_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:94px;
  3972. height:50px;
  3973. }
  3974. #u79360 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:932px;
  3978. top:143px;
  3979. width:94px;
  3980. height:50px;
  3981. display:flex;
  3982. font-size:14px;
  3983. text-align:left;
  3984. }
  3985. #u79360 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 10px 2px 10px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u79360_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u79361_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:180px;
  4004. height:50px;
  4005. }
  4006. #u79361 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:1026px;
  4010. top:143px;
  4011. width:180px;
  4012. height:50px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:14px;
  4018. color:#1890FF;
  4019. text-align:left;
  4020. }
  4021. #u79361 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:2px 10px 2px 10px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u79361_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. }
  4033. #u79362_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:80px;
  4039. height:44px;
  4040. }
  4041. #u79362 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:193px;
  4046. width:80px;
  4047. height:44px;
  4048. display:flex;
  4049. font-size:14px;
  4050. text-align:left;
  4051. }
  4052. #u79362 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 10px 2px 10px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u79362_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u79363_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:80px;
  4071. height:44px;
  4072. }
  4073. #u79363 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:80px;
  4077. top:193px;
  4078. width:80px;
  4079. height:44px;
  4080. display:flex;
  4081. font-size:14px;
  4082. text-align:left;
  4083. }
  4084. #u79363 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 10px 2px 10px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u79363_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u79364_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:117px;
  4103. height:44px;
  4104. }
  4105. #u79364 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:160px;
  4109. top:193px;
  4110. width:117px;
  4111. height:44px;
  4112. display:flex;
  4113. font-size:14px;
  4114. text-align:left;
  4115. }
  4116. #u79364 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 10px 2px 10px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u79364_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u79365_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:117px;
  4135. height:44px;
  4136. }
  4137. #u79365 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:277px;
  4141. top:193px;
  4142. width:117px;
  4143. height:44px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:14px;
  4149. text-align:left;
  4150. }
  4151. #u79365 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 10px 2px 10px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u79365_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u79366_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:117px;
  4170. height:44px;
  4171. }
  4172. #u79366 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:394px;
  4176. top:193px;
  4177. width:117px;
  4178. height:44px;
  4179. display:flex;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. text-align:left;
  4185. }
  4186. #u79366 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 10px 2px 10px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u79366_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u79367_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:116px;
  4205. height:44px;
  4206. }
  4207. #u79367 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:511px;
  4211. top:193px;
  4212. width:116px;
  4213. height:44px;
  4214. display:flex;
  4215. font-size:14px;
  4216. text-align:left;
  4217. }
  4218. #u79367 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 10px 2px 10px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u79367_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u79368_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:188px;
  4237. height:44px;
  4238. }
  4239. #u79368 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:627px;
  4243. top:193px;
  4244. width:188px;
  4245. height:44px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. text-align:left;
  4252. }
  4253. #u79368 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 10px 2px 10px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u79368_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u79369_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:117px;
  4272. height:44px;
  4273. }
  4274. #u79369 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:815px;
  4278. top:193px;
  4279. width:117px;
  4280. height:44px;
  4281. display:flex;
  4282. font-size:14px;
  4283. text-align:left;
  4284. }
  4285. #u79369 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 10px 2px 10px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u79369_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u79370_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:94px;
  4304. height:44px;
  4305. }
  4306. #u79370 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:932px;
  4310. top:193px;
  4311. width:94px;
  4312. height:44px;
  4313. display:flex;
  4314. font-size:14px;
  4315. text-align:left;
  4316. }
  4317. #u79370 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 10px 2px 10px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u79370_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u79371_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:180px;
  4336. height:44px;
  4337. }
  4338. #u79371 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:1026px;
  4342. top:193px;
  4343. width:180px;
  4344. height:44px;
  4345. display:flex;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:14px;
  4350. color:#1890FF;
  4351. text-align:left;
  4352. }
  4353. #u79371 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:2px 10px 2px 10px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u79371_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. visibility:hidden;
  4365. }
  4366. #u79372_img {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:80px;
  4372. height:44px;
  4373. }
  4374. #u79372 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:237px;
  4379. width:80px;
  4380. height:44px;
  4381. display:flex;
  4382. font-size:14px;
  4383. text-align:left;
  4384. }
  4385. #u79372 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 10px 2px 10px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u79372_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u79373_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:80px;
  4404. height:44px;
  4405. }
  4406. #u79373 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:80px;
  4410. top:237px;
  4411. width:80px;
  4412. height:44px;
  4413. display:flex;
  4414. font-size:14px;
  4415. text-align:left;
  4416. }
  4417. #u79373 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 10px 2px 10px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u79373_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u79374_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:117px;
  4436. height:44px;
  4437. }
  4438. #u79374 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:160px;
  4442. top:237px;
  4443. width:117px;
  4444. height:44px;
  4445. display:flex;
  4446. font-size:14px;
  4447. text-align:left;
  4448. }
  4449. #u79374 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:2px 10px 2px 10px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u79374_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. visibility:hidden;
  4461. }
  4462. #u79375_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:117px;
  4468. height:44px;
  4469. }
  4470. #u79375 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:277px;
  4474. top:237px;
  4475. width:117px;
  4476. height:44px;
  4477. display:flex;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:14px;
  4482. text-align:left;
  4483. }
  4484. #u79375 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 10px 2px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u79375_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u79376_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:117px;
  4503. height:44px;
  4504. }
  4505. #u79376 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:394px;
  4509. top:237px;
  4510. width:117px;
  4511. height:44px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. text-align:left;
  4518. }
  4519. #u79376 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 10px 2px 10px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u79376_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u79377_img {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:116px;
  4538. height:44px;
  4539. }
  4540. #u79377 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:511px;
  4544. top:237px;
  4545. width:116px;
  4546. height:44px;
  4547. display:flex;
  4548. font-size:14px;
  4549. text-align:left;
  4550. }
  4551. #u79377 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 10px 2px 10px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u79377_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u79378_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:188px;
  4570. height:44px;
  4571. }
  4572. #u79378 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:627px;
  4576. top:237px;
  4577. width:188px;
  4578. height:44px;
  4579. display:flex;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. text-align:left;
  4584. }
  4585. #u79378 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 10px 2px 10px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u79378_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u79379_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:117px;
  4604. height:44px;
  4605. }
  4606. #u79379 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:815px;
  4610. top:237px;
  4611. width:117px;
  4612. height:44px;
  4613. display:flex;
  4614. font-size:14px;
  4615. text-align:left;
  4616. }
  4617. #u79379 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 10px 2px 10px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u79379_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u79380_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:94px;
  4636. height:44px;
  4637. }
  4638. #u79380 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:932px;
  4642. top:237px;
  4643. width:94px;
  4644. height:44px;
  4645. display:flex;
  4646. font-size:14px;
  4647. text-align:left;
  4648. }
  4649. #u79380 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 10px 2px 10px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u79380_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u79381_img {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:180px;
  4668. height:44px;
  4669. }
  4670. #u79381 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:1026px;
  4674. top:237px;
  4675. width:180px;
  4676. height:44px;
  4677. display:flex;
  4678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4679. font-weight:400;
  4680. font-style:normal;
  4681. font-size:14px;
  4682. color:#1890FF;
  4683. text-align:left;
  4684. }
  4685. #u79381 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 10px 2px 10px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u79381_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u79382_img {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:80px;
  4704. height:44px;
  4705. }
  4706. #u79382 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:281px;
  4711. width:80px;
  4712. height:44px;
  4713. display:flex;
  4714. font-size:14px;
  4715. text-align:left;
  4716. }
  4717. #u79382 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 10px 2px 10px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u79382_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u79383_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:80px;
  4736. height:44px;
  4737. }
  4738. #u79383 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:80px;
  4742. top:281px;
  4743. width:80px;
  4744. height:44px;
  4745. display:flex;
  4746. font-size:14px;
  4747. text-align:left;
  4748. }
  4749. #u79383 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 10px 2px 10px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u79383_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u79384_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:117px;
  4768. height:44px;
  4769. }
  4770. #u79384 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:160px;
  4774. top:281px;
  4775. width:117px;
  4776. height:44px;
  4777. display:flex;
  4778. font-size:14px;
  4779. text-align:left;
  4780. }
  4781. #u79384 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 10px 2px 10px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u79384_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u79385_img {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:117px;
  4800. height:44px;
  4801. }
  4802. #u79385 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:277px;
  4806. top:281px;
  4807. width:117px;
  4808. height:44px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:14px;
  4814. text-align:left;
  4815. }
  4816. #u79385 .text {
  4817. position:absolute;
  4818. align-self:center;
  4819. padding:2px 10px 2px 10px;
  4820. box-sizing:border-box;
  4821. width:100%;
  4822. }
  4823. #u79385_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. visibility:hidden;
  4828. }
  4829. #u79386_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:117px;
  4835. height:44px;
  4836. }
  4837. #u79386 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:394px;
  4841. top:281px;
  4842. width:117px;
  4843. height:44px;
  4844. display:flex;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:14px;
  4849. text-align:left;
  4850. }
  4851. #u79386 .text {
  4852. position:absolute;
  4853. align-self:center;
  4854. padding:2px 10px 2px 10px;
  4855. box-sizing:border-box;
  4856. width:100%;
  4857. }
  4858. #u79386_text {
  4859. border-width:0px;
  4860. word-wrap:break-word;
  4861. text-transform:none;
  4862. visibility:hidden;
  4863. }
  4864. #u79387_img {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:116px;
  4870. height:44px;
  4871. }
  4872. #u79387 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:511px;
  4876. top:281px;
  4877. width:116px;
  4878. height:44px;
  4879. display:flex;
  4880. font-size:14px;
  4881. text-align:left;
  4882. }
  4883. #u79387 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 10px 2px 10px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u79387_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u79388_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:188px;
  4902. height:44px;
  4903. }
  4904. #u79388 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:627px;
  4908. top:281px;
  4909. width:188px;
  4910. height:44px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. text-align:left;
  4916. }
  4917. #u79388 .text {
  4918. position:absolute;
  4919. align-self:center;
  4920. padding:2px 10px 2px 10px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u79388_text {
  4925. border-width:0px;
  4926. word-wrap:break-word;
  4927. text-transform:none;
  4928. visibility:hidden;
  4929. }
  4930. #u79389_img {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:117px;
  4936. height:44px;
  4937. }
  4938. #u79389 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:815px;
  4942. top:281px;
  4943. width:117px;
  4944. height:44px;
  4945. display:flex;
  4946. font-size:14px;
  4947. text-align:left;
  4948. }
  4949. #u79389 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 10px 2px 10px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u79389_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u79390_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:94px;
  4968. height:44px;
  4969. }
  4970. #u79390 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:932px;
  4974. top:281px;
  4975. width:94px;
  4976. height:44px;
  4977. display:flex;
  4978. font-size:14px;
  4979. text-align:left;
  4980. }
  4981. #u79390 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:2px 10px 2px 10px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u79390_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. visibility:hidden;
  4993. }
  4994. #u79391_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:180px;
  5000. height:44px;
  5001. }
  5002. #u79391 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1026px;
  5006. top:281px;
  5007. width:180px;
  5008. height:44px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. color:#1890FF;
  5015. text-align:left;
  5016. }
  5017. #u79391 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 10px 2px 10px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u79391_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u79392_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:80px;
  5036. height:44px;
  5037. }
  5038. #u79392 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:325px;
  5043. width:80px;
  5044. height:44px;
  5045. display:flex;
  5046. font-size:14px;
  5047. text-align:left;
  5048. }
  5049. #u79392 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 10px 2px 10px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u79392_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u79393_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:80px;
  5068. height:44px;
  5069. }
  5070. #u79393 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:80px;
  5074. top:325px;
  5075. width:80px;
  5076. height:44px;
  5077. display:flex;
  5078. font-size:14px;
  5079. text-align:left;
  5080. }
  5081. #u79393 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 10px 2px 10px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u79393_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u79394_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:117px;
  5100. height:44px;
  5101. }
  5102. #u79394 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:160px;
  5106. top:325px;
  5107. width:117px;
  5108. height:44px;
  5109. display:flex;
  5110. font-size:14px;
  5111. text-align:left;
  5112. }
  5113. #u79394 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 10px 2px 10px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u79394_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u79395_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:117px;
  5132. height:44px;
  5133. }
  5134. #u79395 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:277px;
  5138. top:325px;
  5139. width:117px;
  5140. height:44px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. text-align:left;
  5147. }
  5148. #u79395 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 10px 2px 10px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u79395_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u79396_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:117px;
  5167. height:44px;
  5168. }
  5169. #u79396 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:394px;
  5173. top:325px;
  5174. width:117px;
  5175. height:44px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:14px;
  5181. text-align:left;
  5182. }
  5183. #u79396 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 10px 2px 10px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u79396_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u79397_img {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:116px;
  5202. height:44px;
  5203. }
  5204. #u79397 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:511px;
  5208. top:325px;
  5209. width:116px;
  5210. height:44px;
  5211. display:flex;
  5212. font-size:14px;
  5213. text-align:left;
  5214. }
  5215. #u79397 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 10px 2px 10px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u79397_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. visibility:hidden;
  5227. }
  5228. #u79398_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:188px;
  5234. height:44px;
  5235. }
  5236. #u79398 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:627px;
  5240. top:325px;
  5241. width:188px;
  5242. height:44px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. text-align:left;
  5248. }
  5249. #u79398 .text {
  5250. position:absolute;
  5251. align-self:center;
  5252. padding:2px 10px 2px 10px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u79398_text {
  5257. border-width:0px;
  5258. word-wrap:break-word;
  5259. text-transform:none;
  5260. visibility:hidden;
  5261. }
  5262. #u79399_img {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:117px;
  5268. height:44px;
  5269. }
  5270. #u79399 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:815px;
  5274. top:325px;
  5275. width:117px;
  5276. height:44px;
  5277. display:flex;
  5278. font-size:14px;
  5279. text-align:left;
  5280. }
  5281. #u79399 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 10px 2px 10px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u79399_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u79400_img {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:94px;
  5300. height:44px;
  5301. }
  5302. #u79400 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:932px;
  5306. top:325px;
  5307. width:94px;
  5308. height:44px;
  5309. display:flex;
  5310. font-size:14px;
  5311. text-align:left;
  5312. }
  5313. #u79400 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 10px 2px 10px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u79400_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u79401_img {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:180px;
  5332. height:44px;
  5333. }
  5334. #u79401 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:1026px;
  5338. top:325px;
  5339. width:180px;
  5340. height:44px;
  5341. display:flex;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:14px;
  5346. color:#1890FF;
  5347. text-align:left;
  5348. }
  5349. #u79401 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 10px 2px 10px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u79401_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u79402_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:80px;
  5368. height:44px;
  5369. }
  5370. #u79402 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:369px;
  5375. width:80px;
  5376. height:44px;
  5377. display:flex;
  5378. font-size:14px;
  5379. text-align:left;
  5380. }
  5381. #u79402 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 10px 2px 10px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u79402_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u79403_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:80px;
  5400. height:44px;
  5401. }
  5402. #u79403 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:80px;
  5406. top:369px;
  5407. width:80px;
  5408. height:44px;
  5409. display:flex;
  5410. font-size:14px;
  5411. text-align:left;
  5412. }
  5413. #u79403 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 10px 2px 10px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u79403_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u79404_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:117px;
  5432. height:44px;
  5433. }
  5434. #u79404 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:160px;
  5438. top:369px;
  5439. width:117px;
  5440. height:44px;
  5441. display:flex;
  5442. font-size:14px;
  5443. text-align:left;
  5444. }
  5445. #u79404 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 10px 2px 10px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u79404_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u79405_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:117px;
  5464. height:44px;
  5465. }
  5466. #u79405 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:277px;
  5470. top:369px;
  5471. width:117px;
  5472. height:44px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:14px;
  5478. text-align:left;
  5479. }
  5480. #u79405 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 10px 2px 10px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u79405_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u79406_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:117px;
  5499. height:44px;
  5500. }
  5501. #u79406 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:394px;
  5505. top:369px;
  5506. width:117px;
  5507. height:44px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. text-align:left;
  5514. }
  5515. #u79406 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 10px 2px 10px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u79406_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u79407_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:116px;
  5534. height:44px;
  5535. }
  5536. #u79407 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:511px;
  5540. top:369px;
  5541. width:116px;
  5542. height:44px;
  5543. display:flex;
  5544. font-size:14px;
  5545. text-align:left;
  5546. }
  5547. #u79407 .text {
  5548. position:absolute;
  5549. align-self:center;
  5550. padding:2px 10px 2px 10px;
  5551. box-sizing:border-box;
  5552. width:100%;
  5553. }
  5554. #u79407_text {
  5555. border-width:0px;
  5556. word-wrap:break-word;
  5557. text-transform:none;
  5558. visibility:hidden;
  5559. }
  5560. #u79408_img {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:188px;
  5566. height:44px;
  5567. }
  5568. #u79408 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:627px;
  5572. top:369px;
  5573. width:188px;
  5574. height:44px;
  5575. display:flex;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. text-align:left;
  5580. }
  5581. #u79408 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 10px 2px 10px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u79408_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u79409_img {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:117px;
  5600. height:44px;
  5601. }
  5602. #u79409 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:815px;
  5606. top:369px;
  5607. width:117px;
  5608. height:44px;
  5609. display:flex;
  5610. font-size:14px;
  5611. text-align:left;
  5612. }
  5613. #u79409 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 10px 2px 10px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u79409_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u79410_img {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:94px;
  5632. height:44px;
  5633. }
  5634. #u79410 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:932px;
  5638. top:369px;
  5639. width:94px;
  5640. height:44px;
  5641. display:flex;
  5642. font-size:14px;
  5643. text-align:left;
  5644. }
  5645. #u79410 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 10px 2px 10px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u79410_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u79411_img {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:180px;
  5664. height:44px;
  5665. }
  5666. #u79411 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:1026px;
  5670. top:369px;
  5671. width:180px;
  5672. height:44px;
  5673. display:flex;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:14px;
  5678. color:#1890FF;
  5679. text-align:left;
  5680. }
  5681. #u79411 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:2px 10px 2px 10px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u79411_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u79412_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:38px;
  5700. height:24px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 1);
  5703. box-sizing:border-box;
  5704. border-width:1px;
  5705. border-style:solid;
  5706. border-color:rgba(170, 170, 170, 1);
  5707. border-radius:4px;
  5708. -moz-box-shadow:none;
  5709. -webkit-box-shadow:none;
  5710. box-shadow:none;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:10px;
  5715. color:#555555;
  5716. }
  5717. #u79412 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:1296px;
  5721. top:260px;
  5722. width:38px;
  5723. height:24px;
  5724. display:flex;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:10px;
  5729. color:#555555;
  5730. }
  5731. #u79412 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:5px 0px 5px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u79412_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. }
  5743. #u79413_div {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:38px;
  5749. height:24px;
  5750. background:inherit;
  5751. background-color:rgba(255, 255, 255, 1);
  5752. box-sizing:border-box;
  5753. border-width:1px;
  5754. border-style:solid;
  5755. border-color:rgba(217, 0, 27, 1);
  5756. border-radius:4px;
  5757. -moz-box-shadow:none;
  5758. -webkit-box-shadow:none;
  5759. box-shadow:none;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:10px;
  5764. color:#D9001B;
  5765. }
  5766. #u79413 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:1296px;
  5770. top:362px;
  5771. width:38px;
  5772. height:24px;
  5773. display:flex;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:10px;
  5778. color:#D9001B;
  5779. }
  5780. #u79413 .text {
  5781. position:absolute;
  5782. align-self:center;
  5783. padding:5px 0px 5px 0px;
  5784. box-sizing:border-box;
  5785. width:100%;
  5786. }
  5787. #u79413_text {
  5788. border-width:0px;
  5789. word-wrap:break-word;
  5790. text-transform:none;
  5791. }
  5792. #u79414_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:38px;
  5798. height:24px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 1);
  5801. box-sizing:border-box;
  5802. border-width:1px;
  5803. border-style:solid;
  5804. border-color:rgba(170, 170, 170, 1);
  5805. border-radius:4px;
  5806. -moz-box-shadow:none;
  5807. -webkit-box-shadow:none;
  5808. box-shadow:none;
  5809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:10px;
  5813. color:#555555;
  5814. }
  5815. #u79414 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:1296px;
  5819. top:313px;
  5820. width:38px;
  5821. height:24px;
  5822. display:flex;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:10px;
  5827. color:#555555;
  5828. }
  5829. #u79414 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:5px 0px 5px 0px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u79414_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. }
  5841. #u79416 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:0px;
  5847. height:0px;
  5848. }
  5849. #u79417_img {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:200px;
  5855. height:1191px;
  5856. }
  5857. #u79417 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:120px;
  5861. top:50px;
  5862. width:200px;
  5863. height:1191px;
  5864. display:flex;
  5865. }
  5866. #u79417 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:2px 2px 2px 2px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u79417_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u79418_div {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:200px;
  5885. height:60px;
  5886. background:inherit;
  5887. background-color:rgba(224, 231, 247, 1);
  5888. border:none;
  5889. border-radius:0px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5894. font-weight:500;
  5895. font-style:normal;
  5896. font-size:18px;
  5897. }
  5898. #u79418 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:120px;
  5902. top:50px;
  5903. width:200px;
  5904. height:60px;
  5905. display:flex;
  5906. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5907. font-weight:500;
  5908. font-style:normal;
  5909. font-size:18px;
  5910. }
  5911. #u79418 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:0px 0px 0px 20px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u79418_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. }
  5923. #u79419 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:120px;
  5927. top:130px;
  5928. width:200px;
  5929. height:1078px;
  5930. }
  5931. #u79419_state0 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:200px;
  5937. height:1078px;
  5938. overflow:auto;
  5939. -webkit-overflow-scrolling:touch;
  5940. -ms-overflow-x:hidden;
  5941. overflow-x:hidden;
  5942. background-image:none;
  5943. border:none;
  5944. border-radius:0px;
  5945. -moz-box-shadow:none;
  5946. -webkit-box-shadow:none;
  5947. box-shadow:none;
  5948. }
  5949. #u79419_state0_content {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:1px;
  5955. height:1px;
  5956. }
  5957. #u79420_div {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:97px;
  5963. height:22px;
  5964. background:inherit;
  5965. background-color:rgba(255, 255, 255, 0);
  5966. border:none;
  5967. border-radius:0px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:16px;
  5975. }
  5976. #u79420 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:30px;
  5980. top:0px;
  5981. width:97px;
  5982. height:22px;
  5983. display:flex;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:16px;
  5988. }
  5989. #u79420 .text {
  5990. position:absolute;
  5991. align-self:flex-start;
  5992. padding:0px 0px 0px 0px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u79420_text {
  5997. border-width:0px;
  5998. word-wrap:break-word;
  5999. text-transform:none;
  6000. }
  6001. #u79421_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:65px;
  6007. height:22px;
  6008. background:inherit;
  6009. background-color:rgba(255, 255, 255, 0);
  6010. border:none;
  6011. border-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:16px;
  6019. }
  6020. #u79421 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:30px;
  6024. top:42px;
  6025. width:65px;
  6026. height:22px;
  6027. display:flex;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:16px;
  6032. }
  6033. #u79421 .text {
  6034. position:absolute;
  6035. align-self:flex-start;
  6036. padding:0px 0px 0px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u79421_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }
  6045. #u79422_div {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:49px;
  6051. height:22px;
  6052. background:inherit;
  6053. background-color:rgba(255, 255, 255, 0);
  6054. border:none;
  6055. border-radius:0px;
  6056. -moz-box-shadow:none;
  6057. -webkit-box-shadow:none;
  6058. box-shadow:none;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:16px;
  6063. }
  6064. #u79422 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:30px;
  6068. top:145px;
  6069. width:49px;
  6070. height:22px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:16px;
  6076. }
  6077. #u79422 .text {
  6078. position:absolute;
  6079. align-self:flex-start;
  6080. padding:0px 0px 0px 0px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u79422_text {
  6085. border-width:0px;
  6086. white-space:nowrap;
  6087. text-transform:none;
  6088. }
  6089. #u79423_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:97px;
  6095. height:22px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 0);
  6098. border:none;
  6099. border-radius:0px;
  6100. -moz-box-shadow:none;
  6101. -webkit-box-shadow:none;
  6102. box-shadow:none;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:16px;
  6107. }
  6108. #u79423 {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:30px;
  6112. top:187px;
  6113. width:97px;
  6114. height:22px;
  6115. display:flex;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:16px;
  6120. }
  6121. #u79423 .text {
  6122. position:absolute;
  6123. align-self:flex-start;
  6124. padding:0px 0px 0px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u79423_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. }
  6133. #u79424_img {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:201px;
  6139. height:2px;
  6140. }
  6141. #u79424 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:84px;
  6146. width:200px;
  6147. height:1px;
  6148. display:flex;
  6149. }
  6150. #u79424 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u79424_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u79425_div {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:49px;
  6169. height:17px;
  6170. background:inherit;
  6171. background-color:rgba(255, 255, 255, 0);
  6172. border:none;
  6173. border-radius:0px;
  6174. -moz-box-shadow:none;
  6175. -webkit-box-shadow:none;
  6176. box-shadow:none;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:12px;
  6181. color:#AAAAAA;
  6182. }
  6183. #u79425 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:30px;
  6187. top:105px;
  6188. width:49px;
  6189. height:17px;
  6190. display:flex;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. color:#AAAAAA;
  6196. }
  6197. #u79425 .text {
  6198. position:absolute;
  6199. align-self:flex-start;
  6200. padding:0px 0px 0px 0px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u79425_text {
  6205. border-width:0px;
  6206. white-space:nowrap;
  6207. text-transform:none;
  6208. }
  6209. #u79426_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:97px;
  6215. height:22px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:16px;
  6227. }
  6228. #u79426 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:30px;
  6232. top:229px;
  6233. width:97px;
  6234. height:22px;
  6235. display:flex;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:16px;
  6240. }
  6241. #u79426 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:0px 0px 0px 0px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u79426_text {
  6249. border-width:0px;
  6250. word-wrap:break-word;
  6251. text-transform:none;
  6252. }
  6253. #u79427_div {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:65px;
  6259. height:22px;
  6260. background:inherit;
  6261. background-color:rgba(255, 255, 255, 0);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:16px;
  6271. }
  6272. #u79427 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:30px;
  6276. top:271px;
  6277. width:65px;
  6278. height:22px;
  6279. display:flex;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:16px;
  6284. }
  6285. #u79427 .text {
  6286. position:absolute;
  6287. align-self:flex-start;
  6288. padding:0px 0px 0px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u79427_text {
  6293. border-width:0px;
  6294. white-space:nowrap;
  6295. text-transform:none;
  6296. }
  6297. #u79428_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:201px;
  6303. height:2px;
  6304. }
  6305. #u79428 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:313px;
  6310. width:200px;
  6311. height:1px;
  6312. display:flex;
  6313. }
  6314. #u79428 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 2px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u79428_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u79429_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:65px;
  6333. height:22px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:16px;
  6345. }
  6346. #u79429 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:30px;
  6350. top:370px;
  6351. width:65px;
  6352. height:22px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:16px;
  6358. }
  6359. #u79429 .text {
  6360. position:absolute;
  6361. align-self:flex-start;
  6362. padding:0px 0px 0px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u79429_text {
  6367. border-width:0px;
  6368. white-space:nowrap;
  6369. text-transform:none;
  6370. }
  6371. #u79430_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:49px;
  6377. height:17px;
  6378. background:inherit;
  6379. background-color:rgba(255, 255, 255, 0);
  6380. border:none;
  6381. border-radius:0px;
  6382. -moz-box-shadow:none;
  6383. -webkit-box-shadow:none;
  6384. box-shadow:none;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:12px;
  6389. color:#AAAAAA;
  6390. }
  6391. #u79430 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:30px;
  6395. top:334px;
  6396. width:49px;
  6397. height:17px;
  6398. display:flex;
  6399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:12px;
  6403. color:#AAAAAA;
  6404. }
  6405. #u79430 .text {
  6406. position:absolute;
  6407. align-self:flex-start;
  6408. padding:0px 0px 0px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u79430_text {
  6413. border-width:0px;
  6414. white-space:nowrap;
  6415. text-transform:none;
  6416. }
  6417. #u79431_div {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:65px;
  6423. height:22px;
  6424. background:inherit;
  6425. background-color:rgba(255, 255, 255, 0);
  6426. border:none;
  6427. border-radius:0px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:16px;
  6435. }
  6436. #u79431 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:30px;
  6440. top:412px;
  6441. width:65px;
  6442. height:22px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:16px;
  6448. }
  6449. #u79431 .text {
  6450. position:absolute;
  6451. align-self:flex-start;
  6452. padding:0px 0px 0px 0px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u79431_text {
  6457. border-width:0px;
  6458. white-space:nowrap;
  6459. text-transform:none;
  6460. }
  6461. #u79432_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:65px;
  6467. height:22px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 0);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:16px;
  6479. }
  6480. #u79432 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:30px;
  6484. top:454px;
  6485. width:65px;
  6486. height:22px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:16px;
  6492. }
  6493. #u79432 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:0px 0px 0px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u79432_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u79433_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:65px;
  6511. height:22px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:16px;
  6523. }
  6524. #u79433 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:30px;
  6528. top:496px;
  6529. width:65px;
  6530. height:22px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:16px;
  6536. }
  6537. #u79433 .text {
  6538. position:absolute;
  6539. align-self:flex-start;
  6540. padding:0px 0px 0px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u79433_text {
  6545. border-width:0px;
  6546. white-space:nowrap;
  6547. text-transform:none;
  6548. }
  6549. #u79434_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:65px;
  6555. height:22px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:16px;
  6567. }
  6568. #u79434 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:30px;
  6572. top:538px;
  6573. width:65px;
  6574. height:22px;
  6575. display:flex;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:16px;
  6580. }
  6581. #u79434 .text {
  6582. position:absolute;
  6583. align-self:flex-start;
  6584. padding:0px 0px 0px 0px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u79434_text {
  6589. border-width:0px;
  6590. white-space:nowrap;
  6591. text-transform:none;
  6592. }
  6593. #u79435_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:65px;
  6599. height:22px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 0);
  6602. border:none;
  6603. border-radius:0px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:16px;
  6611. }
  6612. #u79435 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:30px;
  6616. top:580px;
  6617. width:65px;
  6618. height:22px;
  6619. display:flex;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:16px;
  6624. }
  6625. #u79435 .text {
  6626. position:absolute;
  6627. align-self:flex-start;
  6628. padding:0px 0px 0px 0px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u79435_text {
  6633. border-width:0px;
  6634. white-space:nowrap;
  6635. text-transform:none;
  6636. }
  6637. #u79436_img {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:201px;
  6643. height:2px;
  6644. }
  6645. #u79436 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:1289px;
  6650. width:200px;
  6651. height:1px;
  6652. display:flex;
  6653. }
  6654. #u79436 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:2px 2px 2px 2px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u79436_text {
  6662. border-width:0px;
  6663. word-wrap:break-word;
  6664. text-transform:none;
  6665. visibility:hidden;
  6666. }
  6667. #u79437_div {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:65px;
  6673. height:22px;
  6674. background:inherit;
  6675. background-color:rgba(255, 255, 255, 0);
  6676. border:none;
  6677. border-radius:0px;
  6678. -moz-box-shadow:none;
  6679. -webkit-box-shadow:none;
  6680. box-shadow:none;
  6681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:16px;
  6685. }
  6686. #u79437 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:30px;
  6690. top:1346px;
  6691. width:65px;
  6692. height:22px;
  6693. display:flex;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:16px;
  6698. }
  6699. #u79437 .text {
  6700. position:absolute;
  6701. align-self:flex-start;
  6702. padding:0px 0px 0px 0px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u79437_text {
  6707. border-width:0px;
  6708. white-space:nowrap;
  6709. text-transform:none;
  6710. }
  6711. #u79438_div {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:49px;
  6717. height:17px;
  6718. background:inherit;
  6719. background-color:rgba(255, 255, 255, 0);
  6720. border:none;
  6721. border-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:12px;
  6729. color:#AAAAAA;
  6730. }
  6731. #u79438 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:30px;
  6735. top:1310px;
  6736. width:49px;
  6737. height:17px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#AAAAAA;
  6744. }
  6745. #u79438 .text {
  6746. position:absolute;
  6747. align-self:flex-start;
  6748. padding:0px 0px 0px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u79438_text {
  6753. border-width:0px;
  6754. white-space:nowrap;
  6755. text-transform:none;
  6756. }
  6757. #u79439_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:65px;
  6763. height:22px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:16px;
  6775. }
  6776. #u79439 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:30px;
  6780. top:1388px;
  6781. width:65px;
  6782. height:22px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:16px;
  6788. }
  6789. #u79439 .text {
  6790. position:absolute;
  6791. align-self:flex-start;
  6792. padding:0px 0px 0px 0px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u79439_text {
  6797. border-width:0px;
  6798. white-space:nowrap;
  6799. text-transform:none;
  6800. }
  6801. #u79440_div {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:65px;
  6807. height:22px;
  6808. background:inherit;
  6809. background-color:rgba(255, 255, 255, 0);
  6810. border:none;
  6811. border-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:16px;
  6819. }
  6820. #u79440 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:30px;
  6824. top:1472px;
  6825. width:65px;
  6826. height:22px;
  6827. display:flex;
  6828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:16px;
  6832. }
  6833. #u79440 .text {
  6834. position:absolute;
  6835. align-self:flex-start;
  6836. padding:0px 0px 0px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u79440_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u79441_img {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:201px;
  6851. height:2px;
  6852. }
  6853. #u79441 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:1514px;
  6858. width:200px;
  6859. height:1px;
  6860. display:flex;
  6861. }
  6862. #u79441 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:2px 2px 2px 2px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u79441_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. visibility:hidden;
  6874. }
  6875. #u79442_div {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:49px;
  6881. height:22px;
  6882. background:inherit;
  6883. background-color:rgba(255, 255, 255, 0);
  6884. border:none;
  6885. border-radius:0px;
  6886. -moz-box-shadow:none;
  6887. -webkit-box-shadow:none;
  6888. box-shadow:none;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:16px;
  6893. }
  6894. #u79442 {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:30px;
  6898. top:1571px;
  6899. width:49px;
  6900. height:22px;
  6901. display:flex;
  6902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:16px;
  6906. }
  6907. #u79442 .text {
  6908. position:absolute;
  6909. align-self:flex-start;
  6910. padding:0px 0px 0px 0px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u79442_text {
  6915. border-width:0px;
  6916. white-space:nowrap;
  6917. text-transform:none;
  6918. }
  6919. #u79443_div {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:49px;
  6925. height:17px;
  6926. background:inherit;
  6927. background-color:rgba(255, 255, 255, 0);
  6928. border:none;
  6929. border-radius:0px;
  6930. -moz-box-shadow:none;
  6931. -webkit-box-shadow:none;
  6932. box-shadow:none;
  6933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:12px;
  6937. color:#AAAAAA;
  6938. }
  6939. #u79443 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:30px;
  6943. top:1535px;
  6944. width:49px;
  6945. height:17px;
  6946. display:flex;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#AAAAAA;
  6952. }
  6953. #u79443 .text {
  6954. position:absolute;
  6955. align-self:flex-start;
  6956. padding:0px 0px 0px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u79443_text {
  6961. border-width:0px;
  6962. white-space:nowrap;
  6963. text-transform:none;
  6964. }
  6965. #u79444_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:49px;
  6971. height:22px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. border:none;
  6975. border-radius:0px;
  6976. -moz-box-shadow:none;
  6977. -webkit-box-shadow:none;
  6978. box-shadow:none;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:16px;
  6983. }
  6984. #u79444 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:30px;
  6988. top:1613px;
  6989. width:49px;
  6990. height:22px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:16px;
  6996. }
  6997. #u79444 .text {
  6998. position:absolute;
  6999. align-self:flex-start;
  7000. padding:0px 0px 0px 0px;
  7001. box-sizing:border-box;
  7002. width:100%;
  7003. }
  7004. #u79444_text {
  7005. border-width:0px;
  7006. white-space:nowrap;
  7007. text-transform:none;
  7008. }
  7009. #u79445_div {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:0px;
  7013. top:0px;
  7014. width:65px;
  7015. height:22px;
  7016. background:inherit;
  7017. background-color:rgba(255, 255, 255, 0);
  7018. border:none;
  7019. border-radius:0px;
  7020. -moz-box-shadow:none;
  7021. -webkit-box-shadow:none;
  7022. box-shadow:none;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:16px;
  7027. }
  7028. #u79445 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:30px;
  7032. top:1655px;
  7033. width:65px;
  7034. height:22px;
  7035. display:flex;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:16px;
  7040. }
  7041. #u79445 .text {
  7042. position:absolute;
  7043. align-self:flex-start;
  7044. padding:0px 0px 0px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u79445_text {
  7049. border-width:0px;
  7050. white-space:nowrap;
  7051. text-transform:none;
  7052. }
  7053. #u79446_img {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:201px;
  7059. height:2px;
  7060. }
  7061. #u79446 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:1697px;
  7066. width:200px;
  7067. height:1px;
  7068. display:flex;
  7069. }
  7070. #u79446 .text {
  7071. position:absolute;
  7072. align-self:center;
  7073. padding:2px 2px 2px 2px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u79446_text {
  7078. border-width:0px;
  7079. word-wrap:break-word;
  7080. text-transform:none;
  7081. visibility:hidden;
  7082. }
  7083. #u79447_div {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:0px;
  7087. top:0px;
  7088. width:81px;
  7089. height:22px;
  7090. background:inherit;
  7091. background-color:rgba(255, 255, 255, 0);
  7092. border:none;
  7093. border-radius:0px;
  7094. -moz-box-shadow:none;
  7095. -webkit-box-shadow:none;
  7096. box-shadow:none;
  7097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:16px;
  7101. }
  7102. #u79447 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:30px;
  7106. top:1754px;
  7107. width:81px;
  7108. height:22px;
  7109. display:flex;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:16px;
  7114. }
  7115. #u79447 .text {
  7116. position:absolute;
  7117. align-self:flex-start;
  7118. padding:0px 0px 0px 0px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u79447_text {
  7123. border-width:0px;
  7124. white-space:nowrap;
  7125. text-transform:none;
  7126. }
  7127. #u79448_div {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:49px;
  7133. height:17px;
  7134. background:inherit;
  7135. background-color:rgba(255, 255, 255, 0);
  7136. border:none;
  7137. border-radius:0px;
  7138. -moz-box-shadow:none;
  7139. -webkit-box-shadow:none;
  7140. box-shadow:none;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. color:#AAAAAA;
  7146. }
  7147. #u79448 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:30px;
  7151. top:1718px;
  7152. width:49px;
  7153. height:17px;
  7154. display:flex;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. color:#AAAAAA;
  7160. }
  7161. #u79448 .text {
  7162. position:absolute;
  7163. align-self:flex-start;
  7164. padding:0px 0px 0px 0px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u79448_text {
  7169. border-width:0px;
  7170. white-space:nowrap;
  7171. text-transform:none;
  7172. }
  7173. #u79449_div {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:81px;
  7179. height:22px;
  7180. background:inherit;
  7181. background-color:rgba(255, 255, 255, 0);
  7182. border:none;
  7183. border-radius:0px;
  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:16px;
  7191. }
  7192. #u79449 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:30px;
  7196. top:1796px;
  7197. width:81px;
  7198. height:22px;
  7199. display:flex;
  7200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7201. font-weight:400;
  7202. font-style:normal;
  7203. font-size:16px;
  7204. }
  7205. #u79449 .text {
  7206. position:absolute;
  7207. align-self:flex-start;
  7208. padding:0px 0px 0px 0px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u79449_text {
  7213. border-width:0px;
  7214. white-space:nowrap;
  7215. text-transform:none;
  7216. }
  7217. #u79450_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:81px;
  7223. height:22px;
  7224. background:inherit;
  7225. background-color:rgba(255, 255, 255, 0);
  7226. border:none;
  7227. border-radius:0px;
  7228. -moz-box-shadow:none;
  7229. -webkit-box-shadow:none;
  7230. box-shadow:none;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:16px;
  7235. }
  7236. #u79450 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:30px;
  7240. top:1838px;
  7241. width:81px;
  7242. height:22px;
  7243. display:flex;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:16px;
  7248. }
  7249. #u79450 .text {
  7250. position:absolute;
  7251. align-self:flex-start;
  7252. padding:0px 0px 0px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u79450_text {
  7257. border-width:0px;
  7258. white-space:nowrap;
  7259. text-transform:none;
  7260. }
  7261. #u79451_div {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:65px;
  7267. height:22px;
  7268. background:inherit;
  7269. background-color:rgba(255, 255, 255, 0);
  7270. border:none;
  7271. border-radius:0px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:16px;
  7279. }
  7280. #u79451 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:30px;
  7284. top:1430px;
  7285. width:65px;
  7286. height:22px;
  7287. display:flex;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:16px;
  7292. }
  7293. #u79451 .text {
  7294. position:absolute;
  7295. align-self:flex-start;
  7296. padding:0px 0px 0px 0px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u79451_text {
  7301. border-width:0px;
  7302. white-space:nowrap;
  7303. text-transform:none;
  7304. }
  7305. #u79452_img {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:201px;
  7311. height:2px;
  7312. }
  7313. #u79452 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:669px;
  7318. width:200px;
  7319. height:1px;
  7320. display:flex;
  7321. }
  7322. #u79452 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:2px 2px 2px 2px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u79452_text {
  7330. border-width:0px;
  7331. word-wrap:break-word;
  7332. text-transform:none;
  7333. visibility:hidden;
  7334. }
  7335. #u79453_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:65px;
  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. #u79453 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:30px;
  7358. top:726px;
  7359. width:65px;
  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. #u79453 .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. #u79453_text {
  7375. border-width:0px;
  7376. white-space:nowrap;
  7377. text-transform:none;
  7378. }
  7379. #u79454_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:49px;
  7385. height:17px;
  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:12px;
  7397. color:#AAAAAA;
  7398. }
  7399. #u79454 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:30px;
  7403. top:690px;
  7404. width:49px;
  7405. height:17px;
  7406. display:flex;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:12px;
  7411. color:#AAAAAA;
  7412. }
  7413. #u79454 .text {
  7414. position:absolute;
  7415. align-self:flex-start;
  7416. padding:0px 0px 0px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u79454_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u79455_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:65px;
  7431. height:22px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 0);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:16px;
  7443. }
  7444. #u79455 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:30px;
  7448. top:768px;
  7449. width:65px;
  7450. height:22px;
  7451. display:flex;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:16px;
  7456. }
  7457. #u79455 .text {
  7458. position:absolute;
  7459. align-self:flex-start;
  7460. padding:0px 0px 0px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u79455_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u79456_div {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:65px;
  7475. height:22px;
  7476. background:inherit;
  7477. background-color:rgba(255, 255, 255, 0);
  7478. border:none;
  7479. border-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:16px;
  7487. }
  7488. #u79456 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:30px;
  7492. top:852px;
  7493. width:65px;
  7494. height:22px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:16px;
  7500. }
  7501. #u79456 .text {
  7502. position:absolute;
  7503. align-self:flex-start;
  7504. padding:0px 0px 0px 0px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u79456_text {
  7509. border-width:0px;
  7510. white-space:nowrap;
  7511. text-transform:none;
  7512. }
  7513. #u79457_div {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:65px;
  7519. height:22px;
  7520. background:inherit;
  7521. background-color:rgba(255, 255, 255, 0);
  7522. border:none;
  7523. border-radius:0px;
  7524. -moz-box-shadow:none;
  7525. -webkit-box-shadow:none;
  7526. box-shadow:none;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:16px;
  7531. }
  7532. #u79457 {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:30px;
  7536. top:810px;
  7537. width:65px;
  7538. height:22px;
  7539. display:flex;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:16px;
  7544. }
  7545. #u79457 .text {
  7546. position:absolute;
  7547. align-self:flex-start;
  7548. padding:0px 0px 0px 0px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u79457_text {
  7553. border-width:0px;
  7554. white-space:nowrap;
  7555. text-transform:none;
  7556. }
  7557. #u79458_div {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:0px;
  7561. top:0px;
  7562. width:65px;
  7563. height:22px;
  7564. background:inherit;
  7565. background-color:rgba(255, 255, 255, 0);
  7566. border:none;
  7567. border-radius:0px;
  7568. -moz-box-shadow:none;
  7569. -webkit-box-shadow:none;
  7570. box-shadow:none;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:16px;
  7575. }
  7576. #u79458 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:30px;
  7580. top:894px;
  7581. width:65px;
  7582. height:22px;
  7583. display:flex;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:16px;
  7588. }
  7589. #u79458 .text {
  7590. position:absolute;
  7591. align-self:flex-start;
  7592. padding:0px 0px 0px 0px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u79458_text {
  7597. border-width:0px;
  7598. white-space:nowrap;
  7599. text-transform:none;
  7600. }
  7601. #u79459_div {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:65px;
  7607. height:22px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 0);
  7610. border:none;
  7611. border-radius:0px;
  7612. -moz-box-shadow:none;
  7613. -webkit-box-shadow:none;
  7614. box-shadow:none;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:16px;
  7619. }
  7620. #u79459 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:30px;
  7624. top:936px;
  7625. width:65px;
  7626. height:22px;
  7627. display:flex;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:16px;
  7632. }
  7633. #u79459 .text {
  7634. position:absolute;
  7635. align-self:flex-start;
  7636. padding:0px 0px 0px 0px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u79459_text {
  7641. border-width:0px;
  7642. white-space:nowrap;
  7643. text-transform:none;
  7644. }
  7645. #u79460_img {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:201px;
  7651. height:2px;
  7652. }
  7653. #u79460 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:1018px;
  7658. width:200px;
  7659. height:1px;
  7660. display:flex;
  7661. }
  7662. #u79460 .text {
  7663. position:absolute;
  7664. align-self:center;
  7665. padding:2px 2px 2px 2px;
  7666. box-sizing:border-box;
  7667. width:100%;
  7668. }
  7669. #u79460_text {
  7670. border-width:0px;
  7671. word-wrap:break-word;
  7672. text-transform:none;
  7673. visibility:hidden;
  7674. }
  7675. #u79461_div {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:65px;
  7681. height:22px;
  7682. background:inherit;
  7683. background-color:rgba(255, 255, 255, 0);
  7684. border:none;
  7685. border-radius:0px;
  7686. -moz-box-shadow:none;
  7687. -webkit-box-shadow:none;
  7688. box-shadow:none;
  7689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7690. font-weight:400;
  7691. font-style:normal;
  7692. font-size:16px;
  7693. }
  7694. #u79461 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:30px;
  7698. top:1075px;
  7699. width:65px;
  7700. height:22px;
  7701. display:flex;
  7702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:16px;
  7706. }
  7707. #u79461 .text {
  7708. position:absolute;
  7709. align-self:flex-start;
  7710. padding:0px 0px 0px 0px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u79461_text {
  7715. border-width:0px;
  7716. white-space:nowrap;
  7717. text-transform:none;
  7718. }
  7719. #u79462_div {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:49px;
  7725. height:17px;
  7726. background:inherit;
  7727. background-color:rgba(255, 255, 255, 0);
  7728. border:none;
  7729. border-radius:0px;
  7730. -moz-box-shadow:none;
  7731. -webkit-box-shadow:none;
  7732. box-shadow:none;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:12px;
  7737. color:#AAAAAA;
  7738. }
  7739. #u79462 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:30px;
  7743. top:1039px;
  7744. width:49px;
  7745. height:17px;
  7746. display:flex;
  7747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:12px;
  7751. color:#AAAAAA;
  7752. }
  7753. #u79462 .text {
  7754. position:absolute;
  7755. align-self:flex-start;
  7756. padding:0px 0px 0px 0px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u79462_text {
  7761. border-width:0px;
  7762. white-space:nowrap;
  7763. text-transform:none;
  7764. }
  7765. #u79463_div {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:65px;
  7771. height:22px;
  7772. background:inherit;
  7773. background-color:rgba(255, 255, 255, 0);
  7774. border:none;
  7775. border-radius:0px;
  7776. -moz-box-shadow:none;
  7777. -webkit-box-shadow:none;
  7778. box-shadow:none;
  7779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:16px;
  7783. }
  7784. #u79463 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:30px;
  7788. top:1117px;
  7789. width:65px;
  7790. height:22px;
  7791. display:flex;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:16px;
  7796. }
  7797. #u79463 .text {
  7798. position:absolute;
  7799. align-self:flex-start;
  7800. padding:0px 0px 0px 0px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u79463_text {
  7805. border-width:0px;
  7806. white-space:nowrap;
  7807. text-transform:none;
  7808. }
  7809. #u79464_div {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:65px;
  7815. height:22px;
  7816. background:inherit;
  7817. background-color:rgba(255, 255, 255, 0);
  7818. border:none;
  7819. border-radius:0px;
  7820. -moz-box-shadow:none;
  7821. -webkit-box-shadow:none;
  7822. box-shadow:none;
  7823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. font-size:16px;
  7827. }
  7828. #u79464 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:30px;
  7832. top:1201px;
  7833. width:65px;
  7834. height:22px;
  7835. display:flex;
  7836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:16px;
  7840. }
  7841. #u79464 .text {
  7842. position:absolute;
  7843. align-self:flex-start;
  7844. padding:0px 0px 0px 0px;
  7845. box-sizing:border-box;
  7846. width:100%;
  7847. }
  7848. #u79464_text {
  7849. border-width:0px;
  7850. white-space:nowrap;
  7851. text-transform:none;
  7852. }
  7853. #u79465_div {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:65px;
  7859. height:22px;
  7860. background:inherit;
  7861. background-color:rgba(255, 255, 255, 0);
  7862. border:none;
  7863. border-radius:0px;
  7864. -moz-box-shadow:none;
  7865. -webkit-box-shadow:none;
  7866. box-shadow:none;
  7867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:16px;
  7871. }
  7872. #u79465 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:30px;
  7876. top:1159px;
  7877. width:65px;
  7878. height:22px;
  7879. display:flex;
  7880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. font-size:16px;
  7884. }
  7885. #u79465 .text {
  7886. position:absolute;
  7887. align-self:flex-start;
  7888. padding:0px 0px 0px 0px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u79465_text {
  7893. border-width:0px;
  7894. white-space:nowrap;
  7895. text-transform:none;
  7896. }
  7897. #u79466_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:65px;
  7903. height:22px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 0);
  7906. border:none;
  7907. border-radius:0px;
  7908. -moz-box-shadow:none;
  7909. -webkit-box-shadow:none;
  7910. box-shadow:none;
  7911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7912. font-weight:400;
  7913. font-style:normal;
  7914. font-size:16px;
  7915. }
  7916. #u79466 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:30px;
  7920. top:1243px;
  7921. width:65px;
  7922. height:22px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. font-size:16px;
  7928. }
  7929. #u79466 .text {
  7930. position:absolute;
  7931. align-self:flex-start;
  7932. padding:0px 0px 0px 0px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u79466_text {
  7937. border-width:0px;
  7938. white-space:nowrap;
  7939. text-transform:none;
  7940. }
  7941. #u79467_div {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:0px;
  7945. top:0px;
  7946. width:65px;
  7947. height:22px;
  7948. background:inherit;
  7949. background-color:rgba(255, 255, 255, 0);
  7950. border:none;
  7951. border-radius:0px;
  7952. -moz-box-shadow:none;
  7953. -webkit-box-shadow:none;
  7954. box-shadow:none;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:16px;
  7959. }
  7960. #u79467 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:30px;
  7964. top:978px;
  7965. width:65px;
  7966. height:22px;
  7967. display:flex;
  7968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:16px;
  7972. }
  7973. #u79467 .text {
  7974. position:absolute;
  7975. align-self:flex-start;
  7976. padding:0px 0px 0px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u79467_text {
  7981. border-width:0px;
  7982. white-space:nowrap;
  7983. text-transform:none;
  7984. }
  7985. #u79468_div {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:65px;
  7991. height:22px;
  7992. background:inherit;
  7993. background-color:rgba(255, 255, 255, 0);
  7994. border:none;
  7995. border-radius:0px;
  7996. -moz-box-shadow:none;
  7997. -webkit-box-shadow:none;
  7998. box-shadow:none;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:16px;
  8003. }
  8004. #u79468 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:30px;
  8008. top:622px;
  8009. width:65px;
  8010. height:22px;
  8011. display:flex;
  8012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:16px;
  8016. }
  8017. #u79468 .text {
  8018. position:absolute;
  8019. align-self:flex-start;
  8020. padding:0px 0px 0px 0px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u79468_text {
  8025. border-width:0px;
  8026. white-space:nowrap;
  8027. text-transform:none;
  8028. }