styles.css 207 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2337px;
  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. #u79718_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. #u79718 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u79718 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u79718_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u79719_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. #u79719 {
  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. #u79719 .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. #u79719_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u79720_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. #u79720 {
  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. #u79720 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u79720_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u79721 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u79722_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u79722 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u79722 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u79722_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u79723_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. #u79723 {
  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. #u79723 .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. #u79723_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u79724_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. #u79724 {
  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. #u79724 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u79724_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u79725 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u79726_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. #u79726 {
  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. #u79726 .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. #u79726_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u79727_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u79727 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u79727 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u79727_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u79728 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u79729_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. #u79729 {
  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. #u79729 .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. #u79729_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u79730_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u79730 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u79730 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u79730_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u79731 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u79732_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. #u79732 {
  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. #u79732 .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. #u79732_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79733_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79733 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u79733 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u79733_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u79734 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u79735_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. #u79735 {
  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. #u79735 .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. #u79735_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u79736_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u79736 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u79736 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u79736_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u79737 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u79738_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. #u79738 {
  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. #u79738 .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. #u79738_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u79739_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u79739 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u79739 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u79739_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u79740 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u79741_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. #u79741 {
  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. #u79741 .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. #u79741_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u79742_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u79742 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u79742 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u79742_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u79743 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u79744_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. #u79744 {
  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. #u79744 .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. #u79744_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u79745_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u79745 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u79745 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u79745_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u79746 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u79747_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. #u79747 {
  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. #u79747 .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. #u79747_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u79748_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u79748 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u79748 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u79748_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u79749 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u79750_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. #u79750 {
  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. #u79750 .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. #u79750_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u79751_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u79751 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u79751 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u79751_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u79752_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. #u79752 {
  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. #u79752 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u79752_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u79753_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u79753 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u79753 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u79753_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u79754_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. #u79754 {
  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. #u79754 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u79754_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u79755_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u79755 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u79755 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u79755_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u79756 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u79757_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. #u79757 {
  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. #u79757 .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. #u79757_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u79758_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u79758 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u79758 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u79758_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u79759 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u79760_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. #u79760 {
  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. #u79760 .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. #u79760_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u79761_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u79761 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u79761 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u79761_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u79762 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u79763_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. #u79763_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. #u79763_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. #u79763 {
  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. #u79763 .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. #u79763_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. #u79763.disabled {
  1428. }
  1429. .u79763_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u79764_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u79764 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u79764 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u79764_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u79765_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. #u79765 {
  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. #u79765 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u79765_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u79766_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u79766 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u79766 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u79766_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u79767_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:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:12px;
  1556. color:#FFFFFF;
  1557. text-align:left;
  1558. }
  1559. #u79767 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:331px;
  1563. top:50px;
  1564. width:1260px;
  1565. height:1191px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#FFFFFF;
  1572. text-align:left;
  1573. }
  1574. #u79767 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u79767_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u79768_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:73px;
  1593. height:50px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 0);
  1596. border:none;
  1597. border-left:0px;
  1598. border-top:0px;
  1599. border-right:0px;
  1600. border-radius:0px;
  1601. border-bottom-right-radius:0px;
  1602. border-bottom-left-radius:0px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:18px;
  1610. }
  1611. #u79768 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:350px;
  1615. top:50px;
  1616. width:73px;
  1617. height:50px;
  1618. display:flex;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:18px;
  1623. }
  1624. #u79768 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u79768_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u79769 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:0px;
  1642. height:0px;
  1643. }
  1644. #u79770 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:0px;
  1650. height:0px;
  1651. }
  1652. #u79771_div {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:59px;
  1658. height:30px;
  1659. background:inherit;
  1660. background-color:rgba(24, 144, 255, 1);
  1661. box-sizing:border-box;
  1662. border-width:1px;
  1663. border-style:solid;
  1664. border-color:rgba(0, 153, 255, 1);
  1665. border-radius:4px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. font-family:'Microsoft YaHei', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. font-size:14px;
  1673. color:#FFFFFF;
  1674. }
  1675. #u79771 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:800px;
  1679. top:110px;
  1680. width:59px;
  1681. height:30px;
  1682. display:flex;
  1683. font-family:'Microsoft YaHei', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. font-size:14px;
  1687. color:#FFFFFF;
  1688. }
  1689. #u79771 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:5px 15px 5px 15px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u79771_text {
  1697. border-width:0px;
  1698. white-space:nowrap;
  1699. text-transform:none;
  1700. }
  1701. #u79772_div {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:55px;
  1707. height:30px;
  1708. background:inherit;
  1709. background-color:rgba(255, 255, 255, 1);
  1710. box-sizing:border-box;
  1711. border-width:1px;
  1712. border-style:solid;
  1713. border-color:rgba(170, 170, 170, 1);
  1714. border-radius:4px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:12px;
  1722. color:#555555;
  1723. }
  1724. #u79772 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:869px;
  1728. top:110px;
  1729. width:55px;
  1730. height:30px;
  1731. display:flex;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:12px;
  1736. color:#555555;
  1737. }
  1738. #u79772 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:5px 15px 5px 15px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u79772_text {
  1746. border-width:0px;
  1747. white-space:nowrap;
  1748. text-transform:none;
  1749. }
  1750. #u79773 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:0px;
  1756. height:0px;
  1757. }
  1758. #u79774_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:140px;
  1764. height:30px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 1);
  1767. box-sizing:border-box;
  1768. border-width:1px;
  1769. border-style:solid;
  1770. border-color:rgba(215, 215, 215, 1);
  1771. border-radius:4px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-size:11px;
  1776. }
  1777. #u79774 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:350px;
  1781. top:110px;
  1782. width:140px;
  1783. height:30px;
  1784. display:flex;
  1785. font-size:11px;
  1786. }
  1787. #u79774 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u79774_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u79775_input {
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:126px;
  1805. height:23px;
  1806. padding:2px 2px 2px 2px;
  1807. font-family:'ArialMT', 'Arial', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:11px;
  1811. letter-spacing:normal;
  1812. color:#AAAAAA;
  1813. vertical-align:none;
  1814. text-align:left;
  1815. text-transform:none;
  1816. background-color:transparent;
  1817. border-color:transparent;
  1818. }
  1819. #u79775_input.disabled {
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:126px;
  1824. height:23px;
  1825. padding:2px 2px 2px 2px;
  1826. font-family:'ArialMT', 'Arial', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:11px;
  1830. letter-spacing:normal;
  1831. color:#AAAAAA;
  1832. vertical-align:none;
  1833. text-align:left;
  1834. text-transform:none;
  1835. background-color:transparent;
  1836. border-color:transparent;
  1837. }
  1838. #u79775_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:126px;
  1844. height:23px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 1);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-size:11px;
  1853. color:#AAAAAA;
  1854. }
  1855. #u79775 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:357px;
  1859. top:112px;
  1860. width:126px;
  1861. height:23px;
  1862. display:flex;
  1863. font-size:11px;
  1864. color:#AAAAAA;
  1865. }
  1866. #u79775 .text {
  1867. position:absolute;
  1868. align-self:flex-start;
  1869. padding:2px 2px 2px 2px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u79775_div.disabled {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:126px;
  1879. height:23px;
  1880. background:inherit;
  1881. background-color:rgba(240, 240, 240, 1);
  1882. border:none;
  1883. border-radius:0px;
  1884. -moz-box-shadow:none;
  1885. -webkit-box-shadow:none;
  1886. box-shadow:none;
  1887. font-size:11px;
  1888. color:#AAAAAA;
  1889. }
  1890. #u79775.disabled {
  1891. }
  1892. .u79775_input_option {
  1893. font-size:11px;
  1894. }
  1895. #u79776 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:0px;
  1901. height:0px;
  1902. }
  1903. #u79777_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:140px;
  1909. height:30px;
  1910. background:inherit;
  1911. background-color:rgba(255, 255, 255, 1);
  1912. box-sizing:border-box;
  1913. border-width:1px;
  1914. border-style:solid;
  1915. border-color:rgba(201, 201, 201, 1);
  1916. border-radius:4px;
  1917. -moz-box-shadow:none;
  1918. -webkit-box-shadow:none;
  1919. box-shadow:none;
  1920. font-family:'Microsoft YaHei', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#CCCCCC;
  1925. text-align:left;
  1926. }
  1927. #u79777 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:500px;
  1931. top:110px;
  1932. width:140px;
  1933. height:30px;
  1934. display:flex;
  1935. font-family:'Microsoft YaHei', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:14px;
  1939. color:#CCCCCC;
  1940. text-align:left;
  1941. }
  1942. #u79777 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 8px 2px 8px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u79777_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. visibility:hidden;
  1954. }
  1955. #u79778_input {
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:127px;
  1960. height:25px;
  1961. padding:2px 2px 2px 2px;
  1962. font-family:'Microsoft YaHei', sans-serif;
  1963. font-weight:400;
  1964. font-style:normal;
  1965. font-size:10px;
  1966. letter-spacing:normal;
  1967. color:#000000;
  1968. vertical-align:none;
  1969. text-align:left;
  1970. text-transform:none;
  1971. background-color:transparent;
  1972. border-color:transparent;
  1973. }
  1974. #u79778_input.disabled {
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:127px;
  1979. height:25px;
  1980. padding:2px 2px 2px 2px;
  1981. font-family:'Microsoft YaHei', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:10px;
  1985. letter-spacing:normal;
  1986. color:#000000;
  1987. vertical-align:none;
  1988. text-align:left;
  1989. text-transform:none;
  1990. background-color:transparent;
  1991. border-color:transparent;
  1992. }
  1993. #u79778_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:127px;
  1999. height:25px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 1);
  2002. border:none;
  2003. border-radius:0px;
  2004. -moz-box-shadow:none;
  2005. -webkit-box-shadow:none;
  2006. box-shadow:none;
  2007. font-family:'Microsoft YaHei', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:10px;
  2011. }
  2012. #u79778 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:508px;
  2016. top:111px;
  2017. width:127px;
  2018. height:25px;
  2019. display:flex;
  2020. font-family:'Microsoft YaHei', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:10px;
  2024. }
  2025. #u79778 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u79778_div.disabled {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:127px;
  2038. height:25px;
  2039. background:inherit;
  2040. background-color:rgba(240, 240, 240, 1);
  2041. border:none;
  2042. border-radius:0px;
  2043. -moz-box-shadow:none;
  2044. -webkit-box-shadow:none;
  2045. box-shadow:none;
  2046. font-family:'Microsoft YaHei', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:10px;
  2050. }
  2051. #u79778.disabled {
  2052. }
  2053. #u79779 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:0px;
  2059. height:0px;
  2060. }
  2061. #u79780_div {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:140px;
  2067. height:30px;
  2068. background:inherit;
  2069. background-color:rgba(255, 255, 255, 1);
  2070. box-sizing:border-box;
  2071. border-width:1px;
  2072. border-style:solid;
  2073. border-color:rgba(188, 188, 188, 1);
  2074. border-radius:4px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u79780 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:650px;
  2088. top:110px;
  2089. width:140px;
  2090. height:30px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#FFFFFF;
  2097. }
  2098. #u79780 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:8px 15px 8px 15px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u79780_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u79781_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:18px;
  2117. height:18px;
  2118. }
  2119. #u79781 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:767px;
  2123. top:116px;
  2124. width:18px;
  2125. height:18px;
  2126. display:flex;
  2127. opacity:0.5;
  2128. }
  2129. #u79781 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u79781_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u79782 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:350px;
  2146. top:200px;
  2147. width:1222px;
  2148. height:293px;
  2149. }
  2150. #u79783_img {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:131px;
  2156. height:34px;
  2157. }
  2158. #u79783 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:131px;
  2164. height:34px;
  2165. display:flex;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:14px;
  2170. color:#FFFFFF;
  2171. text-align:left;
  2172. line-height:30px;
  2173. }
  2174. #u79783 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 10px 2px 10px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u79783_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. }
  2186. #u79784_img {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:131px;
  2192. height:34px;
  2193. }
  2194. #u79784 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:131px;
  2198. top:0px;
  2199. width:131px;
  2200. height:34px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. color:#FFFFFF;
  2207. text-align:left;
  2208. line-height:30px;
  2209. }
  2210. #u79784 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 10px 2px 10px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u79784_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u79785_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:172px;
  2228. height:34px;
  2229. }
  2230. #u79785 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:262px;
  2234. top:0px;
  2235. width:172px;
  2236. height:34px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:14px;
  2242. color:#FFFFFF;
  2243. text-align:left;
  2244. line-height:30px;
  2245. }
  2246. #u79785 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 10px 2px 10px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u79785_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. }
  2258. #u79786_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:172px;
  2264. height:34px;
  2265. }
  2266. #u79786 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:434px;
  2270. top:0px;
  2271. width:172px;
  2272. height:34px;
  2273. display:flex;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:14px;
  2278. color:#FFFFFF;
  2279. text-align:left;
  2280. line-height:30px;
  2281. }
  2282. #u79786 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 10px 2px 10px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u79786_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. }
  2294. #u79787_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:175px;
  2300. height:34px;
  2301. }
  2302. #u79787 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:606px;
  2306. top:0px;
  2307. width:175px;
  2308. height:34px;
  2309. display:flex;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:14px;
  2314. color:#FFFFFF;
  2315. text-align:left;
  2316. line-height:30px;
  2317. }
  2318. #u79787 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 10px 2px 10px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u79787_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. }
  2330. #u79788_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:179px;
  2336. height:34px;
  2337. }
  2338. #u79788 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:781px;
  2342. top:0px;
  2343. width:179px;
  2344. height:34px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:14px;
  2350. color:#FFFFFF;
  2351. text-align:left;
  2352. line-height:30px;
  2353. }
  2354. #u79788 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 10px 2px 10px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u79788_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. }
  2366. #u79789_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:262px;
  2372. height:34px;
  2373. }
  2374. #u79789 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:960px;
  2378. top:0px;
  2379. width:262px;
  2380. height:34px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. color:#FFFFFF;
  2387. text-align:left;
  2388. line-height:30px;
  2389. }
  2390. #u79789 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 10px 2px 10px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u79789_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u79790_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:131px;
  2408. height:37px;
  2409. }
  2410. #u79790 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:34px;
  2415. width:131px;
  2416. height:37px;
  2417. display:flex;
  2418. font-size:14px;
  2419. text-align:left;
  2420. }
  2421. #u79790 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:2px 10px 2px 10px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u79790_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u79791_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:131px;
  2440. height:37px;
  2441. }
  2442. #u79791 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:131px;
  2446. top:34px;
  2447. width:131px;
  2448. height:37px;
  2449. display:flex;
  2450. font-size:14px;
  2451. text-align:left;
  2452. }
  2453. #u79791 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 10px 2px 10px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u79791_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u79792_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:172px;
  2472. height:37px;
  2473. }
  2474. #u79792 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:262px;
  2478. top:34px;
  2479. width:172px;
  2480. height:37px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:14px;
  2486. text-align:left;
  2487. }
  2488. #u79792 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 10px 2px 10px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u79792_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u79793_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:172px;
  2507. height:37px;
  2508. }
  2509. #u79793 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:434px;
  2513. top:34px;
  2514. width:172px;
  2515. height:37px;
  2516. display:flex;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:14px;
  2521. text-align:left;
  2522. }
  2523. #u79793 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 10px 2px 10px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u79793_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u79794_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:175px;
  2542. height:37px;
  2543. }
  2544. #u79794 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:606px;
  2548. top:34px;
  2549. width:175px;
  2550. height:37px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. text-align:left;
  2557. }
  2558. #u79794 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 10px 2px 10px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u79794_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. visibility:hidden;
  2570. }
  2571. #u79795_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:179px;
  2577. height:37px;
  2578. }
  2579. #u79795 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:781px;
  2583. top:34px;
  2584. width:179px;
  2585. height:37px;
  2586. display:flex;
  2587. font-size:14px;
  2588. text-align:left;
  2589. }
  2590. #u79795 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 10px 2px 10px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u79795_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. visibility:hidden;
  2602. }
  2603. #u79796_img {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:262px;
  2609. height:37px;
  2610. }
  2611. #u79796 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:960px;
  2615. top:34px;
  2616. width:262px;
  2617. height:37px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:14px;
  2623. color:#1890FF;
  2624. text-align:left;
  2625. }
  2626. #u79796 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 10px 2px 10px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u79796_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. }
  2638. #u79797_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:131px;
  2644. height:37px;
  2645. }
  2646. #u79797 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:71px;
  2651. width:131px;
  2652. height:37px;
  2653. display:flex;
  2654. font-size:14px;
  2655. text-align:left;
  2656. }
  2657. #u79797 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 10px 2px 10px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u79797_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. visibility:hidden;
  2669. }
  2670. #u79798_img {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:131px;
  2676. height:37px;
  2677. }
  2678. #u79798 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:131px;
  2682. top:71px;
  2683. width:131px;
  2684. height:37px;
  2685. display:flex;
  2686. font-size:14px;
  2687. text-align:left;
  2688. }
  2689. #u79798 .text {
  2690. position:absolute;
  2691. align-self:center;
  2692. padding:2px 10px 2px 10px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u79798_text {
  2697. border-width:0px;
  2698. word-wrap:break-word;
  2699. text-transform:none;
  2700. visibility:hidden;
  2701. }
  2702. #u79799_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:172px;
  2708. height:37px;
  2709. }
  2710. #u79799 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:262px;
  2714. top:71px;
  2715. width:172px;
  2716. height:37px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:14px;
  2722. text-align:left;
  2723. }
  2724. #u79799 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 10px 2px 10px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u79799_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. visibility:hidden;
  2736. }
  2737. #u79800_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:172px;
  2743. height:37px;
  2744. }
  2745. #u79800 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:434px;
  2749. top:71px;
  2750. width:172px;
  2751. height:37px;
  2752. display:flex;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:14px;
  2757. text-align:left;
  2758. }
  2759. #u79800 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 10px 2px 10px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u79800_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u79801_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:175px;
  2778. height:37px;
  2779. }
  2780. #u79801 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:606px;
  2784. top:71px;
  2785. width:175px;
  2786. height:37px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. text-align:left;
  2793. }
  2794. #u79801 .text {
  2795. position:absolute;
  2796. align-self:center;
  2797. padding:2px 10px 2px 10px;
  2798. box-sizing:border-box;
  2799. width:100%;
  2800. }
  2801. #u79801_text {
  2802. border-width:0px;
  2803. word-wrap:break-word;
  2804. text-transform:none;
  2805. visibility:hidden;
  2806. }
  2807. #u79802_img {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:179px;
  2813. height:37px;
  2814. }
  2815. #u79802 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:781px;
  2819. top:71px;
  2820. width:179px;
  2821. height:37px;
  2822. display:flex;
  2823. font-size:14px;
  2824. text-align:left;
  2825. }
  2826. #u79802 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 10px 2px 10px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u79802_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u79803_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:262px;
  2845. height:37px;
  2846. }
  2847. #u79803 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:960px;
  2851. top:71px;
  2852. width:262px;
  2853. height:37px;
  2854. display:flex;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:14px;
  2859. color:#1890FF;
  2860. text-align:left;
  2861. }
  2862. #u79803 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 10px 2px 10px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u79803_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. }
  2874. #u79804_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:131px;
  2880. height:37px;
  2881. }
  2882. #u79804 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:108px;
  2887. width:131px;
  2888. height:37px;
  2889. display:flex;
  2890. font-size:14px;
  2891. text-align:left;
  2892. }
  2893. #u79804 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 10px 2px 10px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u79804_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u79805_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:131px;
  2912. height:37px;
  2913. }
  2914. #u79805 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:131px;
  2918. top:108px;
  2919. width:131px;
  2920. height:37px;
  2921. display:flex;
  2922. font-size:14px;
  2923. text-align:left;
  2924. }
  2925. #u79805 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 10px 2px 10px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u79805_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u79806_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:172px;
  2944. height:37px;
  2945. }
  2946. #u79806 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:262px;
  2950. top:108px;
  2951. width:172px;
  2952. height:37px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:14px;
  2958. text-align:left;
  2959. }
  2960. #u79806 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:2px 10px 2px 10px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u79806_text {
  2968. border-width:0px;
  2969. word-wrap:break-word;
  2970. text-transform:none;
  2971. visibility:hidden;
  2972. }
  2973. #u79807_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:172px;
  2979. height:37px;
  2980. }
  2981. #u79807 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:434px;
  2985. top:108px;
  2986. width:172px;
  2987. height:37px;
  2988. display:flex;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:14px;
  2993. text-align:left;
  2994. }
  2995. #u79807 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 10px 2px 10px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u79807_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u79808_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:175px;
  3014. height:37px;
  3015. }
  3016. #u79808 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:606px;
  3020. top:108px;
  3021. width:175px;
  3022. height:37px;
  3023. display:flex;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:14px;
  3028. text-align:left;
  3029. }
  3030. #u79808 .text {
  3031. position:absolute;
  3032. align-self:center;
  3033. padding:2px 10px 2px 10px;
  3034. box-sizing:border-box;
  3035. width:100%;
  3036. }
  3037. #u79808_text {
  3038. border-width:0px;
  3039. word-wrap:break-word;
  3040. text-transform:none;
  3041. visibility:hidden;
  3042. }
  3043. #u79809_img {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:179px;
  3049. height:37px;
  3050. }
  3051. #u79809 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:781px;
  3055. top:108px;
  3056. width:179px;
  3057. height:37px;
  3058. display:flex;
  3059. font-size:14px;
  3060. text-align:left;
  3061. }
  3062. #u79809 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:2px 10px 2px 10px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u79809_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. visibility:hidden;
  3074. }
  3075. #u79810_img {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:262px;
  3081. height:37px;
  3082. }
  3083. #u79810 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:960px;
  3087. top:108px;
  3088. width:262px;
  3089. height:37px;
  3090. display:flex;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. color:#1890FF;
  3096. text-align:left;
  3097. }
  3098. #u79810 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 10px 2px 10px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u79810_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. }
  3110. #u79811_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:131px;
  3116. height:37px;
  3117. }
  3118. #u79811 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:145px;
  3123. width:131px;
  3124. height:37px;
  3125. display:flex;
  3126. font-size:14px;
  3127. text-align:left;
  3128. }
  3129. #u79811 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 10px 2px 10px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u79811_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u79812_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:131px;
  3148. height:37px;
  3149. }
  3150. #u79812 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:131px;
  3154. top:145px;
  3155. width:131px;
  3156. height:37px;
  3157. display:flex;
  3158. font-size:14px;
  3159. text-align:left;
  3160. }
  3161. #u79812 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 10px 2px 10px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u79812_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u79813_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:172px;
  3180. height:37px;
  3181. }
  3182. #u79813 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:262px;
  3186. top:145px;
  3187. width:172px;
  3188. height:37px;
  3189. display:flex;
  3190. font-size:14px;
  3191. text-align:left;
  3192. }
  3193. #u79813 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 10px 2px 10px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u79813_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u79814_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:172px;
  3212. height:37px;
  3213. }
  3214. #u79814 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:434px;
  3218. top:145px;
  3219. width:172px;
  3220. height:37px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. text-align:left;
  3227. }
  3228. #u79814 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 10px 2px 10px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u79814_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u79815_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:175px;
  3247. height:37px;
  3248. }
  3249. #u79815 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:606px;
  3253. top:145px;
  3254. width:175px;
  3255. height:37px;
  3256. display:flex;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:14px;
  3261. text-align:left;
  3262. }
  3263. #u79815 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 10px 2px 10px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u79815_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u79816_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:179px;
  3282. height:37px;
  3283. }
  3284. #u79816 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:781px;
  3288. top:145px;
  3289. width:179px;
  3290. height:37px;
  3291. display:flex;
  3292. font-size:14px;
  3293. text-align:left;
  3294. }
  3295. #u79816 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 10px 2px 10px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u79816_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u79817_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:262px;
  3314. height:37px;
  3315. }
  3316. #u79817 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:960px;
  3320. top:145px;
  3321. width:262px;
  3322. height:37px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:14px;
  3328. color:#1890FF;
  3329. text-align:left;
  3330. }
  3331. #u79817 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 10px 2px 10px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u79817_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u79818_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:131px;
  3350. height:37px;
  3351. }
  3352. #u79818 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:182px;
  3357. width:131px;
  3358. height:37px;
  3359. display:flex;
  3360. font-size:14px;
  3361. text-align:left;
  3362. }
  3363. #u79818 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 10px 2px 10px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u79818_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. visibility:hidden;
  3375. }
  3376. #u79819_img {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:131px;
  3382. height:37px;
  3383. }
  3384. #u79819 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:131px;
  3388. top:182px;
  3389. width:131px;
  3390. height:37px;
  3391. display:flex;
  3392. font-size:14px;
  3393. text-align:left;
  3394. }
  3395. #u79819 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 10px 2px 10px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u79819_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u79820_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:172px;
  3414. height:37px;
  3415. }
  3416. #u79820 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:262px;
  3420. top:182px;
  3421. width:172px;
  3422. height:37px;
  3423. display:flex;
  3424. font-size:14px;
  3425. text-align:left;
  3426. }
  3427. #u79820 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 10px 2px 10px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u79820_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u79821_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:172px;
  3446. height:37px;
  3447. }
  3448. #u79821 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:434px;
  3452. top:182px;
  3453. width:172px;
  3454. height:37px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. text-align:left;
  3461. }
  3462. #u79821 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 10px 2px 10px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u79821_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u79822_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:175px;
  3481. height:37px;
  3482. }
  3483. #u79822 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:606px;
  3487. top:182px;
  3488. width:175px;
  3489. height:37px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. text-align:left;
  3496. }
  3497. #u79822 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 10px 2px 10px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u79822_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u79823_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:179px;
  3516. height:37px;
  3517. }
  3518. #u79823 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:781px;
  3522. top:182px;
  3523. width:179px;
  3524. height:37px;
  3525. display:flex;
  3526. font-size:14px;
  3527. text-align:left;
  3528. }
  3529. #u79823 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 10px 2px 10px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u79823_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u79824_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:262px;
  3548. height:37px;
  3549. }
  3550. #u79824 {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:960px;
  3554. top:182px;
  3555. width:262px;
  3556. height:37px;
  3557. display:flex;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:14px;
  3562. color:#1890FF;
  3563. text-align:left;
  3564. }
  3565. #u79824 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 10px 2px 10px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u79824_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u79825_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:131px;
  3584. height:37px;
  3585. }
  3586. #u79825 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:219px;
  3591. width:131px;
  3592. height:37px;
  3593. display:flex;
  3594. font-size:14px;
  3595. text-align:left;
  3596. }
  3597. #u79825 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 10px 2px 10px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u79825_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u79826_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:131px;
  3616. height:37px;
  3617. }
  3618. #u79826 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:131px;
  3622. top:219px;
  3623. width:131px;
  3624. height:37px;
  3625. display:flex;
  3626. font-size:14px;
  3627. text-align:left;
  3628. }
  3629. #u79826 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 10px 2px 10px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u79826_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u79827_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:172px;
  3648. height:37px;
  3649. }
  3650. #u79827 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:262px;
  3654. top:219px;
  3655. width:172px;
  3656. height:37px;
  3657. display:flex;
  3658. font-size:14px;
  3659. text-align:left;
  3660. }
  3661. #u79827 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 10px 2px 10px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u79827_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u79828_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:172px;
  3680. height:37px;
  3681. }
  3682. #u79828 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:434px;
  3686. top:219px;
  3687. width:172px;
  3688. height:37px;
  3689. display:flex;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:14px;
  3694. text-align:left;
  3695. }
  3696. #u79828 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 10px 2px 10px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u79828_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u79829_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:175px;
  3715. height:37px;
  3716. }
  3717. #u79829 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:606px;
  3721. top:219px;
  3722. width:175px;
  3723. height:37px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:14px;
  3729. text-align:left;
  3730. }
  3731. #u79829 .text {
  3732. position:absolute;
  3733. align-self:center;
  3734. padding:2px 10px 2px 10px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u79829_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. visibility:hidden;
  3743. }
  3744. #u79830_img {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:179px;
  3750. height:37px;
  3751. }
  3752. #u79830 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:781px;
  3756. top:219px;
  3757. width:179px;
  3758. height:37px;
  3759. display:flex;
  3760. font-size:14px;
  3761. text-align:left;
  3762. }
  3763. #u79830 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 10px 2px 10px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u79830_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u79831_img {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:262px;
  3782. height:37px;
  3783. }
  3784. #u79831 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:960px;
  3788. top:219px;
  3789. width:262px;
  3790. height:37px;
  3791. display:flex;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:14px;
  3796. color:#1890FF;
  3797. text-align:left;
  3798. }
  3799. #u79831 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 10px 2px 10px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u79831_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u79832_img {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:131px;
  3818. height:37px;
  3819. }
  3820. #u79832 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:256px;
  3825. width:131px;
  3826. height:37px;
  3827. display:flex;
  3828. font-size:14px;
  3829. text-align:left;
  3830. }
  3831. #u79832 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 10px 2px 10px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u79832_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. visibility:hidden;
  3843. }
  3844. #u79833_img {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:131px;
  3850. height:37px;
  3851. }
  3852. #u79833 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:131px;
  3856. top:256px;
  3857. width:131px;
  3858. height:37px;
  3859. display:flex;
  3860. font-size:14px;
  3861. text-align:left;
  3862. }
  3863. #u79833 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 10px 2px 10px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u79833_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u79834_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:172px;
  3882. height:37px;
  3883. }
  3884. #u79834 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:262px;
  3888. top:256px;
  3889. width:172px;
  3890. height:37px;
  3891. display:flex;
  3892. font-size:14px;
  3893. text-align:left;
  3894. }
  3895. #u79834 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 10px 2px 10px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u79834_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u79835_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:172px;
  3914. height:37px;
  3915. }
  3916. #u79835 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:434px;
  3920. top:256px;
  3921. width:172px;
  3922. height:37px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:14px;
  3928. text-align:left;
  3929. }
  3930. #u79835 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 10px 2px 10px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u79835_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u79836_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:175px;
  3949. height:37px;
  3950. }
  3951. #u79836 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:606px;
  3955. top:256px;
  3956. width:175px;
  3957. height:37px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:14px;
  3963. text-align:left;
  3964. }
  3965. #u79836 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 10px 2px 10px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u79836_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u79837_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:179px;
  3984. height:37px;
  3985. }
  3986. #u79837 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:781px;
  3990. top:256px;
  3991. width:179px;
  3992. height:37px;
  3993. display:flex;
  3994. font-size:14px;
  3995. text-align:left;
  3996. }
  3997. #u79837 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 10px 2px 10px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u79837_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u79838_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:262px;
  4016. height:37px;
  4017. }
  4018. #u79838 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:960px;
  4022. top:256px;
  4023. width:262px;
  4024. height:37px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. color:#1890FF;
  4031. text-align:left;
  4032. }
  4033. #u79838 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 10px 2px 10px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u79838_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u79840 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:0px;
  4052. height:0px;
  4053. }
  4054. #u79841_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:200px;
  4060. height:1191px;
  4061. }
  4062. #u79841 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:120px;
  4066. top:50px;
  4067. width:200px;
  4068. height:1191px;
  4069. display:flex;
  4070. }
  4071. #u79841 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:2px 2px 2px 2px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u79841_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. visibility:hidden;
  4083. }
  4084. #u79842_div {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:200px;
  4090. height:60px;
  4091. background:inherit;
  4092. background-color:rgba(224, 231, 247, 1);
  4093. border:none;
  4094. border-radius:0px;
  4095. -moz-box-shadow:none;
  4096. -webkit-box-shadow:none;
  4097. box-shadow:none;
  4098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4099. font-weight:500;
  4100. font-style:normal;
  4101. font-size:18px;
  4102. }
  4103. #u79842 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:120px;
  4107. top:50px;
  4108. width:200px;
  4109. height:60px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4112. font-weight:500;
  4113. font-style:normal;
  4114. font-size:18px;
  4115. }
  4116. #u79842 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:0px 0px 0px 20px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u79842_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. }
  4128. #u79843 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:120px;
  4132. top:130px;
  4133. width:200px;
  4134. height:1078px;
  4135. }
  4136. #u79843_state0 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:200px;
  4142. height:1078px;
  4143. overflow:auto;
  4144. -webkit-overflow-scrolling:touch;
  4145. -ms-overflow-x:hidden;
  4146. overflow-x:hidden;
  4147. background-image:none;
  4148. border:none;
  4149. border-radius:0px;
  4150. -moz-box-shadow:none;
  4151. -webkit-box-shadow:none;
  4152. box-shadow:none;
  4153. }
  4154. #u79843_state0_content {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:1px;
  4160. height:1px;
  4161. }
  4162. #u79844_div {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:97px;
  4168. height:22px;
  4169. background:inherit;
  4170. background-color:rgba(255, 255, 255, 0);
  4171. border:none;
  4172. border-radius:0px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:16px;
  4180. }
  4181. #u79844 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:30px;
  4185. top:0px;
  4186. width:97px;
  4187. height:22px;
  4188. display:flex;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:16px;
  4193. }
  4194. #u79844 .text {
  4195. position:absolute;
  4196. align-self:flex-start;
  4197. padding:0px 0px 0px 0px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u79844_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. }
  4206. #u79845_div {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:65px;
  4212. height:22px;
  4213. background:inherit;
  4214. background-color:rgba(255, 255, 255, 0);
  4215. border:none;
  4216. border-radius:0px;
  4217. -moz-box-shadow:none;
  4218. -webkit-box-shadow:none;
  4219. box-shadow:none;
  4220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4221. font-weight:400;
  4222. font-style:normal;
  4223. font-size:16px;
  4224. }
  4225. #u79845 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:30px;
  4229. top:42px;
  4230. width:65px;
  4231. height:22px;
  4232. display:flex;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:16px;
  4237. }
  4238. #u79845 .text {
  4239. position:absolute;
  4240. align-self:flex-start;
  4241. padding:0px 0px 0px 0px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u79845_text {
  4246. border-width:0px;
  4247. white-space:nowrap;
  4248. text-transform:none;
  4249. }
  4250. #u79846_div {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:49px;
  4256. height:22px;
  4257. background:inherit;
  4258. background-color:rgba(255, 255, 255, 0);
  4259. border:none;
  4260. border-radius:0px;
  4261. -moz-box-shadow:none;
  4262. -webkit-box-shadow:none;
  4263. box-shadow:none;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:16px;
  4268. }
  4269. #u79846 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:30px;
  4273. top:145px;
  4274. width:49px;
  4275. height:22px;
  4276. display:flex;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:16px;
  4281. }
  4282. #u79846 .text {
  4283. position:absolute;
  4284. align-self:flex-start;
  4285. padding:0px 0px 0px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u79846_text {
  4290. border-width:0px;
  4291. white-space:nowrap;
  4292. text-transform:none;
  4293. }
  4294. #u79847_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:97px;
  4300. height:22px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 0);
  4303. border:none;
  4304. border-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:16px;
  4312. }
  4313. #u79847 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:30px;
  4317. top:187px;
  4318. width:97px;
  4319. height:22px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:16px;
  4325. }
  4326. #u79847 .text {
  4327. position:absolute;
  4328. align-self:flex-start;
  4329. padding:0px 0px 0px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u79847_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. }
  4338. #u79848_img {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:201px;
  4344. height:2px;
  4345. }
  4346. #u79848 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:84px;
  4351. width:200px;
  4352. height:1px;
  4353. display:flex;
  4354. }
  4355. #u79848 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 2px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u79848_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u79849_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:49px;
  4374. height:17px;
  4375. background:inherit;
  4376. background-color:rgba(255, 255, 255, 0);
  4377. border:none;
  4378. border-radius:0px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. color:#AAAAAA;
  4387. }
  4388. #u79849 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:30px;
  4392. top:105px;
  4393. width:49px;
  4394. height:17px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#AAAAAA;
  4401. }
  4402. #u79849 .text {
  4403. position:absolute;
  4404. align-self:flex-start;
  4405. padding:0px 0px 0px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u79849_text {
  4410. border-width:0px;
  4411. white-space:nowrap;
  4412. text-transform:none;
  4413. }
  4414. #u79850_div {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:97px;
  4420. height:22px;
  4421. background:inherit;
  4422. background-color:rgba(255, 255, 255, 0);
  4423. border:none;
  4424. border-radius:0px;
  4425. -moz-box-shadow:none;
  4426. -webkit-box-shadow:none;
  4427. box-shadow:none;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:16px;
  4432. }
  4433. #u79850 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:30px;
  4437. top:229px;
  4438. width:97px;
  4439. height:22px;
  4440. display:flex;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:16px;
  4445. }
  4446. #u79850 .text {
  4447. position:absolute;
  4448. align-self:flex-start;
  4449. padding:0px 0px 0px 0px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u79850_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. }
  4458. #u79851_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:65px;
  4464. height:22px;
  4465. background:inherit;
  4466. background-color:rgba(255, 255, 255, 0);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:16px;
  4476. }
  4477. #u79851 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:30px;
  4481. top:271px;
  4482. width:65px;
  4483. height:22px;
  4484. display:flex;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:16px;
  4489. }
  4490. #u79851 .text {
  4491. position:absolute;
  4492. align-self:flex-start;
  4493. padding:0px 0px 0px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u79851_text {
  4498. border-width:0px;
  4499. white-space:nowrap;
  4500. text-transform:none;
  4501. }
  4502. #u79852_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:201px;
  4508. height:2px;
  4509. }
  4510. #u79852 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:313px;
  4515. width:200px;
  4516. height:1px;
  4517. display:flex;
  4518. }
  4519. #u79852 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 2px 2px 2px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u79852_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u79853_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:65px;
  4538. height:22px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 0);
  4541. border:none;
  4542. border-radius:0px;
  4543. -moz-box-shadow:none;
  4544. -webkit-box-shadow:none;
  4545. box-shadow:none;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:16px;
  4550. }
  4551. #u79853 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:30px;
  4555. top:370px;
  4556. width:65px;
  4557. height:22px;
  4558. display:flex;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:16px;
  4563. }
  4564. #u79853 .text {
  4565. position:absolute;
  4566. align-self:flex-start;
  4567. padding:0px 0px 0px 0px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u79853_text {
  4572. border-width:0px;
  4573. white-space:nowrap;
  4574. text-transform:none;
  4575. }
  4576. #u79854_div {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:49px;
  4582. height:17px;
  4583. background:inherit;
  4584. background-color:rgba(255, 255, 255, 0);
  4585. border:none;
  4586. border-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:12px;
  4594. color:#AAAAAA;
  4595. }
  4596. #u79854 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:30px;
  4600. top:334px;
  4601. width:49px;
  4602. height:17px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#AAAAAA;
  4609. }
  4610. #u79854 .text {
  4611. position:absolute;
  4612. align-self:flex-start;
  4613. padding:0px 0px 0px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u79854_text {
  4618. border-width:0px;
  4619. white-space:nowrap;
  4620. text-transform:none;
  4621. }
  4622. #u79855_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:65px;
  4628. height:22px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 0);
  4631. border:none;
  4632. border-radius:0px;
  4633. -moz-box-shadow:none;
  4634. -webkit-box-shadow:none;
  4635. box-shadow:none;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:16px;
  4640. }
  4641. #u79855 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:30px;
  4645. top:412px;
  4646. width:65px;
  4647. height:22px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:16px;
  4653. }
  4654. #u79855 .text {
  4655. position:absolute;
  4656. align-self:flex-start;
  4657. padding:0px 0px 0px 0px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u79855_text {
  4662. border-width:0px;
  4663. white-space:nowrap;
  4664. text-transform:none;
  4665. }
  4666. #u79856_div {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:65px;
  4672. height:22px;
  4673. background:inherit;
  4674. background-color:rgba(255, 255, 255, 0);
  4675. border:none;
  4676. border-radius:0px;
  4677. -moz-box-shadow:none;
  4678. -webkit-box-shadow:none;
  4679. box-shadow:none;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:16px;
  4684. }
  4685. #u79856 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:30px;
  4689. top:454px;
  4690. width:65px;
  4691. height:22px;
  4692. display:flex;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:16px;
  4697. }
  4698. #u79856 .text {
  4699. position:absolute;
  4700. align-self:flex-start;
  4701. padding:0px 0px 0px 0px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u79856_text {
  4706. border-width:0px;
  4707. white-space:nowrap;
  4708. text-transform:none;
  4709. }
  4710. #u79857_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:65px;
  4716. height:22px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 0);
  4719. border:none;
  4720. border-radius:0px;
  4721. -moz-box-shadow:none;
  4722. -webkit-box-shadow:none;
  4723. box-shadow:none;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:16px;
  4728. }
  4729. #u79857 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:30px;
  4733. top:496px;
  4734. width:65px;
  4735. height:22px;
  4736. display:flex;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:16px;
  4741. }
  4742. #u79857 .text {
  4743. position:absolute;
  4744. align-self:flex-start;
  4745. padding:0px 0px 0px 0px;
  4746. box-sizing:border-box;
  4747. width:100%;
  4748. }
  4749. #u79857_text {
  4750. border-width:0px;
  4751. white-space:nowrap;
  4752. text-transform:none;
  4753. }
  4754. #u79858_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:65px;
  4760. height:22px;
  4761. background:inherit;
  4762. background-color:rgba(255, 255, 255, 0);
  4763. border:none;
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:16px;
  4772. }
  4773. #u79858 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:30px;
  4777. top:538px;
  4778. width:65px;
  4779. height:22px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:16px;
  4785. }
  4786. #u79858 .text {
  4787. position:absolute;
  4788. align-self:flex-start;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u79858_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u79859_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:65px;
  4804. height:22px;
  4805. background:inherit;
  4806. background-color:rgba(255, 255, 255, 0);
  4807. border:none;
  4808. border-radius:0px;
  4809. -moz-box-shadow:none;
  4810. -webkit-box-shadow:none;
  4811. box-shadow:none;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:16px;
  4816. }
  4817. #u79859 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:30px;
  4821. top:580px;
  4822. width:65px;
  4823. height:22px;
  4824. display:flex;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:16px;
  4829. }
  4830. #u79859 .text {
  4831. position:absolute;
  4832. align-self:flex-start;
  4833. padding:0px 0px 0px 0px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u79859_text {
  4838. border-width:0px;
  4839. white-space:nowrap;
  4840. text-transform:none;
  4841. }
  4842. #u79860_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:201px;
  4848. height:2px;
  4849. }
  4850. #u79860 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:1289px;
  4855. width:200px;
  4856. height:1px;
  4857. display:flex;
  4858. }
  4859. #u79860 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u79860_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u79861_div {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:65px;
  4878. height:22px;
  4879. background:inherit;
  4880. background-color:rgba(255, 255, 255, 0);
  4881. border:none;
  4882. border-radius:0px;
  4883. -moz-box-shadow:none;
  4884. -webkit-box-shadow:none;
  4885. box-shadow:none;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:16px;
  4890. }
  4891. #u79861 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:30px;
  4895. top:1346px;
  4896. width:65px;
  4897. height:22px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:16px;
  4903. }
  4904. #u79861 .text {
  4905. position:absolute;
  4906. align-self:flex-start;
  4907. padding:0px 0px 0px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u79861_text {
  4912. border-width:0px;
  4913. white-space:nowrap;
  4914. text-transform:none;
  4915. }
  4916. #u79862_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:49px;
  4922. height:17px;
  4923. background:inherit;
  4924. background-color:rgba(255, 255, 255, 0);
  4925. border:none;
  4926. border-radius:0px;
  4927. -moz-box-shadow:none;
  4928. -webkit-box-shadow:none;
  4929. box-shadow:none;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:12px;
  4934. color:#AAAAAA;
  4935. }
  4936. #u79862 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:30px;
  4940. top:1310px;
  4941. width:49px;
  4942. height:17px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#AAAAAA;
  4949. }
  4950. #u79862 .text {
  4951. position:absolute;
  4952. align-self:flex-start;
  4953. padding:0px 0px 0px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u79862_text {
  4958. border-width:0px;
  4959. white-space:nowrap;
  4960. text-transform:none;
  4961. }
  4962. #u79863_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:65px;
  4968. height:22px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 0);
  4971. border:none;
  4972. border-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:16px;
  4980. }
  4981. #u79863 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:30px;
  4985. top:1388px;
  4986. width:65px;
  4987. height:22px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:16px;
  4993. }
  4994. #u79863 .text {
  4995. position:absolute;
  4996. align-self:flex-start;
  4997. padding:0px 0px 0px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u79863_text {
  5002. border-width:0px;
  5003. white-space:nowrap;
  5004. text-transform:none;
  5005. }
  5006. #u79864_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:65px;
  5012. height:22px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 0);
  5015. border:none;
  5016. border-radius:0px;
  5017. -moz-box-shadow:none;
  5018. -webkit-box-shadow:none;
  5019. box-shadow:none;
  5020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5021. font-weight:400;
  5022. font-style:normal;
  5023. font-size:16px;
  5024. }
  5025. #u79864 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:30px;
  5029. top:1472px;
  5030. width:65px;
  5031. height:22px;
  5032. display:flex;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:16px;
  5037. }
  5038. #u79864 .text {
  5039. position:absolute;
  5040. align-self:flex-start;
  5041. padding:0px 0px 0px 0px;
  5042. box-sizing:border-box;
  5043. width:100%;
  5044. }
  5045. #u79864_text {
  5046. border-width:0px;
  5047. white-space:nowrap;
  5048. text-transform:none;
  5049. }
  5050. #u79865_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:201px;
  5056. height:2px;
  5057. }
  5058. #u79865 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:1514px;
  5063. width:200px;
  5064. height:1px;
  5065. display:flex;
  5066. }
  5067. #u79865 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u79865_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u79866_div {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:49px;
  5086. height:22px;
  5087. background:inherit;
  5088. background-color:rgba(255, 255, 255, 0);
  5089. border:none;
  5090. border-radius:0px;
  5091. -moz-box-shadow:none;
  5092. -webkit-box-shadow:none;
  5093. box-shadow:none;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:16px;
  5098. }
  5099. #u79866 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:30px;
  5103. top:1571px;
  5104. width:49px;
  5105. height:22px;
  5106. display:flex;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:16px;
  5111. }
  5112. #u79866 .text {
  5113. position:absolute;
  5114. align-self:flex-start;
  5115. padding:0px 0px 0px 0px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u79866_text {
  5120. border-width:0px;
  5121. white-space:nowrap;
  5122. text-transform:none;
  5123. }
  5124. #u79867_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:49px;
  5130. height:17px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 0);
  5133. border:none;
  5134. border-radius:0px;
  5135. -moz-box-shadow:none;
  5136. -webkit-box-shadow:none;
  5137. box-shadow:none;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:12px;
  5142. color:#AAAAAA;
  5143. }
  5144. #u79867 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:30px;
  5148. top:1535px;
  5149. width:49px;
  5150. height:17px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#AAAAAA;
  5157. }
  5158. #u79867 .text {
  5159. position:absolute;
  5160. align-self:flex-start;
  5161. padding:0px 0px 0px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u79867_text {
  5166. border-width:0px;
  5167. white-space:nowrap;
  5168. text-transform:none;
  5169. }
  5170. #u79868_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:49px;
  5176. height:22px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 0);
  5179. border:none;
  5180. border-radius:0px;
  5181. -moz-box-shadow:none;
  5182. -webkit-box-shadow:none;
  5183. box-shadow:none;
  5184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5185. font-weight:400;
  5186. font-style:normal;
  5187. font-size:16px;
  5188. }
  5189. #u79868 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:30px;
  5193. top:1613px;
  5194. width:49px;
  5195. height:22px;
  5196. display:flex;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:16px;
  5201. }
  5202. #u79868 .text {
  5203. position:absolute;
  5204. align-self:flex-start;
  5205. padding:0px 0px 0px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u79868_text {
  5210. border-width:0px;
  5211. white-space:nowrap;
  5212. text-transform:none;
  5213. }
  5214. #u79869_div {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:65px;
  5220. height:22px;
  5221. background:inherit;
  5222. background-color:rgba(255, 255, 255, 0);
  5223. border:none;
  5224. border-radius:0px;
  5225. -moz-box-shadow:none;
  5226. -webkit-box-shadow:none;
  5227. box-shadow:none;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:16px;
  5232. }
  5233. #u79869 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:30px;
  5237. top:1655px;
  5238. width:65px;
  5239. height:22px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:16px;
  5245. }
  5246. #u79869 .text {
  5247. position:absolute;
  5248. align-self:flex-start;
  5249. padding:0px 0px 0px 0px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u79869_text {
  5254. border-width:0px;
  5255. white-space:nowrap;
  5256. text-transform:none;
  5257. }
  5258. #u79870_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:201px;
  5264. height:2px;
  5265. }
  5266. #u79870 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:1697px;
  5271. width:200px;
  5272. height:1px;
  5273. display:flex;
  5274. }
  5275. #u79870 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 2px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u79870_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u79871_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:81px;
  5294. height:22px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 0);
  5297. border:none;
  5298. border-radius:0px;
  5299. -moz-box-shadow:none;
  5300. -webkit-box-shadow:none;
  5301. box-shadow:none;
  5302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:16px;
  5306. }
  5307. #u79871 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:30px;
  5311. top:1754px;
  5312. width:81px;
  5313. height:22px;
  5314. display:flex;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:16px;
  5319. }
  5320. #u79871 .text {
  5321. position:absolute;
  5322. align-self:flex-start;
  5323. padding:0px 0px 0px 0px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u79871_text {
  5328. border-width:0px;
  5329. white-space:nowrap;
  5330. text-transform:none;
  5331. }
  5332. #u79872_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:49px;
  5338. height:17px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 0);
  5341. border:none;
  5342. border-radius:0px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. color:#AAAAAA;
  5351. }
  5352. #u79872 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:30px;
  5356. top:1718px;
  5357. width:49px;
  5358. height:17px;
  5359. display:flex;
  5360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:12px;
  5364. color:#AAAAAA;
  5365. }
  5366. #u79872 .text {
  5367. position:absolute;
  5368. align-self:flex-start;
  5369. padding:0px 0px 0px 0px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u79872_text {
  5374. border-width:0px;
  5375. white-space:nowrap;
  5376. text-transform:none;
  5377. }
  5378. #u79873_div {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:81px;
  5384. height:22px;
  5385. background:inherit;
  5386. background-color:rgba(255, 255, 255, 0);
  5387. border:none;
  5388. border-radius:0px;
  5389. -moz-box-shadow:none;
  5390. -webkit-box-shadow:none;
  5391. box-shadow:none;
  5392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:16px;
  5396. }
  5397. #u79873 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:30px;
  5401. top:1796px;
  5402. width:81px;
  5403. height:22px;
  5404. display:flex;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:16px;
  5409. }
  5410. #u79873 .text {
  5411. position:absolute;
  5412. align-self:flex-start;
  5413. padding:0px 0px 0px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u79873_text {
  5418. border-width:0px;
  5419. white-space:nowrap;
  5420. text-transform:none;
  5421. }
  5422. #u79874_div {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:81px;
  5428. height:22px;
  5429. background:inherit;
  5430. background-color:rgba(255, 255, 255, 0);
  5431. border:none;
  5432. border-radius:0px;
  5433. -moz-box-shadow:none;
  5434. -webkit-box-shadow:none;
  5435. box-shadow:none;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:16px;
  5440. }
  5441. #u79874 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:30px;
  5445. top:1838px;
  5446. width:81px;
  5447. height:22px;
  5448. display:flex;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:16px;
  5453. }
  5454. #u79874 .text {
  5455. position:absolute;
  5456. align-self:flex-start;
  5457. padding:0px 0px 0px 0px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u79874_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u79875_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:65px;
  5472. height:22px;
  5473. background:inherit;
  5474. background-color:rgba(255, 255, 255, 0);
  5475. border:none;
  5476. border-radius:0px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:16px;
  5484. }
  5485. #u79875 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:30px;
  5489. top:1430px;
  5490. width:65px;
  5491. height:22px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:16px;
  5497. }
  5498. #u79875 .text {
  5499. position:absolute;
  5500. align-self:flex-start;
  5501. padding:0px 0px 0px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u79875_text {
  5506. border-width:0px;
  5507. white-space:nowrap;
  5508. text-transform:none;
  5509. }
  5510. #u79876_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:201px;
  5516. height:2px;
  5517. }
  5518. #u79876 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:669px;
  5523. width:200px;
  5524. height:1px;
  5525. display:flex;
  5526. }
  5527. #u79876 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u79876_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u79877_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:65px;
  5546. height:22px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 0);
  5549. border:none;
  5550. border-radius:0px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:16px;
  5558. }
  5559. #u79877 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:30px;
  5563. top:726px;
  5564. width:65px;
  5565. height:22px;
  5566. display:flex;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:16px;
  5571. }
  5572. #u79877 .text {
  5573. position:absolute;
  5574. align-self:flex-start;
  5575. padding:0px 0px 0px 0px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u79877_text {
  5580. border-width:0px;
  5581. white-space:nowrap;
  5582. text-transform:none;
  5583. }
  5584. #u79878_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:49px;
  5590. height:17px;
  5591. background:inherit;
  5592. background-color:rgba(255, 255, 255, 0);
  5593. border:none;
  5594. border-radius:0px;
  5595. -moz-box-shadow:none;
  5596. -webkit-box-shadow:none;
  5597. box-shadow:none;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:12px;
  5602. color:#AAAAAA;
  5603. }
  5604. #u79878 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:30px;
  5608. top:690px;
  5609. width:49px;
  5610. height:17px;
  5611. display:flex;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:12px;
  5616. color:#AAAAAA;
  5617. }
  5618. #u79878 .text {
  5619. position:absolute;
  5620. align-self:flex-start;
  5621. padding:0px 0px 0px 0px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u79878_text {
  5626. border-width:0px;
  5627. white-space:nowrap;
  5628. text-transform:none;
  5629. }
  5630. #u79879_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:65px;
  5636. height:22px;
  5637. background:inherit;
  5638. background-color:rgba(255, 255, 255, 0);
  5639. border:none;
  5640. border-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. font-size:16px;
  5648. }
  5649. #u79879 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:30px;
  5653. top:768px;
  5654. width:65px;
  5655. height:22px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:16px;
  5661. }
  5662. #u79879 .text {
  5663. position:absolute;
  5664. align-self:flex-start;
  5665. padding:0px 0px 0px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u79879_text {
  5670. border-width:0px;
  5671. white-space:nowrap;
  5672. text-transform:none;
  5673. }
  5674. #u79880_div {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:65px;
  5680. height:22px;
  5681. background:inherit;
  5682. background-color:rgba(255, 255, 255, 0);
  5683. border:none;
  5684. border-radius:0px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:16px;
  5692. }
  5693. #u79880 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:30px;
  5697. top:852px;
  5698. width:65px;
  5699. height:22px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:16px;
  5705. }
  5706. #u79880 .text {
  5707. position:absolute;
  5708. align-self:flex-start;
  5709. padding:0px 0px 0px 0px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u79880_text {
  5714. border-width:0px;
  5715. white-space:nowrap;
  5716. text-transform:none;
  5717. }
  5718. #u79881_div {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:65px;
  5724. height:22px;
  5725. background:inherit;
  5726. background-color:rgba(255, 255, 255, 0);
  5727. border:none;
  5728. border-radius:0px;
  5729. -moz-box-shadow:none;
  5730. -webkit-box-shadow:none;
  5731. box-shadow:none;
  5732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5733. font-weight:400;
  5734. font-style:normal;
  5735. font-size:16px;
  5736. }
  5737. #u79881 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:30px;
  5741. top:810px;
  5742. width:65px;
  5743. height:22px;
  5744. display:flex;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:16px;
  5749. }
  5750. #u79881 .text {
  5751. position:absolute;
  5752. align-self:flex-start;
  5753. padding:0px 0px 0px 0px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u79881_text {
  5758. border-width:0px;
  5759. white-space:nowrap;
  5760. text-transform:none;
  5761. }
  5762. #u79882_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:65px;
  5768. height:22px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 0);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:16px;
  5780. }
  5781. #u79882 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:30px;
  5785. top:894px;
  5786. width:65px;
  5787. height:22px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:16px;
  5793. }
  5794. #u79882 .text {
  5795. position:absolute;
  5796. align-self:flex-start;
  5797. padding:0px 0px 0px 0px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u79882_text {
  5802. border-width:0px;
  5803. white-space:nowrap;
  5804. text-transform:none;
  5805. }
  5806. #u79883_div {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:65px;
  5812. height:22px;
  5813. background:inherit;
  5814. background-color:rgba(255, 255, 255, 0);
  5815. border:none;
  5816. border-radius:0px;
  5817. -moz-box-shadow:none;
  5818. -webkit-box-shadow:none;
  5819. box-shadow:none;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:16px;
  5824. }
  5825. #u79883 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:30px;
  5829. top:936px;
  5830. width:65px;
  5831. height:22px;
  5832. display:flex;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:16px;
  5837. }
  5838. #u79883 .text {
  5839. position:absolute;
  5840. align-self:flex-start;
  5841. padding:0px 0px 0px 0px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u79883_text {
  5846. border-width:0px;
  5847. white-space:nowrap;
  5848. text-transform:none;
  5849. }
  5850. #u79884_img {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:201px;
  5856. height:2px;
  5857. }
  5858. #u79884 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:1018px;
  5863. width:200px;
  5864. height:1px;
  5865. display:flex;
  5866. }
  5867. #u79884 .text {
  5868. position:absolute;
  5869. align-self:center;
  5870. padding:2px 2px 2px 2px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u79884_text {
  5875. border-width:0px;
  5876. word-wrap:break-word;
  5877. text-transform:none;
  5878. visibility:hidden;
  5879. }
  5880. #u79885_div {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:65px;
  5886. height:22px;
  5887. background:inherit;
  5888. background-color:rgba(255, 255, 255, 0);
  5889. border:none;
  5890. border-radius:0px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:16px;
  5898. }
  5899. #u79885 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:30px;
  5903. top:1075px;
  5904. width:65px;
  5905. height:22px;
  5906. display:flex;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:16px;
  5911. }
  5912. #u79885 .text {
  5913. position:absolute;
  5914. align-self:flex-start;
  5915. padding:0px 0px 0px 0px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u79885_text {
  5920. border-width:0px;
  5921. white-space:nowrap;
  5922. text-transform:none;
  5923. }
  5924. #u79886_div {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:49px;
  5930. height:17px;
  5931. background:inherit;
  5932. background-color:rgba(255, 255, 255, 0);
  5933. border:none;
  5934. border-radius:0px;
  5935. -moz-box-shadow:none;
  5936. -webkit-box-shadow:none;
  5937. box-shadow:none;
  5938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:12px;
  5942. color:#AAAAAA;
  5943. }
  5944. #u79886 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:30px;
  5948. top:1039px;
  5949. width:49px;
  5950. height:17px;
  5951. display:flex;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:12px;
  5956. color:#AAAAAA;
  5957. }
  5958. #u79886 .text {
  5959. position:absolute;
  5960. align-self:flex-start;
  5961. padding:0px 0px 0px 0px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u79886_text {
  5966. border-width:0px;
  5967. white-space:nowrap;
  5968. text-transform:none;
  5969. }
  5970. #u79887_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:65px;
  5976. height:22px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 0);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:16px;
  5988. }
  5989. #u79887 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:30px;
  5993. top:1117px;
  5994. width:65px;
  5995. height:22px;
  5996. display:flex;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:16px;
  6001. }
  6002. #u79887 .text {
  6003. position:absolute;
  6004. align-self:flex-start;
  6005. padding:0px 0px 0px 0px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u79887_text {
  6010. border-width:0px;
  6011. white-space:nowrap;
  6012. text-transform:none;
  6013. }
  6014. #u79888_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:65px;
  6020. height:22px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 0);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:16px;
  6032. }
  6033. #u79888 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:30px;
  6037. top:1201px;
  6038. width:65px;
  6039. height:22px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:16px;
  6045. }
  6046. #u79888 .text {
  6047. position:absolute;
  6048. align-self:flex-start;
  6049. padding:0px 0px 0px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u79888_text {
  6054. border-width:0px;
  6055. white-space:nowrap;
  6056. text-transform:none;
  6057. }
  6058. #u79889_div {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:65px;
  6064. height:22px;
  6065. background:inherit;
  6066. background-color:rgba(255, 255, 255, 0);
  6067. border:none;
  6068. border-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:16px;
  6076. }
  6077. #u79889 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:30px;
  6081. top:1159px;
  6082. width:65px;
  6083. height:22px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:16px;
  6089. }
  6090. #u79889 .text {
  6091. position:absolute;
  6092. align-self:flex-start;
  6093. padding:0px 0px 0px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u79889_text {
  6098. border-width:0px;
  6099. white-space:nowrap;
  6100. text-transform:none;
  6101. }
  6102. #u79890_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:65px;
  6108. height:22px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 0);
  6111. border:none;
  6112. border-radius:0px;
  6113. -moz-box-shadow:none;
  6114. -webkit-box-shadow:none;
  6115. box-shadow:none;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:16px;
  6120. }
  6121. #u79890 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:30px;
  6125. top:1243px;
  6126. width:65px;
  6127. height:22px;
  6128. display:flex;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:16px;
  6133. }
  6134. #u79890 .text {
  6135. position:absolute;
  6136. align-self:flex-start;
  6137. padding:0px 0px 0px 0px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u79890_text {
  6142. border-width:0px;
  6143. white-space:nowrap;
  6144. text-transform:none;
  6145. }
  6146. #u79891_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:65px;
  6152. height:22px;
  6153. background:inherit;
  6154. background-color:rgba(255, 255, 255, 0);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:16px;
  6164. }
  6165. #u79891 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:30px;
  6169. top:978px;
  6170. width:65px;
  6171. height:22px;
  6172. display:flex;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:16px;
  6177. }
  6178. #u79891 .text {
  6179. position:absolute;
  6180. align-self:flex-start;
  6181. padding:0px 0px 0px 0px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u79891_text {
  6186. border-width:0px;
  6187. white-space:nowrap;
  6188. text-transform:none;
  6189. }
  6190. #u79892_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:65px;
  6196. height:22px;
  6197. background:inherit;
  6198. background-color:rgba(255, 255, 255, 0);
  6199. border:none;
  6200. border-radius:0px;
  6201. -moz-box-shadow:none;
  6202. -webkit-box-shadow:none;
  6203. box-shadow:none;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:16px;
  6208. }
  6209. #u79892 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:30px;
  6213. top:622px;
  6214. width:65px;
  6215. height:22px;
  6216. display:flex;
  6217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6218. font-weight:400;
  6219. font-style:normal;
  6220. font-size:16px;
  6221. }
  6222. #u79892 .text {
  6223. position:absolute;
  6224. align-self:flex-start;
  6225. padding:0px 0px 0px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u79892_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u79893 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:0px;
  6240. height:0px;
  6241. }
  6242. #u79894_div {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:700px;
  6248. height:1191px;
  6249. background:inherit;
  6250. background-color:rgba(255, 255, 255, 1);
  6251. box-sizing:border-box;
  6252. border-width:1px;
  6253. border-style:solid;
  6254. border-color:rgba(215, 215, 215, 1);
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. color:#AAAAAA;
  6264. text-align:center;
  6265. line-height:30px;
  6266. }
  6267. #u79894 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:1637px;
  6271. top:50px;
  6272. width:700px;
  6273. height:1191px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:14px;
  6279. color:#AAAAAA;
  6280. text-align:center;
  6281. line-height:30px;
  6282. }
  6283. #u79894 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:5px 10px 5px 10px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u79894_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. visibility:hidden;
  6295. }
  6296. #u79895_div {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:83px;
  6302. height:35px;
  6303. background:inherit;
  6304. background-color:rgba(255, 255, 255, 0);
  6305. border:none;
  6306. border-top:0px;
  6307. border-right:0px;
  6308. border-bottom:0px;
  6309. border-radius:0px;
  6310. border-top-left-radius:0px;
  6311. border-bottom-left-radius:0px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6316. font-weight:500;
  6317. font-style:normal;
  6318. font-size:18px;
  6319. }
  6320. #u79895 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:1658px;
  6324. top:71px;
  6325. width:83px;
  6326. height:35px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6329. font-weight:500;
  6330. font-style:normal;
  6331. font-size:18px;
  6332. }
  6333. #u79895 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:5px 10px 5px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u79895_text {
  6341. border-width:0px;
  6342. white-space:nowrap;
  6343. text-transform:none;
  6344. }
  6345. #u79896 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:0px;
  6351. height:0px;
  6352. }
  6353. #u79897_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:40px;
  6359. height:40px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 0);
  6362. border:none;
  6363. border-top:0px;
  6364. border-right:0px;
  6365. border-bottom:0px;
  6366. border-radius:0px;
  6367. border-top-left-radius:0px;
  6368. border-bottom-left-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6373. font-weight:500;
  6374. font-style:normal;
  6375. font-size:18px;
  6376. text-align:center;
  6377. }
  6378. #u79897 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:2297px;
  6382. top:50px;
  6383. width:40px;
  6384. height:40px;
  6385. display:flex;
  6386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6387. font-weight:500;
  6388. font-style:normal;
  6389. font-size:18px;
  6390. text-align:center;
  6391. }
  6392. #u79897 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:5px 10px 5px 0px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u79897_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. }
  6404. #u79898_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:13px;
  6410. height:13px;
  6411. }
  6412. #u79898 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:2285px;
  6416. top:66px;
  6417. width:13px;
  6418. height:13px;
  6419. display:flex;
  6420. }
  6421. #u79898 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 2px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u79898_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u79899_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:88px;
  6440. height:30px;
  6441. background:inherit;
  6442. background-color:rgba(242, 242, 242, 0);
  6443. border:none;
  6444. border-top:0px;
  6445. border-right:0px;
  6446. border-bottom:0px;
  6447. border-radius:0px;
  6448. border-top-left-radius:0px;
  6449. border-bottom-left-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. text-align:right;
  6458. }
  6459. #u79899 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1673px;
  6463. top:342px;
  6464. width:88px;
  6465. height:30px;
  6466. display:flex;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:14px;
  6471. text-align:right;
  6472. }
  6473. #u79899 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:5px 10px 5px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u79899_text {
  6481. border-width:0px;
  6482. white-space:nowrap;
  6483. text-transform:none;
  6484. }
  6485. #u79900 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:0px;
  6491. height:0px;
  6492. }
  6493. #u79901_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:300px;
  6499. height:40px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 1);
  6502. box-sizing:border-box;
  6503. border-width:1px;
  6504. border-style:solid;
  6505. border-color:rgba(201, 201, 201, 1);
  6506. border-radius:4px;
  6507. -moz-box-shadow:none;
  6508. -webkit-box-shadow:none;
  6509. box-shadow:none;
  6510. font-family:'Microsoft YaHei', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:14px;
  6514. color:#CCCCCC;
  6515. text-align:left;
  6516. }
  6517. #u79901 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:1768px;
  6521. top:337px;
  6522. width:300px;
  6523. height:40px;
  6524. display:flex;
  6525. font-family:'Microsoft YaHei', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:14px;
  6529. color:#CCCCCC;
  6530. text-align:left;
  6531. }
  6532. #u79901 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 8px 2px 8px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u79901_text {
  6540. border-width:0px;
  6541. word-wrap:break-word;
  6542. text-transform:none;
  6543. visibility:hidden;
  6544. }
  6545. #u79902_input {
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:263px;
  6550. height:38px;
  6551. padding:2px 2px 2px 2px;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:14px;
  6556. letter-spacing:normal;
  6557. color:#000000;
  6558. vertical-align:none;
  6559. text-align:left;
  6560. text-transform:none;
  6561. background-color:transparent;
  6562. border-color:transparent;
  6563. }
  6564. #u79902_input.disabled {
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:263px;
  6569. height:38px;
  6570. padding:2px 2px 2px 2px;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:14px;
  6575. letter-spacing:normal;
  6576. color:#000000;
  6577. vertical-align:none;
  6578. text-align:left;
  6579. text-transform:none;
  6580. background-color:transparent;
  6581. border-color:transparent;
  6582. }
  6583. #u79902_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:263px;
  6589. height:38px;
  6590. background:inherit;
  6591. background-color:rgba(255, 255, 255, 1);
  6592. border:none;
  6593. border-radius:0px;
  6594. -moz-box-shadow:none;
  6595. -webkit-box-shadow:none;
  6596. box-shadow:none;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:14px;
  6601. }
  6602. #u79902 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1776px;
  6606. top:338px;
  6607. width:263px;
  6608. height:38px;
  6609. display:flex;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. }
  6615. #u79902 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:2px 2px 2px 2px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u79902_div.disabled {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:263px;
  6628. height:38px;
  6629. background:inherit;
  6630. background-color:rgba(240, 240, 240, 1);
  6631. border:none;
  6632. border-radius:0px;
  6633. -moz-box-shadow:none;
  6634. -webkit-box-shadow:none;
  6635. box-shadow:none;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:14px;
  6640. }
  6641. #u79902.disabled {
  6642. }
  6643. #u79903_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:88px;
  6649. height:30px;
  6650. background:inherit;
  6651. background-color:rgba(242, 242, 242, 0);
  6652. border:none;
  6653. border-top:0px;
  6654. border-right:0px;
  6655. border-bottom:0px;
  6656. border-radius:0px;
  6657. border-top-left-radius:0px;
  6658. border-bottom-left-radius:0px;
  6659. -moz-box-shadow:none;
  6660. -webkit-box-shadow:none;
  6661. box-shadow:none;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. text-align:right;
  6667. }
  6668. #u79903 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:1673px;
  6672. top:237px;
  6673. width:88px;
  6674. height:30px;
  6675. display:flex;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:14px;
  6680. text-align:right;
  6681. }
  6682. #u79903 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:5px 10px 5px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u79903_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u79904 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:0px;
  6700. height:0px;
  6701. }
  6702. #u79905_div {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:700px;
  6708. height:60px;
  6709. background:inherit;
  6710. background-color:rgba(255, 255, 255, 1);
  6711. box-sizing:border-box;
  6712. border-width:1px;
  6713. border-style:solid;
  6714. border-color:rgba(215, 215, 215, 1);
  6715. border-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:14px;
  6723. color:#AAAAAA;
  6724. text-align:center;
  6725. line-height:30px;
  6726. }
  6727. #u79905 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:1637px;
  6731. top:1181px;
  6732. width:700px;
  6733. height:60px;
  6734. display:flex;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:14px;
  6739. color:#AAAAAA;
  6740. text-align:center;
  6741. line-height:30px;
  6742. }
  6743. #u79905 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:5px 10px 5px 10px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u79905_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. visibility:hidden;
  6755. }
  6756. #u79906_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:80px;
  6762. height:30px;
  6763. background:inherit;
  6764. background-color:rgba(24, 144, 255, 1);
  6765. border:none;
  6766. border-radius:4px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#FFFFFF;
  6775. }
  6776. #u79906 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:2212px;
  6780. top:1196px;
  6781. width:80px;
  6782. height:30px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:14px;
  6788. color:#FFFFFF;
  6789. }
  6790. #u79906 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:2px 2px 2px 2px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u79906_text {
  6798. border-width:0px;
  6799. word-wrap:break-word;
  6800. text-transform:none;
  6801. }
  6802. #u79907_div {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:80px;
  6808. height:30px;
  6809. background:inherit;
  6810. background-color:rgba(255, 255, 255, 1);
  6811. box-sizing:border-box;
  6812. border-width:1px;
  6813. border-style:solid;
  6814. border-color:rgba(170, 170, 170, 1);
  6815. border-radius:4px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:14px;
  6823. }
  6824. #u79907 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:2112px;
  6828. top:1196px;
  6829. width:80px;
  6830. height:30px;
  6831. display:flex;
  6832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:14px;
  6836. }
  6837. #u79907 .text {
  6838. position:absolute;
  6839. align-self:center;
  6840. padding:2px 2px 2px 2px;
  6841. box-sizing:border-box;
  6842. width:100%;
  6843. }
  6844. #u79907_text {
  6845. border-width:0px;
  6846. word-wrap:break-word;
  6847. text-transform:none;
  6848. }
  6849. #u79908 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:0px;
  6855. height:0px;
  6856. }
  6857. #u79909_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:300px;
  6863. height:40px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 1);
  6866. box-sizing:border-box;
  6867. border-width:1px;
  6868. border-style:solid;
  6869. border-color:rgba(201, 201, 201, 1);
  6870. border-radius:4px;
  6871. -moz-box-shadow:none;
  6872. -webkit-box-shadow:none;
  6873. box-shadow:none;
  6874. font-family:'Microsoft YaHei', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:14px;
  6878. color:#CCCCCC;
  6879. text-align:left;
  6880. }
  6881. #u79909 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:1768px;
  6885. top:232px;
  6886. width:300px;
  6887. height:40px;
  6888. display:flex;
  6889. font-family:'Microsoft YaHei', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:14px;
  6893. color:#CCCCCC;
  6894. text-align:left;
  6895. }
  6896. #u79909 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:2px 8px 2px 8px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u79909_text {
  6904. border-width:0px;
  6905. word-wrap:break-word;
  6906. text-transform:none;
  6907. visibility:hidden;
  6908. }
  6909. #u79910_input {
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:263px;
  6914. height:38px;
  6915. padding:2px 2px 2px 2px;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. letter-spacing:normal;
  6921. color:#000000;
  6922. vertical-align:none;
  6923. text-align:left;
  6924. text-transform:none;
  6925. background-color:transparent;
  6926. border-color:transparent;
  6927. }
  6928. #u79910_input.disabled {
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:263px;
  6933. height:38px;
  6934. padding:2px 2px 2px 2px;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:14px;
  6939. letter-spacing:normal;
  6940. color:#000000;
  6941. vertical-align:none;
  6942. text-align:left;
  6943. text-transform:none;
  6944. background-color:transparent;
  6945. border-color:transparent;
  6946. }
  6947. #u79910_div {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:263px;
  6953. height:38px;
  6954. background:inherit;
  6955. background-color:rgba(255, 255, 255, 1);
  6956. border:none;
  6957. border-radius:0px;
  6958. -moz-box-shadow:none;
  6959. -webkit-box-shadow:none;
  6960. box-shadow:none;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:14px;
  6965. }
  6966. #u79910 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:1776px;
  6970. top:233px;
  6971. width:263px;
  6972. height:38px;
  6973. display:flex;
  6974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. }
  6979. #u79910 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 2px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u79910_div.disabled {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:263px;
  6992. height:38px;
  6993. background:inherit;
  6994. background-color:rgba(240, 240, 240, 1);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:14px;
  7004. }
  7005. #u79910.disabled {
  7006. }
  7007. #u79911 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:0px;
  7013. height:0px;
  7014. }
  7015. #u79912_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:300px;
  7021. height:60px;
  7022. background:inherit;
  7023. background-color:rgba(255, 255, 255, 1);
  7024. box-sizing:border-box;
  7025. border-width:1px;
  7026. border-style:solid;
  7027. border-color:rgba(201, 201, 201, 1);
  7028. border-radius:4px;
  7029. -moz-box-shadow:none;
  7030. -webkit-box-shadow:none;
  7031. box-shadow:none;
  7032. font-family:'Microsoft YaHei', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:14px;
  7036. color:#CCCCCC;
  7037. text-align:left;
  7038. }
  7039. #u79912 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:1768px;
  7043. top:387px;
  7044. width:300px;
  7045. height:60px;
  7046. display:flex;
  7047. font-family:'Microsoft YaHei', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:14px;
  7051. color:#CCCCCC;
  7052. text-align:left;
  7053. }
  7054. #u79912 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:2px 8px 2px 8px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u79912_text {
  7062. border-width:0px;
  7063. word-wrap:break-word;
  7064. text-transform:none;
  7065. visibility:hidden;
  7066. }
  7067. #u79913_input {
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:285px;
  7072. height:57px;
  7073. padding:2px 2px 2px 2px;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:14px;
  7078. letter-spacing:normal;
  7079. color:#000000;
  7080. vertical-align:none;
  7081. text-align:left;
  7082. text-transform:none;
  7083. background-color:transparent;
  7084. border-color:transparent;
  7085. }
  7086. #u79913_input.disabled {
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:285px;
  7091. height:57px;
  7092. padding:2px 2px 2px 2px;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:14px;
  7097. letter-spacing:normal;
  7098. color:#000000;
  7099. vertical-align:none;
  7100. text-align:left;
  7101. text-transform:none;
  7102. background-color:transparent;
  7103. border-color:transparent;
  7104. }
  7105. #u79913_div {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:285px;
  7111. height:57px;
  7112. background:inherit;
  7113. background-color:rgba(255, 255, 255, 1);
  7114. border:none;
  7115. border-radius:0px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:14px;
  7123. }
  7124. #u79913 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:1776px;
  7128. top:389px;
  7129. width:285px;
  7130. height:57px;
  7131. display:flex;
  7132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:14px;
  7136. }
  7137. #u79913 .text {
  7138. position:absolute;
  7139. align-self:center;
  7140. padding:2px 2px 2px 2px;
  7141. box-sizing:border-box;
  7142. width:100%;
  7143. }
  7144. #u79913_div.disabled {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:285px;
  7150. height:57px;
  7151. background:inherit;
  7152. background-color:rgba(240, 240, 240, 1);
  7153. border:none;
  7154. border-radius:0px;
  7155. -moz-box-shadow:none;
  7156. -webkit-box-shadow:none;
  7157. box-shadow:none;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:14px;
  7162. }
  7163. #u79913.disabled {
  7164. }
  7165. #u79914_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:81px;
  7171. height:30px;
  7172. background:inherit;
  7173. background-color:rgba(242, 242, 242, 0);
  7174. border:none;
  7175. border-top:0px;
  7176. border-right:0px;
  7177. border-bottom:0px;
  7178. border-radius:0px;
  7179. border-top-left-radius:0px;
  7180. border-bottom-left-radius:0px;
  7181. -moz-box-shadow:none;
  7182. -webkit-box-shadow:none;
  7183. box-shadow:none;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:14px;
  7188. text-align:right;
  7189. }
  7190. #u79914 {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:1681px;
  7194. top:389px;
  7195. width:81px;
  7196. height:30px;
  7197. display:flex;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:14px;
  7202. text-align:right;
  7203. }
  7204. #u79914 .text {
  7205. position:absolute;
  7206. align-self:center;
  7207. padding:5px 10px 5px 0px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u79914_text {
  7212. border-width:0px;
  7213. white-space:nowrap;
  7214. text-transform:none;
  7215. }
  7216. #u79915_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:88px;
  7222. height:30px;
  7223. background:inherit;
  7224. background-color:rgba(242, 242, 242, 0);
  7225. border:none;
  7226. border-top:0px;
  7227. border-right:0px;
  7228. border-bottom:0px;
  7229. border-radius:0px;
  7230. border-top-left-radius:0px;
  7231. border-bottom-left-radius:0px;
  7232. -moz-box-shadow:none;
  7233. -webkit-box-shadow:none;
  7234. box-shadow:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:14px;
  7239. text-align:right;
  7240. }
  7241. #u79915 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:1674px;
  7245. top:136px;
  7246. width:88px;
  7247. height:30px;
  7248. display:flex;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:14px;
  7253. text-align:right;
  7254. }
  7255. #u79915 .text {
  7256. position:absolute;
  7257. align-self:center;
  7258. padding:5px 10px 5px 0px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u79915_text {
  7263. border-width:0px;
  7264. white-space:nowrap;
  7265. text-transform:none;
  7266. }
  7267. #u79916 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:0px;
  7273. height:0px;
  7274. }
  7275. #u79917_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:300px;
  7281. height:40px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 1);
  7284. box-sizing:border-box;
  7285. border-width:1px;
  7286. border-style:solid;
  7287. border-color:rgba(215, 215, 215, 1);
  7288. border-radius:4px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-size:11px;
  7293. }
  7294. #u79917 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:1768px;
  7298. top:132px;
  7299. width:300px;
  7300. height:40px;
  7301. display:flex;
  7302. font-size:11px;
  7303. }
  7304. #u79917 .text {
  7305. position:absolute;
  7306. align-self:center;
  7307. padding:2px 2px 2px 2px;
  7308. box-sizing:border-box;
  7309. width:100%;
  7310. }
  7311. #u79917_text {
  7312. border-width:0px;
  7313. word-wrap:break-word;
  7314. text-transform:none;
  7315. visibility:hidden;
  7316. }
  7317. #u79918_input {
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:286px;
  7322. height:31px;
  7323. padding:2px 2px 2px 2px;
  7324. font-family:'ArialMT', 'Arial', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:11px;
  7328. letter-spacing:normal;
  7329. color:#AAAAAA;
  7330. vertical-align:none;
  7331. text-align:left;
  7332. text-transform:none;
  7333. background-color:transparent;
  7334. border-color:transparent;
  7335. }
  7336. #u79918_input.disabled {
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:286px;
  7341. height:31px;
  7342. padding:2px 2px 2px 2px;
  7343. font-family:'ArialMT', 'Arial', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:11px;
  7347. letter-spacing:normal;
  7348. color:#AAAAAA;
  7349. vertical-align:none;
  7350. text-align:left;
  7351. text-transform:none;
  7352. background-color:transparent;
  7353. border-color:transparent;
  7354. }
  7355. #u79918_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:286px;
  7361. height:31px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 1);
  7364. border:none;
  7365. border-radius:0px;
  7366. -moz-box-shadow:none;
  7367. -webkit-box-shadow:none;
  7368. box-shadow:none;
  7369. font-size:11px;
  7370. color:#AAAAAA;
  7371. }
  7372. #u79918 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:1775px;
  7376. top:135px;
  7377. width:286px;
  7378. height:31px;
  7379. display:flex;
  7380. font-size:11px;
  7381. color:#AAAAAA;
  7382. }
  7383. #u79918 .text {
  7384. position:absolute;
  7385. align-self:flex-start;
  7386. padding:2px 2px 2px 2px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u79918_div.disabled {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:286px;
  7396. height:31px;
  7397. background:inherit;
  7398. background-color:rgba(240, 240, 240, 1);
  7399. border:none;
  7400. border-radius:0px;
  7401. -moz-box-shadow:none;
  7402. -webkit-box-shadow:none;
  7403. box-shadow:none;
  7404. font-size:11px;
  7405. color:#AAAAAA;
  7406. }
  7407. #u79918.disabled {
  7408. }
  7409. .u79918_input_option {
  7410. font-size:11px;
  7411. }
  7412. #u79919_div {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:88px;
  7418. height:30px;
  7419. background:inherit;
  7420. background-color:rgba(242, 242, 242, 0);
  7421. border:none;
  7422. border-top:0px;
  7423. border-right:0px;
  7424. border-bottom:0px;
  7425. border-radius:0px;
  7426. border-top-left-radius:0px;
  7427. border-bottom-left-radius:0px;
  7428. -moz-box-shadow:none;
  7429. -webkit-box-shadow:none;
  7430. box-shadow:none;
  7431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7432. font-weight:400;
  7433. font-style:normal;
  7434. font-size:14px;
  7435. text-align:right;
  7436. }
  7437. #u79919 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:1674px;
  7441. top:186px;
  7442. width:88px;
  7443. height:30px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:14px;
  7449. text-align:right;
  7450. }
  7451. #u79919 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:5px 10px 5px 0px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u79919_text {
  7459. border-width:0px;
  7460. white-space:nowrap;
  7461. text-transform:none;
  7462. }
  7463. #u79920 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:0px;
  7469. height:0px;
  7470. }
  7471. #u79921_div {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:300px;
  7477. height:40px;
  7478. background:inherit;
  7479. background-color:rgba(255, 255, 255, 1);
  7480. box-sizing:border-box;
  7481. border-width:1px;
  7482. border-style:solid;
  7483. border-color:rgba(215, 215, 215, 1);
  7484. border-radius:4px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-size:11px;
  7489. }
  7490. #u79921 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:1768px;
  7494. top:182px;
  7495. width:300px;
  7496. height:40px;
  7497. display:flex;
  7498. font-size:11px;
  7499. }
  7500. #u79921 .text {
  7501. position:absolute;
  7502. align-self:center;
  7503. padding:2px 2px 2px 2px;
  7504. box-sizing:border-box;
  7505. width:100%;
  7506. }
  7507. #u79921_text {
  7508. border-width:0px;
  7509. word-wrap:break-word;
  7510. text-transform:none;
  7511. visibility:hidden;
  7512. }
  7513. #u79922_input {
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:286px;
  7518. height:31px;
  7519. padding:2px 2px 2px 2px;
  7520. font-family:'ArialMT', 'Arial', sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:11px;
  7524. letter-spacing:normal;
  7525. color:#AAAAAA;
  7526. vertical-align:none;
  7527. text-align:left;
  7528. text-transform:none;
  7529. background-color:transparent;
  7530. border-color:transparent;
  7531. }
  7532. #u79922_input.disabled {
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:286px;
  7537. height:31px;
  7538. padding:2px 2px 2px 2px;
  7539. font-family:'ArialMT', 'Arial', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:11px;
  7543. letter-spacing:normal;
  7544. color:#AAAAAA;
  7545. vertical-align:none;
  7546. text-align:left;
  7547. text-transform:none;
  7548. background-color:transparent;
  7549. border-color:transparent;
  7550. }
  7551. #u79922_div {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:286px;
  7557. height:31px;
  7558. background:inherit;
  7559. background-color:rgba(255, 255, 255, 1);
  7560. border:none;
  7561. border-radius:0px;
  7562. -moz-box-shadow:none;
  7563. -webkit-box-shadow:none;
  7564. box-shadow:none;
  7565. font-size:11px;
  7566. color:#AAAAAA;
  7567. }
  7568. #u79922 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:1775px;
  7572. top:185px;
  7573. width:286px;
  7574. height:31px;
  7575. display:flex;
  7576. font-size:11px;
  7577. color:#AAAAAA;
  7578. }
  7579. #u79922 .text {
  7580. position:absolute;
  7581. align-self:flex-start;
  7582. padding:2px 2px 2px 2px;
  7583. box-sizing:border-box;
  7584. width:100%;
  7585. }
  7586. #u79922_div.disabled {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:286px;
  7592. height:31px;
  7593. background:inherit;
  7594. background-color:rgba(240, 240, 240, 1);
  7595. border:none;
  7596. border-radius:0px;
  7597. -moz-box-shadow:none;
  7598. -webkit-box-shadow:none;
  7599. box-shadow:none;
  7600. font-size:11px;
  7601. color:#AAAAAA;
  7602. }
  7603. #u79922.disabled {
  7604. }
  7605. .u79922_input_option {
  7606. font-size:11px;
  7607. }
  7608. #u79923_div {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:88px;
  7614. height:30px;
  7615. background:inherit;
  7616. background-color:rgba(242, 242, 242, 0);
  7617. border:none;
  7618. border-top:0px;
  7619. border-right:0px;
  7620. border-bottom:0px;
  7621. border-radius:0px;
  7622. border-top-left-radius:0px;
  7623. border-bottom-left-radius:0px;
  7624. -moz-box-shadow:none;
  7625. -webkit-box-shadow:none;
  7626. box-shadow:none;
  7627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7628. font-weight:400;
  7629. font-style:normal;
  7630. font-size:14px;
  7631. text-align:right;
  7632. }
  7633. #u79923 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:1673px;
  7637. top:287px;
  7638. width:88px;
  7639. height:30px;
  7640. display:flex;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. text-align:right;
  7646. }
  7647. #u79923 .text {
  7648. position:absolute;
  7649. align-self:center;
  7650. padding:5px 10px 5px 0px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u79923_text {
  7655. border-width:0px;
  7656. white-space:nowrap;
  7657. text-transform:none;
  7658. }
  7659. #u79924 {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:0px;
  7665. height:0px;
  7666. }
  7667. #u79925_div {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:300px;
  7673. height:40px;
  7674. background:inherit;
  7675. background-color:rgba(255, 255, 255, 1);
  7676. box-sizing:border-box;
  7677. border-width:1px;
  7678. border-style:solid;
  7679. border-color:rgba(215, 215, 215, 1);
  7680. border-radius:4px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-size:11px;
  7685. }
  7686. #u79925 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:1768px;
  7690. top:287px;
  7691. width:300px;
  7692. height:40px;
  7693. display:flex;
  7694. font-size:11px;
  7695. }
  7696. #u79925 .text {
  7697. position:absolute;
  7698. align-self:center;
  7699. padding:2px 2px 2px 2px;
  7700. box-sizing:border-box;
  7701. width:100%;
  7702. }
  7703. #u79925_text {
  7704. border-width:0px;
  7705. word-wrap:break-word;
  7706. text-transform:none;
  7707. visibility:hidden;
  7708. }
  7709. #u79926_input {
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:286px;
  7714. height:31px;
  7715. padding:2px 2px 2px 2px;
  7716. font-family:'ArialMT', 'Arial', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:11px;
  7720. letter-spacing:normal;
  7721. color:#AAAAAA;
  7722. vertical-align:none;
  7723. text-align:left;
  7724. text-transform:none;
  7725. background-color:transparent;
  7726. border-color:transparent;
  7727. }
  7728. #u79926_input.disabled {
  7729. position:absolute;
  7730. left:0px;
  7731. top:0px;
  7732. width:286px;
  7733. height:31px;
  7734. padding:2px 2px 2px 2px;
  7735. font-family:'ArialMT', 'Arial', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:11px;
  7739. letter-spacing:normal;
  7740. color:#AAAAAA;
  7741. vertical-align:none;
  7742. text-align:left;
  7743. text-transform:none;
  7744. background-color:transparent;
  7745. border-color:transparent;
  7746. }
  7747. #u79926_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:286px;
  7753. height:31px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 1);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-size:11px;
  7762. color:#AAAAAA;
  7763. }
  7764. #u79926 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:1775px;
  7768. top:290px;
  7769. width:286px;
  7770. height:31px;
  7771. display:flex;
  7772. font-size:11px;
  7773. color:#AAAAAA;
  7774. }
  7775. #u79926 .text {
  7776. position:absolute;
  7777. align-self:flex-start;
  7778. padding:2px 2px 2px 2px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u79926_div.disabled {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:286px;
  7788. height:31px;
  7789. background:inherit;
  7790. background-color:rgba(240, 240, 240, 1);
  7791. border:none;
  7792. border-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-size:11px;
  7797. color:#AAAAAA;
  7798. }
  7799. #u79926.disabled {
  7800. }
  7801. .u79926_input_option {
  7802. font-size:11px;
  7803. }
  7804. #u79927 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:0px;
  7810. height:0px;
  7811. }
  7812. #u79928_div {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:500px;
  7818. height:514px;
  7819. background:inherit;
  7820. background-color:rgba(255, 255, 255, 1);
  7821. box-sizing:border-box;
  7822. border-width:1px;
  7823. border-style:solid;
  7824. border-color:rgba(215, 215, 215, 1);
  7825. border-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:14px;
  7833. color:#AAAAAA;
  7834. text-align:center;
  7835. line-height:30px;
  7836. }
  7837. #u79928 {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:1418px;
  7841. top:527px;
  7842. width:500px;
  7843. height:514px;
  7844. display:flex;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:14px;
  7849. color:#AAAAAA;
  7850. text-align:center;
  7851. line-height:30px;
  7852. }
  7853. #u79928 .text {
  7854. position:absolute;
  7855. align-self:center;
  7856. padding:5px 10px 5px 10px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u79928_text {
  7861. border-width:0px;
  7862. word-wrap:break-word;
  7863. text-transform:none;
  7864. visibility:hidden;
  7865. }
  7866. #u79929_div {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:0px;
  7870. top:0px;
  7871. width:83px;
  7872. height:35px;
  7873. background:inherit;
  7874. background-color:rgba(255, 255, 255, 0);
  7875. border:none;
  7876. border-top:0px;
  7877. border-right:0px;
  7878. border-bottom:0px;
  7879. border-radius:0px;
  7880. border-top-left-radius:0px;
  7881. border-bottom-left-radius:0px;
  7882. -moz-box-shadow:none;
  7883. -webkit-box-shadow:none;
  7884. box-shadow:none;
  7885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7886. font-weight:500;
  7887. font-style:normal;
  7888. font-size:18px;
  7889. }
  7890. #u79929 {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:1438px;
  7894. top:545px;
  7895. width:83px;
  7896. height:35px;
  7897. display:flex;
  7898. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7899. font-weight:500;
  7900. font-style:normal;
  7901. font-size:18px;
  7902. }
  7903. #u79929 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:5px 10px 5px 0px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u79929_text {
  7911. border-width:0px;
  7912. white-space:nowrap;
  7913. text-transform:none;
  7914. }
  7915. #u79930 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:0px;
  7921. height:0px;
  7922. }
  7923. #u79931_div {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:500px;
  7929. height:60px;
  7930. background:inherit;
  7931. background-color:rgba(255, 255, 255, 1);
  7932. box-sizing:border-box;
  7933. border-width:1px;
  7934. border-style:solid;
  7935. border-color:rgba(215, 215, 215, 1);
  7936. border-radius:0px;
  7937. -moz-box-shadow:none;
  7938. -webkit-box-shadow:none;
  7939. box-shadow:none;
  7940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:14px;
  7944. color:#AAAAAA;
  7945. text-align:center;
  7946. line-height:30px;
  7947. }
  7948. #u79931 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:1418px;
  7952. top:981px;
  7953. width:500px;
  7954. height:60px;
  7955. display:flex;
  7956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:14px;
  7960. color:#AAAAAA;
  7961. text-align:center;
  7962. line-height:30px;
  7963. }
  7964. #u79931 .text {
  7965. position:absolute;
  7966. align-self:center;
  7967. padding:5px 10px 5px 10px;
  7968. box-sizing:border-box;
  7969. width:100%;
  7970. }
  7971. #u79931_text {
  7972. border-width:0px;
  7973. word-wrap:break-word;
  7974. text-transform:none;
  7975. visibility:hidden;
  7976. }
  7977. #u79932_div {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:60px;
  7983. height:30px;
  7984. background:inherit;
  7985. background-color:rgba(24, 144, 255, 1);
  7986. border:none;
  7987. border-radius:4px;
  7988. -moz-box-shadow:none;
  7989. -webkit-box-shadow:none;
  7990. box-shadow:none;
  7991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7992. font-weight:400;
  7993. font-style:normal;
  7994. font-size:14px;
  7995. color:#FFFFFF;
  7996. }
  7997. #u79932 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:1838px;
  8001. top:996px;
  8002. width:60px;
  8003. height:30px;
  8004. display:flex;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:14px;
  8009. color:#FFFFFF;
  8010. }
  8011. #u79932 .text {
  8012. position:absolute;
  8013. align-self:center;
  8014. padding:2px 2px 2px 2px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u79932_text {
  8019. border-width:0px;
  8020. word-wrap:break-word;
  8021. text-transform:none;
  8022. }
  8023. #u79933_div {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:60px;
  8029. height:30px;
  8030. background:inherit;
  8031. background-color:rgba(255, 255, 255, 1);
  8032. box-sizing:border-box;
  8033. border-width:1px;
  8034. border-style:solid;
  8035. border-color:rgba(170, 170, 170, 1);
  8036. border-radius:4px;
  8037. -moz-box-shadow:none;
  8038. -webkit-box-shadow:none;
  8039. box-shadow:none;
  8040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. font-size:14px;
  8044. }
  8045. #u79933 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:1768px;
  8049. top:996px;
  8050. width:60px;
  8051. height:30px;
  8052. display:flex;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:14px;
  8057. }
  8058. #u79933 .text {
  8059. position:absolute;
  8060. align-self:center;
  8061. padding:2px 2px 2px 2px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u79933_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. }
  8070. #u79934_div {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:462px;
  8076. height:27px;
  8077. background:inherit;
  8078. background-color:rgba(255, 255, 128, 0.2);
  8079. border:none;
  8080. border-top:0px;
  8081. border-right:0px;
  8082. border-bottom:0px;
  8083. border-radius:0px;
  8084. border-top-left-radius:0px;
  8085. border-bottom-left-radius:0px;
  8086. -moz-box-shadow:none;
  8087. -webkit-box-shadow:none;
  8088. box-shadow:none;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:12px;
  8093. color:#F59A23;
  8094. }
  8095. #u79934 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:1441px;
  8099. top:596px;
  8100. width:462px;
  8101. height:27px;
  8102. display:flex;
  8103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8104. font-weight:400;
  8105. font-style:normal;
  8106. font-size:12px;
  8107. color:#F59A23;
  8108. }
  8109. #u79934 .text {
  8110. position:absolute;
  8111. align-self:center;
  8112. padding:5px 0px 5px 5px;
  8113. box-sizing:border-box;
  8114. width:100%;
  8115. }
  8116. #u79934_text {
  8117. border-width:0px;
  8118. white-space:nowrap;
  8119. text-transform:none;
  8120. }
  8121. #u79935_img {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:10px;
  8127. height:8px;
  8128. }
  8129. #u79935 {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:1869px;
  8133. top:669px;
  8134. width:10px;
  8135. height:8px;
  8136. display:flex;
  8137. }
  8138. #u79935 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:2px 2px 2px 2px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u79935_text {
  8146. border-width:0px;
  8147. word-wrap:break-word;
  8148. text-transform:none;
  8149. visibility:hidden;
  8150. }
  8151. #u79936_img {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:10px;
  8157. height:8px;
  8158. }
  8159. #u79936 {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:1869px;
  8163. top:699px;
  8164. width:10px;
  8165. height:8px;
  8166. display:flex;
  8167. }
  8168. #u79936 .text {
  8169. position:absolute;
  8170. align-self:center;
  8171. padding:2px 2px 2px 2px;
  8172. box-sizing:border-box;
  8173. width:100%;
  8174. }
  8175. #u79936_text {
  8176. border-width:0px;
  8177. word-wrap:break-word;
  8178. text-transform:none;
  8179. visibility:hidden;
  8180. }
  8181. #u79937_img {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:10px;
  8187. height:8px;
  8188. }
  8189. #u79937 {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:1869px;
  8193. top:724px;
  8194. width:10px;
  8195. height:8px;
  8196. display:flex;
  8197. }
  8198. #u79937 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u79937_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u79938_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:21px;
  8217. height:35px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 0);
  8220. border:none;
  8221. border-top:0px;
  8222. border-right:0px;
  8223. border-bottom:0px;
  8224. border-radius:0px;
  8225. border-top-left-radius:0px;
  8226. border-bottom-left-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8231. font-weight:500;
  8232. font-style:normal;
  8233. font-size:18px;
  8234. }
  8235. #u79938 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:1897px;
  8239. top:527px;
  8240. width:21px;
  8241. height:35px;
  8242. display:flex;
  8243. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8244. font-weight:500;
  8245. font-style:normal;
  8246. font-size:18px;
  8247. }
  8248. #u79938 .text {
  8249. position:absolute;
  8250. align-self:center;
  8251. padding:5px 10px 5px 0px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u79938_text {
  8256. border-width:0px;
  8257. white-space:nowrap;
  8258. text-transform:none;
  8259. }
  8260. #u79939_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:81px;
  8266. height:100px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. border:none;
  8270. border-top:0px;
  8271. border-right:0px;
  8272. border-bottom:0px;
  8273. border-radius:0px;
  8274. border-top-left-radius:0px;
  8275. border-bottom-left-radius:0px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:14px;
  8283. line-height:30px;
  8284. }
  8285. #u79939 {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:1461px;
  8289. top:647px;
  8290. width:81px;
  8291. height:100px;
  8292. display:flex;
  8293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8294. font-weight:400;
  8295. font-style:normal;
  8296. font-size:14px;
  8297. line-height:30px;
  8298. }
  8299. #u79939 .text {
  8300. position:absolute;
  8301. align-self:flex-start;
  8302. padding:5px 10px 5px 0px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u79939_text {
  8307. border-width:0px;
  8308. white-space:nowrap;
  8309. text-transform:none;
  8310. }
  8311. #u79940 {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:0px;
  8317. height:0px;
  8318. }
  8319. #u79941_div {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:59px;
  8325. height:30px;
  8326. background:inherit;
  8327. background-color:rgba(24, 144, 255, 1);
  8328. box-sizing:border-box;
  8329. border-width:1px;
  8330. border-style:solid;
  8331. border-color:rgba(0, 153, 255, 1);
  8332. border-radius:4px;
  8333. -moz-box-shadow:none;
  8334. -webkit-box-shadow:none;
  8335. box-shadow:none;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:14px;
  8340. color:#FFFFFF;
  8341. }
  8342. #u79941 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:350px;
  8346. top:160px;
  8347. width:59px;
  8348. height:30px;
  8349. display:flex;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:14px;
  8354. color:#FFFFFF;
  8355. }
  8356. #u79941 .text {
  8357. position:absolute;
  8358. align-self:center;
  8359. padding:5px 15px 5px 15px;
  8360. box-sizing:border-box;
  8361. width:100%;
  8362. }
  8363. #u79941_text {
  8364. border-width:0px;
  8365. white-space:nowrap;
  8366. text-transform:none;
  8367. }
  8368. #u79942_div {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:55px;
  8374. height:30px;
  8375. background:inherit;
  8376. background-color:rgba(255, 255, 255, 1);
  8377. box-sizing:border-box;
  8378. border-width:1px;
  8379. border-style:solid;
  8380. border-color:rgba(170, 170, 170, 1);
  8381. border-radius:4px;
  8382. -moz-box-shadow:none;
  8383. -webkit-box-shadow:none;
  8384. box-shadow:none;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:12px;
  8389. color:#555555;
  8390. }
  8391. #u79942 {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:419px;
  8395. top:160px;
  8396. width:55px;
  8397. height:30px;
  8398. display:flex;
  8399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8400. font-weight:400;
  8401. font-style:normal;
  8402. font-size:12px;
  8403. color:#555555;
  8404. }
  8405. #u79942 .text {
  8406. position:absolute;
  8407. align-self:center;
  8408. padding:5px 15px 5px 15px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u79942_text {
  8413. border-width:0px;
  8414. white-space:nowrap;
  8415. text-transform:none;
  8416. }
  8417. #u79943 {
  8418. border-width:0px;
  8419. position:absolute;
  8420. left:0px;
  8421. top:0px;
  8422. width:0px;
  8423. height:0px;
  8424. }
  8425. #u79944_div {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:800px;
  8431. height:514px;
  8432. background:inherit;
  8433. background-color:rgba(255, 255, 255, 1);
  8434. box-sizing:border-box;
  8435. border-width:1px;
  8436. border-style:solid;
  8437. border-color:rgba(215, 215, 215, 1);
  8438. border-radius:0px;
  8439. -moz-box-shadow:none;
  8440. -webkit-box-shadow:none;
  8441. box-shadow:none;
  8442. }
  8443. #u79944 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:447px;
  8447. top:610px;
  8448. width:800px;
  8449. height:514px;
  8450. display:flex;
  8451. }
  8452. #u79944 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 2px 2px 2px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u79944_text {
  8460. border-width:0px;
  8461. word-wrap:break-word;
  8462. text-transform:none;
  8463. visibility:hidden;
  8464. }
  8465. #u79945_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:73px;
  8471. height:30px;
  8472. background:inherit;
  8473. background-color:rgba(255, 255, 255, 0);
  8474. border:none;
  8475. border-radius:0px;
  8476. -moz-box-shadow:none;
  8477. -webkit-box-shadow:none;
  8478. box-shadow:none;
  8479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8480. font-weight:400;
  8481. font-style:normal;
  8482. font-size:18px;
  8483. color:#000000;
  8484. line-height:30px;
  8485. }
  8486. #u79945 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:467px;
  8490. top:630px;
  8491. width:73px;
  8492. height:30px;
  8493. display:flex;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:18px;
  8498. color:#000000;
  8499. line-height:30px;
  8500. }
  8501. #u79945 .text {
  8502. position:absolute;
  8503. align-self:flex-start;
  8504. padding:0px 0px 0px 0px;
  8505. box-sizing:border-box;
  8506. width:100%;
  8507. }
  8508. #u79945_text {
  8509. border-width:0px;
  8510. white-space:nowrap;
  8511. text-transform:none;
  8512. }
  8513. #u79946 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:0px;
  8517. top:0px;
  8518. width:0px;
  8519. height:0px;
  8520. }
  8521. #u79947_div {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:40px;
  8527. height:40px;
  8528. background:inherit;
  8529. background-color:rgba(255, 255, 255, 0);
  8530. border:none;
  8531. border-top:0px;
  8532. border-right:0px;
  8533. border-bottom:0px;
  8534. border-radius:0px;
  8535. border-top-left-radius:0px;
  8536. border-bottom-left-radius:0px;
  8537. -moz-box-shadow:none;
  8538. -webkit-box-shadow:none;
  8539. box-shadow:none;
  8540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8541. font-weight:500;
  8542. font-style:normal;
  8543. font-size:18px;
  8544. text-align:center;
  8545. }
  8546. #u79947 {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:1207px;
  8550. top:610px;
  8551. width:40px;
  8552. height:40px;
  8553. display:flex;
  8554. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8555. font-weight:500;
  8556. font-style:normal;
  8557. font-size:18px;
  8558. text-align:center;
  8559. }
  8560. #u79947 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:5px 10px 5px 0px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u79947_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. }
  8572. #u79948_img {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:0px;
  8576. top:0px;
  8577. width:13px;
  8578. height:17px;
  8579. }
  8580. #u79948 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:1194px;
  8584. top:622px;
  8585. width:13px;
  8586. height:17px;
  8587. display:flex;
  8588. }
  8589. #u79948 .text {
  8590. position:absolute;
  8591. align-self:center;
  8592. padding:2px 2px 2px 2px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u79948_text {
  8597. border-width:0px;
  8598. word-wrap:break-word;
  8599. text-transform:none;
  8600. visibility:hidden;
  8601. }
  8602. #u79949 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:0px;
  8606. top:0px;
  8607. width:0px;
  8608. height:0px;
  8609. }
  8610. #u79950_div {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:800px;
  8616. height:60px;
  8617. background:inherit;
  8618. background-color:rgba(255, 255, 255, 1);
  8619. box-sizing:border-box;
  8620. border-width:1px;
  8621. border-style:solid;
  8622. border-color:rgba(215, 215, 215, 1);
  8623. border-radius:0px;
  8624. -moz-box-shadow:none;
  8625. -webkit-box-shadow:none;
  8626. box-shadow:none;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:14px;
  8631. color:#AAAAAA;
  8632. text-align:center;
  8633. line-height:30px;
  8634. }
  8635. #u79950 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:447px;
  8639. top:1064px;
  8640. width:800px;
  8641. height:60px;
  8642. display:flex;
  8643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8644. font-weight:400;
  8645. font-style:normal;
  8646. font-size:14px;
  8647. color:#AAAAAA;
  8648. text-align:center;
  8649. line-height:30px;
  8650. }
  8651. #u79950 .text {
  8652. position:absolute;
  8653. align-self:center;
  8654. padding:5px 10px 5px 10px;
  8655. box-sizing:border-box;
  8656. width:100%;
  8657. }
  8658. #u79950_text {
  8659. border-width:0px;
  8660. word-wrap:break-word;
  8661. text-transform:none;
  8662. visibility:hidden;
  8663. }
  8664. #u79951_div {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:80px;
  8670. height:30px;
  8671. background:inherit;
  8672. background-color:rgba(24, 144, 255, 1);
  8673. border:none;
  8674. border-radius:4px;
  8675. -moz-box-shadow:none;
  8676. -webkit-box-shadow:none;
  8677. box-shadow:none;
  8678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8679. font-weight:400;
  8680. font-style:normal;
  8681. font-size:14px;
  8682. color:#FFFFFF;
  8683. }
  8684. #u79951 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:1122px;
  8688. top:1079px;
  8689. width:80px;
  8690. height:30px;
  8691. display:flex;
  8692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:14px;
  8696. color:#FFFFFF;
  8697. }
  8698. #u79951 .text {
  8699. position:absolute;
  8700. align-self:center;
  8701. padding:2px 2px 2px 2px;
  8702. box-sizing:border-box;
  8703. width:100%;
  8704. }
  8705. #u79951_text {
  8706. border-width:0px;
  8707. word-wrap:break-word;
  8708. text-transform:none;
  8709. }
  8710. #u79952_div {
  8711. border-width:0px;
  8712. position:absolute;
  8713. left:0px;
  8714. top:0px;
  8715. width:80px;
  8716. height:30px;
  8717. background:inherit;
  8718. background-color:rgba(255, 255, 255, 1);
  8719. box-sizing:border-box;
  8720. border-width:1px;
  8721. border-style:solid;
  8722. border-color:rgba(170, 170, 170, 1);
  8723. border-radius:4px;
  8724. -moz-box-shadow:none;
  8725. -webkit-box-shadow:none;
  8726. box-shadow:none;
  8727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. font-size:14px;
  8731. }
  8732. #u79952 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:1023px;
  8736. top:1079px;
  8737. width:80px;
  8738. height:30px;
  8739. display:flex;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:14px;
  8744. }
  8745. #u79952 .text {
  8746. position:absolute;
  8747. align-self:center;
  8748. padding:2px 2px 2px 2px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u79952_text {
  8753. border-width:0px;
  8754. word-wrap:break-word;
  8755. text-transform:none;
  8756. }
  8757. #u79953 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:478px;
  8761. top:735px;
  8762. width:362px;
  8763. height:210px;
  8764. }
  8765. #u79954_img {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:36px;
  8771. height:40px;
  8772. }
  8773. #u79954 {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:36px;
  8779. height:40px;
  8780. display:flex;
  8781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8782. font-weight:400;
  8783. font-style:normal;
  8784. color:#FFFFFF;
  8785. }
  8786. #u79954 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:2px 2px 2px 2px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u79954_text {
  8794. border-width:0px;
  8795. word-wrap:break-word;
  8796. text-transform:none;
  8797. }
  8798. #u79955_img {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:128px;
  8804. height:40px;
  8805. }
  8806. #u79955 {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:36px;
  8810. top:0px;
  8811. width:128px;
  8812. height:40px;
  8813. display:flex;
  8814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8815. font-weight:400;
  8816. font-style:normal;
  8817. color:#FFFFFF;
  8818. }
  8819. #u79955 .text {
  8820. position:absolute;
  8821. align-self:center;
  8822. padding:2px 2px 2px 2px;
  8823. box-sizing:border-box;
  8824. width:100%;
  8825. }
  8826. #u79955_text {
  8827. border-width:0px;
  8828. word-wrap:break-word;
  8829. text-transform:none;
  8830. }
  8831. #u79956_img {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:0px;
  8835. top:0px;
  8836. width:108px;
  8837. height:40px;
  8838. }
  8839. #u79956 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:164px;
  8843. top:0px;
  8844. width:108px;
  8845. height:40px;
  8846. display:flex;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. color:#FFFFFF;
  8851. }
  8852. #u79956 .text {
  8853. position:absolute;
  8854. align-self:center;
  8855. padding:2px 2px 2px 2px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u79956_text {
  8860. border-width:0px;
  8861. word-wrap:break-word;
  8862. text-transform:none;
  8863. }
  8864. #u79957_img {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:90px;
  8870. height:40px;
  8871. }
  8872. #u79957 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:272px;
  8876. top:0px;
  8877. width:90px;
  8878. height:40px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. color:#FFFFFF;
  8884. }
  8885. #u79957 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 2px 2px 2px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u79957_text {
  8893. border-width:0px;
  8894. word-wrap:break-word;
  8895. text-transform:none;
  8896. }
  8897. #u79958_img {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:36px;
  8903. height:30px;
  8904. }
  8905. #u79958 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:40px;
  8910. width:36px;
  8911. height:30px;
  8912. display:flex;
  8913. }
  8914. #u79958 .text {
  8915. position:absolute;
  8916. align-self:center;
  8917. padding:2px 2px 2px 2px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u79958_text {
  8922. border-width:0px;
  8923. word-wrap:break-word;
  8924. text-transform:none;
  8925. visibility:hidden;
  8926. }
  8927. #u79959_img {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:0px;
  8931. top:0px;
  8932. width:128px;
  8933. height:30px;
  8934. }
  8935. #u79959 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:36px;
  8939. top:40px;
  8940. width:128px;
  8941. height:30px;
  8942. display:flex;
  8943. }
  8944. #u79959 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:2px 2px 2px 2px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u79959_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. visibility:hidden;
  8956. }
  8957. #u79960_img {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:0px;
  8961. top:0px;
  8962. width:108px;
  8963. height:30px;
  8964. }
  8965. #u79960 {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:164px;
  8969. top:40px;
  8970. width:108px;
  8971. height:30px;
  8972. display:flex;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. color:#1890FF;
  8977. }
  8978. #u79960 .text {
  8979. position:absolute;
  8980. align-self:center;
  8981. padding:2px 2px 2px 2px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u79960_text {
  8986. border-width:0px;
  8987. word-wrap:break-word;
  8988. text-transform:none;
  8989. visibility:hidden;
  8990. }
  8991. #u79961_img {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:90px;
  8997. height:30px;
  8998. }
  8999. #u79961 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:272px;
  9003. top:40px;
  9004. width:90px;
  9005. height:30px;
  9006. display:flex;
  9007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. color:#1890FF;
  9011. }
  9012. #u79961 .text {
  9013. position:absolute;
  9014. align-self:center;
  9015. padding:2px 2px 2px 2px;
  9016. box-sizing:border-box;
  9017. width:100%;
  9018. }
  9019. #u79961_text {
  9020. border-width:0px;
  9021. word-wrap:break-word;
  9022. text-transform:none;
  9023. visibility:hidden;
  9024. }
  9025. #u79962_img {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:0px;
  9029. top:0px;
  9030. width:36px;
  9031. height:30px;
  9032. }
  9033. #u79962 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:70px;
  9038. width:36px;
  9039. height:30px;
  9040. display:flex;
  9041. }
  9042. #u79962 .text {
  9043. position:absolute;
  9044. align-self:center;
  9045. padding:2px 2px 2px 2px;
  9046. box-sizing:border-box;
  9047. width:100%;
  9048. }
  9049. #u79962_text {
  9050. border-width:0px;
  9051. word-wrap:break-word;
  9052. text-transform:none;
  9053. visibility:hidden;
  9054. }
  9055. #u79963_img {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:128px;
  9061. height:30px;
  9062. }
  9063. #u79963 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:36px;
  9067. top:70px;
  9068. width:128px;
  9069. height:30px;
  9070. display:flex;
  9071. }
  9072. #u79963 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:2px 2px 2px 2px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u79963_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u79964_img {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:108px;
  9091. height:30px;
  9092. }
  9093. #u79964 {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:164px;
  9097. top:70px;
  9098. width:108px;
  9099. height:30px;
  9100. display:flex;
  9101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9102. font-weight:400;
  9103. font-style:normal;
  9104. color:#1890FF;
  9105. }
  9106. #u79964 .text {
  9107. position:absolute;
  9108. align-self:center;
  9109. padding:2px 2px 2px 2px;
  9110. box-sizing:border-box;
  9111. width:100%;
  9112. }
  9113. #u79964_text {
  9114. border-width:0px;
  9115. word-wrap:break-word;
  9116. text-transform:none;
  9117. visibility:hidden;
  9118. }
  9119. #u79965_img {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:0px;
  9123. top:0px;
  9124. width:90px;
  9125. height:30px;
  9126. }
  9127. #u79965 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:272px;
  9131. top:70px;
  9132. width:90px;
  9133. height:30px;
  9134. display:flex;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. color:#1890FF;
  9139. }
  9140. #u79965 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:2px 2px 2px 2px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u79965_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. visibility:hidden;
  9152. }
  9153. #u79966_img {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:36px;
  9159. height:30px;
  9160. }
  9161. #u79966 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:100px;
  9166. width:36px;
  9167. height:30px;
  9168. display:flex;
  9169. }
  9170. #u79966 .text {
  9171. position:absolute;
  9172. align-self:center;
  9173. padding:2px 2px 2px 2px;
  9174. box-sizing:border-box;
  9175. width:100%;
  9176. }
  9177. #u79966_text {
  9178. border-width:0px;
  9179. word-wrap:break-word;
  9180. text-transform:none;
  9181. visibility:hidden;
  9182. }
  9183. #u79967_img {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:0px;
  9187. top:0px;
  9188. width:128px;
  9189. height:30px;
  9190. }
  9191. #u79967 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:36px;
  9195. top:100px;
  9196. width:128px;
  9197. height:30px;
  9198. display:flex;
  9199. }
  9200. #u79967 .text {
  9201. position:absolute;
  9202. align-self:center;
  9203. padding:2px 2px 2px 2px;
  9204. box-sizing:border-box;
  9205. width:100%;
  9206. }
  9207. #u79967_text {
  9208. border-width:0px;
  9209. word-wrap:break-word;
  9210. text-transform:none;
  9211. visibility:hidden;
  9212. }
  9213. #u79968_img {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:108px;
  9219. height:30px;
  9220. }
  9221. #u79968 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:164px;
  9225. top:100px;
  9226. width:108px;
  9227. height:30px;
  9228. display:flex;
  9229. }
  9230. #u79968 .text {
  9231. position:absolute;
  9232. align-self:center;
  9233. padding:2px 2px 2px 2px;
  9234. box-sizing:border-box;
  9235. width:100%;
  9236. }
  9237. #u79968_text {
  9238. border-width:0px;
  9239. word-wrap:break-word;
  9240. text-transform:none;
  9241. visibility:hidden;
  9242. }
  9243. #u79969_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:90px;
  9249. height:30px;
  9250. }
  9251. #u79969 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:272px;
  9255. top:100px;
  9256. width:90px;
  9257. height:30px;
  9258. display:flex;
  9259. }
  9260. #u79969 .text {
  9261. position:absolute;
  9262. align-self:center;
  9263. padding:2px 2px 2px 2px;
  9264. box-sizing:border-box;
  9265. width:100%;
  9266. }
  9267. #u79969_text {
  9268. border-width:0px;
  9269. word-wrap:break-word;
  9270. text-transform:none;
  9271. visibility:hidden;
  9272. }
  9273. #u79970_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:36px;
  9279. height:30px;
  9280. }
  9281. #u79970 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:130px;
  9286. width:36px;
  9287. height:30px;
  9288. display:flex;
  9289. }
  9290. #u79970 .text {
  9291. position:absolute;
  9292. align-self:center;
  9293. padding:2px 2px 2px 2px;
  9294. box-sizing:border-box;
  9295. width:100%;
  9296. }
  9297. #u79970_text {
  9298. border-width:0px;
  9299. word-wrap:break-word;
  9300. text-transform:none;
  9301. visibility:hidden;
  9302. }
  9303. #u79971_img {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:128px;
  9309. height:30px;
  9310. }
  9311. #u79971 {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:36px;
  9315. top:130px;
  9316. width:128px;
  9317. height:30px;
  9318. display:flex;
  9319. }
  9320. #u79971 .text {
  9321. position:absolute;
  9322. align-self:center;
  9323. padding:2px 2px 2px 2px;
  9324. box-sizing:border-box;
  9325. width:100%;
  9326. }
  9327. #u79971_text {
  9328. border-width:0px;
  9329. word-wrap:break-word;
  9330. text-transform:none;
  9331. visibility:hidden;
  9332. }
  9333. #u79972_img {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:108px;
  9339. height:30px;
  9340. }
  9341. #u79972 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:164px;
  9345. top:130px;
  9346. width:108px;
  9347. height:30px;
  9348. display:flex;
  9349. }
  9350. #u79972 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u79972_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. visibility:hidden;
  9362. }
  9363. #u79973_img {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:90px;
  9369. height:30px;
  9370. }
  9371. #u79973 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:272px;
  9375. top:130px;
  9376. width:90px;
  9377. height:30px;
  9378. display:flex;
  9379. }
  9380. #u79973 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 2px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u79973_text {
  9388. border-width:0px;
  9389. word-wrap:break-word;
  9390. text-transform:none;
  9391. visibility:hidden;
  9392. }
  9393. #u79974_img {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:36px;
  9399. height:30px;
  9400. }
  9401. #u79974 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:0px;
  9405. top:160px;
  9406. width:36px;
  9407. height:30px;
  9408. display:flex;
  9409. }
  9410. #u79974 .text {
  9411. position:absolute;
  9412. align-self:center;
  9413. padding:2px 2px 2px 2px;
  9414. box-sizing:border-box;
  9415. width:100%;
  9416. }
  9417. #u79974_text {
  9418. border-width:0px;
  9419. word-wrap:break-word;
  9420. text-transform:none;
  9421. visibility:hidden;
  9422. }
  9423. #u79975_img {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:128px;
  9429. height:30px;
  9430. }
  9431. #u79975 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:36px;
  9435. top:160px;
  9436. width:128px;
  9437. height:30px;
  9438. display:flex;
  9439. }
  9440. #u79975 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 2px 2px 2px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u79975_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. visibility:hidden;
  9452. }
  9453. #u79976_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:108px;
  9459. height:30px;
  9460. }
  9461. #u79976 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:164px;
  9465. top:160px;
  9466. width:108px;
  9467. height:30px;
  9468. display:flex;
  9469. }
  9470. #u79976 .text {
  9471. position:absolute;
  9472. align-self:center;
  9473. padding:2px 2px 2px 2px;
  9474. box-sizing:border-box;
  9475. width:100%;
  9476. }
  9477. #u79976_text {
  9478. border-width:0px;
  9479. word-wrap:break-word;
  9480. text-transform:none;
  9481. visibility:hidden;
  9482. }
  9483. #u79977_img {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:0px;
  9487. top:0px;
  9488. width:90px;
  9489. height:30px;
  9490. }
  9491. #u79977 {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:272px;
  9495. top:160px;
  9496. width:90px;
  9497. height:30px;
  9498. display:flex;
  9499. }
  9500. #u79977 .text {
  9501. position:absolute;
  9502. align-self:center;
  9503. padding:2px 2px 2px 2px;
  9504. box-sizing:border-box;
  9505. width:100%;
  9506. }
  9507. #u79977_text {
  9508. border-width:0px;
  9509. word-wrap:break-word;
  9510. text-transform:none;
  9511. visibility:hidden;
  9512. }
  9513. #u79978_img {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:36px;
  9519. height:20px;
  9520. }
  9521. #u79978 {
  9522. border-width:0px;
  9523. position:absolute;
  9524. left:0px;
  9525. top:190px;
  9526. width:36px;
  9527. height:20px;
  9528. display:flex;
  9529. }
  9530. #u79978 .text {
  9531. position:absolute;
  9532. align-self:center;
  9533. padding:2px 2px 2px 2px;
  9534. box-sizing:border-box;
  9535. width:100%;
  9536. }
  9537. #u79978_text {
  9538. border-width:0px;
  9539. word-wrap:break-word;
  9540. text-transform:none;
  9541. visibility:hidden;
  9542. }
  9543. #u79979_img {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:0px;
  9547. top:0px;
  9548. width:128px;
  9549. height:20px;
  9550. }
  9551. #u79979 {
  9552. border-width:0px;
  9553. position:absolute;
  9554. left:36px;
  9555. top:190px;
  9556. width:128px;
  9557. height:20px;
  9558. display:flex;
  9559. }
  9560. #u79979 .text {
  9561. position:absolute;
  9562. align-self:center;
  9563. padding:2px 2px 2px 2px;
  9564. box-sizing:border-box;
  9565. width:100%;
  9566. }
  9567. #u79979_text {
  9568. border-width:0px;
  9569. word-wrap:break-word;
  9570. text-transform:none;
  9571. visibility:hidden;
  9572. }
  9573. #u79980_img {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:108px;
  9579. height:20px;
  9580. }
  9581. #u79980 {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:164px;
  9585. top:190px;
  9586. width:108px;
  9587. height:20px;
  9588. display:flex;
  9589. }
  9590. #u79980 .text {
  9591. position:absolute;
  9592. align-self:center;
  9593. padding:2px 2px 2px 2px;
  9594. box-sizing:border-box;
  9595. width:100%;
  9596. }
  9597. #u79980_text {
  9598. border-width:0px;
  9599. word-wrap:break-word;
  9600. text-transform:none;
  9601. visibility:hidden;
  9602. }
  9603. #u79981_img {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:90px;
  9609. height:20px;
  9610. }
  9611. #u79981 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:272px;
  9615. top:190px;
  9616. width:90px;
  9617. height:20px;
  9618. display:flex;
  9619. }
  9620. #u79981 .text {
  9621. position:absolute;
  9622. align-self:center;
  9623. padding:2px 2px 2px 2px;
  9624. box-sizing:border-box;
  9625. width:100%;
  9626. }
  9627. #u79981_text {
  9628. border-width:0px;
  9629. word-wrap:break-word;
  9630. text-transform:none;
  9631. visibility:hidden;
  9632. }
  9633. #u79982 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:0px;
  9639. height:0px;
  9640. }
  9641. #u79983_div {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:150px;
  9647. height:30px;
  9648. background:inherit;
  9649. background-color:rgba(255, 255, 255, 1);
  9650. box-sizing:border-box;
  9651. border-width:1px;
  9652. border-style:solid;
  9653. border-color:rgba(215, 215, 215, 1);
  9654. border-radius:4px;
  9655. -moz-box-shadow:none;
  9656. -webkit-box-shadow:none;
  9657. box-shadow:none;
  9658. font-size:14px;
  9659. }
  9660. #u79983 {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:478px;
  9664. top:685px;
  9665. width:150px;
  9666. height:30px;
  9667. display:flex;
  9668. font-size:14px;
  9669. }
  9670. #u79983 .text {
  9671. position:absolute;
  9672. align-self:center;
  9673. padding:2px 2px 2px 2px;
  9674. box-sizing:border-box;
  9675. width:100%;
  9676. }
  9677. #u79983_text {
  9678. border-width:0px;
  9679. word-wrap:break-word;
  9680. text-transform:none;
  9681. visibility:hidden;
  9682. }
  9683. #u79984_input {
  9684. position:absolute;
  9685. left:0px;
  9686. top:0px;
  9687. width:143px;
  9688. height:23px;
  9689. padding:2px 2px 2px 2px;
  9690. font-family:'ArialMT', 'Arial', sans-serif;
  9691. font-weight:400;
  9692. font-style:normal;
  9693. font-size:14px;
  9694. letter-spacing:normal;
  9695. color:#AAAAAA;
  9696. vertical-align:none;
  9697. text-align:left;
  9698. text-transform:none;
  9699. background-color:transparent;
  9700. border-color:transparent;
  9701. }
  9702. #u79984_input.disabled {
  9703. position:absolute;
  9704. left:0px;
  9705. top:0px;
  9706. width:143px;
  9707. height:23px;
  9708. padding:2px 2px 2px 2px;
  9709. font-family:'ArialMT', 'Arial', sans-serif;
  9710. font-weight:400;
  9711. font-style:normal;
  9712. font-size:14px;
  9713. letter-spacing:normal;
  9714. color:#AAAAAA;
  9715. vertical-align:none;
  9716. text-align:left;
  9717. text-transform:none;
  9718. background-color:transparent;
  9719. border-color:transparent;
  9720. }
  9721. #u79984_div {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:0px;
  9725. top:0px;
  9726. width:143px;
  9727. height:23px;
  9728. background:inherit;
  9729. background-color:rgba(255, 255, 255, 1);
  9730. border:none;
  9731. border-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-size:14px;
  9736. color:#AAAAAA;
  9737. }
  9738. #u79984 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:483px;
  9742. top:687px;
  9743. width:143px;
  9744. height:23px;
  9745. display:flex;
  9746. font-size:14px;
  9747. color:#AAAAAA;
  9748. }
  9749. #u79984 .text {
  9750. position:absolute;
  9751. align-self:flex-start;
  9752. padding:2px 2px 2px 2px;
  9753. box-sizing:border-box;
  9754. width:100%;
  9755. }
  9756. #u79984_div.disabled {
  9757. border-width:0px;
  9758. position:absolute;
  9759. left:0px;
  9760. top:0px;
  9761. width:143px;
  9762. height:23px;
  9763. background:inherit;
  9764. background-color:rgba(240, 240, 240, 1);
  9765. border:none;
  9766. border-radius:0px;
  9767. -moz-box-shadow:none;
  9768. -webkit-box-shadow:none;
  9769. box-shadow:none;
  9770. font-size:14px;
  9771. color:#AAAAAA;
  9772. }
  9773. #u79984.disabled {
  9774. }
  9775. .u79984_input_option {
  9776. font-size:14px;
  9777. }
  9778. #u79985 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:0px;
  9782. top:0px;
  9783. width:0px;
  9784. height:0px;
  9785. }
  9786. #u79986_div {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:0px;
  9790. top:0px;
  9791. width:150px;
  9792. height:30px;
  9793. background:inherit;
  9794. background-color:rgba(255, 255, 255, 1);
  9795. box-sizing:border-box;
  9796. border-width:1px;
  9797. border-style:solid;
  9798. border-color:rgba(201, 201, 201, 1);
  9799. border-radius:4px;
  9800. -moz-box-shadow:none;
  9801. -webkit-box-shadow:none;
  9802. box-shadow:none;
  9803. font-family:'Microsoft YaHei', sans-serif;
  9804. font-weight:400;
  9805. font-style:normal;
  9806. font-size:14px;
  9807. color:#CCCCCC;
  9808. text-align:left;
  9809. }
  9810. #u79986 {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:800px;
  9814. top:685px;
  9815. width:150px;
  9816. height:30px;
  9817. display:flex;
  9818. font-family:'Microsoft YaHei', sans-serif;
  9819. font-weight:400;
  9820. font-style:normal;
  9821. font-size:14px;
  9822. color:#CCCCCC;
  9823. text-align:left;
  9824. }
  9825. #u79986 .text {
  9826. position:absolute;
  9827. align-self:center;
  9828. padding:2px 8px 2px 8px;
  9829. box-sizing:border-box;
  9830. width:100%;
  9831. }
  9832. #u79986_text {
  9833. border-width:0px;
  9834. word-wrap:break-word;
  9835. text-transform:none;
  9836. visibility:hidden;
  9837. }
  9838. #u79987_input {
  9839. position:absolute;
  9840. left:0px;
  9841. top:0px;
  9842. width:141px;
  9843. height:28px;
  9844. padding:2px 2px 2px 2px;
  9845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9846. font-weight:400;
  9847. font-style:normal;
  9848. font-size:14px;
  9849. letter-spacing:normal;
  9850. color:#000000;
  9851. vertical-align:none;
  9852. text-align:left;
  9853. text-transform:none;
  9854. background-color:transparent;
  9855. border-color:transparent;
  9856. }
  9857. #u79987_input.disabled {
  9858. position:absolute;
  9859. left:0px;
  9860. top:0px;
  9861. width:141px;
  9862. height:28px;
  9863. padding:2px 2px 2px 2px;
  9864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9865. font-weight:400;
  9866. font-style:normal;
  9867. font-size:14px;
  9868. letter-spacing:normal;
  9869. color:#000000;
  9870. vertical-align:none;
  9871. text-align:left;
  9872. text-transform:none;
  9873. background-color:transparent;
  9874. border-color:transparent;
  9875. }
  9876. #u79987_div {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:141px;
  9882. height:28px;
  9883. background:inherit;
  9884. background-color:rgba(255, 255, 255, 1);
  9885. border:none;
  9886. border-radius:0px;
  9887. -moz-box-shadow:none;
  9888. -webkit-box-shadow:none;
  9889. box-shadow:none;
  9890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9891. font-weight:400;
  9892. font-style:normal;
  9893. font-size:14px;
  9894. }
  9895. #u79987 {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:806px;
  9899. top:686px;
  9900. width:141px;
  9901. height:28px;
  9902. display:flex;
  9903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9904. font-weight:400;
  9905. font-style:normal;
  9906. font-size:14px;
  9907. }
  9908. #u79987 .text {
  9909. position:absolute;
  9910. align-self:center;
  9911. padding:2px 2px 2px 2px;
  9912. box-sizing:border-box;
  9913. width:100%;
  9914. }
  9915. #u79987_div.disabled {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:0px;
  9919. top:0px;
  9920. width:141px;
  9921. height:28px;
  9922. background:inherit;
  9923. background-color:rgba(240, 240, 240, 1);
  9924. border:none;
  9925. border-radius:0px;
  9926. -moz-box-shadow:none;
  9927. -webkit-box-shadow:none;
  9928. box-shadow:none;
  9929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9930. font-weight:400;
  9931. font-style:normal;
  9932. font-size:14px;
  9933. }
  9934. #u79987.disabled {
  9935. }
  9936. #u79988 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:0px;
  9940. top:0px;
  9941. width:0px;
  9942. height:0px;
  9943. }
  9944. #u79989_div {
  9945. border-width:0px;
  9946. position:absolute;
  9947. left:0px;
  9948. top:0px;
  9949. width:60px;
  9950. height:30px;
  9951. background:inherit;
  9952. background-color:rgba(24, 144, 255, 1);
  9953. border:none;
  9954. border-radius:4px;
  9955. -moz-box-shadow:none;
  9956. -webkit-box-shadow:none;
  9957. box-shadow:none;
  9958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9959. font-weight:400;
  9960. font-style:normal;
  9961. font-size:14px;
  9962. color:#FFFFFF;
  9963. }
  9964. #u79989 {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:970px;
  9968. top:685px;
  9969. width:60px;
  9970. height:30px;
  9971. display:flex;
  9972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9973. font-weight:400;
  9974. font-style:normal;
  9975. font-size:14px;
  9976. color:#FFFFFF;
  9977. }
  9978. #u79989 .text {
  9979. position:absolute;
  9980. align-self:center;
  9981. padding:2px 2px 2px 2px;
  9982. box-sizing:border-box;
  9983. width:100%;
  9984. }
  9985. #u79989_text {
  9986. border-width:0px;
  9987. word-wrap:break-word;
  9988. text-transform:none;
  9989. }
  9990. #u79990_div {
  9991. border-width:0px;
  9992. position:absolute;
  9993. left:0px;
  9994. top:0px;
  9995. width:60px;
  9996. height:30px;
  9997. background:inherit;
  9998. background-color:rgba(255, 255, 255, 1);
  9999. box-sizing:border-box;
  10000. border-width:1px;
  10001. border-style:solid;
  10002. border-color:rgba(170, 170, 170, 1);
  10003. border-radius:4px;
  10004. -moz-box-shadow:none;
  10005. -webkit-box-shadow:none;
  10006. box-shadow:none;
  10007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10008. font-weight:400;
  10009. font-style:normal;
  10010. font-size:14px;
  10011. }
  10012. #u79990 {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:1040px;
  10016. top:685px;
  10017. width:60px;
  10018. height:30px;
  10019. display:flex;
  10020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10021. font-weight:400;
  10022. font-style:normal;
  10023. font-size:14px;
  10024. }
  10025. #u79990 .text {
  10026. position:absolute;
  10027. align-self:center;
  10028. padding:2px 2px 2px 2px;
  10029. box-sizing:border-box;
  10030. width:100%;
  10031. }
  10032. #u79990_text {
  10033. border-width:0px;
  10034. word-wrap:break-word;
  10035. text-transform:none;
  10036. }
  10037. #u79991 {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:0px;
  10041. top:0px;
  10042. width:0px;
  10043. height:0px;
  10044. }
  10045. #u79992 {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:0px;
  10049. top:0px;
  10050. width:0px;
  10051. height:0px;
  10052. }
  10053. #u79993_div {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:0px;
  10057. top:0px;
  10058. width:31px;
  10059. height:30px;
  10060. background:inherit;
  10061. background-color:rgba(242, 242, 242, 1);
  10062. box-sizing:border-box;
  10063. border-width:1px;
  10064. border-style:solid;
  10065. border-color:rgba(228, 228, 228, 1);
  10066. border-radius:4px;
  10067. -moz-box-shadow:none;
  10068. -webkit-box-shadow:none;
  10069. box-shadow:none;
  10070. font-family:'Microsoft YaHei', sans-serif;
  10071. font-weight:400;
  10072. font-style:normal;
  10073. font-size:12px;
  10074. }
  10075. #u79993 {
  10076. border-width:0px;
  10077. position:absolute;
  10078. left:685px;
  10079. top:954px;
  10080. width:31px;
  10081. height:30px;
  10082. display:flex;
  10083. font-family:'Microsoft YaHei', sans-serif;
  10084. font-weight:400;
  10085. font-style:normal;
  10086. font-size:12px;
  10087. }
  10088. #u79993 .text {
  10089. position:absolute;
  10090. align-self:center;
  10091. padding:2px 2px 2px 2px;
  10092. box-sizing:border-box;
  10093. width:100%;
  10094. }
  10095. #u79993_text {
  10096. border-width:0px;
  10097. word-wrap:break-word;
  10098. text-transform:none;
  10099. visibility:hidden;
  10100. }
  10101. #u79994_img {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:8px;
  10107. height:14px;
  10108. }
  10109. #u79994 {
  10110. border-width:0px;
  10111. position:absolute;
  10112. left:697px;
  10113. top:962px;
  10114. width:8px;
  10115. height:14px;
  10116. display:flex;
  10117. opacity:0.3;
  10118. font-family:'Microsoft YaHei', sans-serif;
  10119. font-weight:400;
  10120. font-style:normal;
  10121. font-size:12px;
  10122. }
  10123. #u79994 .text {
  10124. position:absolute;
  10125. align-self:center;
  10126. padding:2px 2px 2px 2px;
  10127. box-sizing:border-box;
  10128. width:100%;
  10129. }
  10130. #u79994_text {
  10131. border-width:0px;
  10132. word-wrap:break-word;
  10133. text-transform:none;
  10134. visibility:hidden;
  10135. }
  10136. #u79995 {
  10137. border-width:0px;
  10138. position:absolute;
  10139. left:0px;
  10140. top:0px;
  10141. width:0px;
  10142. height:0px;
  10143. }
  10144. #u79996_div {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:0px;
  10148. top:0px;
  10149. width:31px;
  10150. height:30px;
  10151. background:inherit;
  10152. background-color:rgba(255, 255, 255, 1);
  10153. box-sizing:border-box;
  10154. border-width:1px;
  10155. border-style:solid;
  10156. border-color:rgba(228, 228, 228, 1);
  10157. border-radius:4px;
  10158. -moz-box-shadow:none;
  10159. -webkit-box-shadow:none;
  10160. box-shadow:none;
  10161. font-family:'Microsoft YaHei', sans-serif;
  10162. font-weight:400;
  10163. font-style:normal;
  10164. font-size:12px;
  10165. }
  10166. #u79996 {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:770px;
  10170. top:954px;
  10171. width:31px;
  10172. height:30px;
  10173. display:flex;
  10174. font-family:'Microsoft YaHei', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:12px;
  10178. }
  10179. #u79996 .text {
  10180. position:absolute;
  10181. align-self:center;
  10182. padding:2px 2px 2px 2px;
  10183. box-sizing:border-box;
  10184. width:100%;
  10185. }
  10186. #u79996_text {
  10187. border-width:0px;
  10188. word-wrap:break-word;
  10189. text-transform:none;
  10190. visibility:hidden;
  10191. }
  10192. #u79997_img {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:0px;
  10196. top:0px;
  10197. width:8px;
  10198. height:14px;
  10199. }
  10200. #u79997 {
  10201. border-width:0px;
  10202. position:absolute;
  10203. left:783px;
  10204. top:962px;
  10205. width:8px;
  10206. height:14px;
  10207. display:flex;
  10208. font-family:'Microsoft YaHei', sans-serif;
  10209. font-weight:400;
  10210. font-style:normal;
  10211. font-size:12px;
  10212. }
  10213. #u79997 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:2px 2px 2px 2px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u79997_text {
  10221. border-width:0px;
  10222. word-wrap:break-word;
  10223. text-transform:none;
  10224. visibility:hidden;
  10225. }
  10226. #u79998_div {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:32px;
  10232. height:21px;
  10233. background:inherit;
  10234. background-color:rgba(255, 255, 255, 1);
  10235. border:none;
  10236. border-radius:15px;
  10237. -moz-box-shadow:none;
  10238. -webkit-box-shadow:none;
  10239. box-shadow:none;
  10240. font-family:'微软雅黑', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:14px;
  10244. color:#1E1E1E;
  10245. }
  10246. #u79998 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:726px;
  10250. top:959px;
  10251. width:32px;
  10252. height:21px;
  10253. display:flex;
  10254. font-family:'微软雅黑', sans-serif;
  10255. font-weight:400;
  10256. font-style:normal;
  10257. font-size:14px;
  10258. color:#1E1E1E;
  10259. }
  10260. #u79998 .text {
  10261. position:absolute;
  10262. align-self:center;
  10263. padding:2px 2px 2px 2px;
  10264. box-sizing:border-box;
  10265. width:100%;
  10266. }
  10267. #u79998_text {
  10268. border-width:0px;
  10269. white-space:nowrap;
  10270. text-transform:none;
  10271. }
  10272. #u79999 {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:0px;
  10278. height:0px;
  10279. }
  10280. #u80000_div {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:0px;
  10284. top:0px;
  10285. width:150px;
  10286. height:30px;
  10287. background:inherit;
  10288. background-color:rgba(255, 255, 255, 1);
  10289. box-sizing:border-box;
  10290. border-width:1px;
  10291. border-style:solid;
  10292. border-color:rgba(215, 215, 215, 1);
  10293. border-radius:4px;
  10294. -moz-box-shadow:none;
  10295. -webkit-box-shadow:none;
  10296. box-shadow:none;
  10297. font-size:14px;
  10298. }
  10299. #u80000 {
  10300. border-width:0px;
  10301. position:absolute;
  10302. left:638px;
  10303. top:685px;
  10304. width:150px;
  10305. height:30px;
  10306. display:flex;
  10307. font-size:14px;
  10308. }
  10309. #u80000 .text {
  10310. position:absolute;
  10311. align-self:center;
  10312. padding:2px 2px 2px 2px;
  10313. box-sizing:border-box;
  10314. width:100%;
  10315. }
  10316. #u80000_text {
  10317. border-width:0px;
  10318. word-wrap:break-word;
  10319. text-transform:none;
  10320. visibility:hidden;
  10321. }
  10322. #u80001_input {
  10323. position:absolute;
  10324. left:0px;
  10325. top:0px;
  10326. width:143px;
  10327. height:23px;
  10328. padding:2px 2px 2px 2px;
  10329. font-family:'ArialMT', 'Arial', sans-serif;
  10330. font-weight:400;
  10331. font-style:normal;
  10332. font-size:14px;
  10333. letter-spacing:normal;
  10334. color:#AAAAAA;
  10335. vertical-align:none;
  10336. text-align:left;
  10337. text-transform:none;
  10338. background-color:transparent;
  10339. border-color:transparent;
  10340. }
  10341. #u80001_input.disabled {
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:143px;
  10346. height:23px;
  10347. padding:2px 2px 2px 2px;
  10348. font-family:'ArialMT', 'Arial', sans-serif;
  10349. font-weight:400;
  10350. font-style:normal;
  10351. font-size:14px;
  10352. letter-spacing:normal;
  10353. color:#AAAAAA;
  10354. vertical-align:none;
  10355. text-align:left;
  10356. text-transform:none;
  10357. background-color:transparent;
  10358. border-color:transparent;
  10359. }
  10360. #u80001_div {
  10361. border-width:0px;
  10362. position:absolute;
  10363. left:0px;
  10364. top:0px;
  10365. width:143px;
  10366. height:23px;
  10367. background:inherit;
  10368. background-color:rgba(255, 255, 255, 1);
  10369. border:none;
  10370. border-radius:0px;
  10371. -moz-box-shadow:none;
  10372. -webkit-box-shadow:none;
  10373. box-shadow:none;
  10374. font-size:14px;
  10375. color:#AAAAAA;
  10376. }
  10377. #u80001 {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:643px;
  10381. top:687px;
  10382. width:143px;
  10383. height:23px;
  10384. display:flex;
  10385. font-size:14px;
  10386. color:#AAAAAA;
  10387. }
  10388. #u80001 .text {
  10389. position:absolute;
  10390. align-self:flex-start;
  10391. padding:2px 2px 2px 2px;
  10392. box-sizing:border-box;
  10393. width:100%;
  10394. }
  10395. #u80001_div.disabled {
  10396. border-width:0px;
  10397. position:absolute;
  10398. left:0px;
  10399. top:0px;
  10400. width:143px;
  10401. height:23px;
  10402. background:inherit;
  10403. background-color:rgba(240, 240, 240, 1);
  10404. border:none;
  10405. border-radius:0px;
  10406. -moz-box-shadow:none;
  10407. -webkit-box-shadow:none;
  10408. box-shadow:none;
  10409. font-size:14px;
  10410. color:#AAAAAA;
  10411. }
  10412. #u80001.disabled {
  10413. }
  10414. .u80001_input_option {
  10415. font-size:14px;
  10416. }
  10417. #u80002 {
  10418. border-width:0px;
  10419. position:absolute;
  10420. left:879px;
  10421. top:735px;
  10422. width:348px;
  10423. height:210px;
  10424. }
  10425. #u80003_img {
  10426. border-width:0px;
  10427. position:absolute;
  10428. left:0px;
  10429. top:0px;
  10430. width:34px;
  10431. height:40px;
  10432. }
  10433. #u80003 {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:0px;
  10437. top:0px;
  10438. width:34px;
  10439. height:40px;
  10440. display:flex;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. color:#FFFFFF;
  10445. }
  10446. #u80003 .text {
  10447. position:absolute;
  10448. align-self:center;
  10449. padding:2px 2px 2px 2px;
  10450. box-sizing:border-box;
  10451. width:100%;
  10452. }
  10453. #u80003_text {
  10454. border-width:0px;
  10455. word-wrap:break-word;
  10456. text-transform:none;
  10457. }
  10458. #u80004_img {
  10459. border-width:0px;
  10460. position:absolute;
  10461. left:0px;
  10462. top:0px;
  10463. width:123px;
  10464. height:40px;
  10465. }
  10466. #u80004 {
  10467. border-width:0px;
  10468. position:absolute;
  10469. left:34px;
  10470. top:0px;
  10471. width:123px;
  10472. height:40px;
  10473. display:flex;
  10474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10475. font-weight:400;
  10476. font-style:normal;
  10477. color:#FFFFFF;
  10478. }
  10479. #u80004 .text {
  10480. position:absolute;
  10481. align-self:center;
  10482. padding:2px 2px 2px 2px;
  10483. box-sizing:border-box;
  10484. width:100%;
  10485. }
  10486. #u80004_text {
  10487. border-width:0px;
  10488. word-wrap:break-word;
  10489. text-transform:none;
  10490. }
  10491. #u80005_img {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:0px;
  10495. top:0px;
  10496. width:103px;
  10497. height:40px;
  10498. }
  10499. #u80005 {
  10500. border-width:0px;
  10501. position:absolute;
  10502. left:157px;
  10503. top:0px;
  10504. width:103px;
  10505. height:40px;
  10506. display:flex;
  10507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10508. font-weight:400;
  10509. font-style:normal;
  10510. color:#FFFFFF;
  10511. }
  10512. #u80005 .text {
  10513. position:absolute;
  10514. align-self:center;
  10515. padding:2px 2px 2px 2px;
  10516. box-sizing:border-box;
  10517. width:100%;
  10518. }
  10519. #u80005_text {
  10520. border-width:0px;
  10521. word-wrap:break-word;
  10522. text-transform:none;
  10523. }
  10524. #u80006_img {
  10525. border-width:0px;
  10526. position:absolute;
  10527. left:0px;
  10528. top:0px;
  10529. width:88px;
  10530. height:40px;
  10531. }
  10532. #u80006 {
  10533. border-width:0px;
  10534. position:absolute;
  10535. left:260px;
  10536. top:0px;
  10537. width:88px;
  10538. height:40px;
  10539. display:flex;
  10540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10541. font-weight:400;
  10542. font-style:normal;
  10543. color:#FFFFFF;
  10544. }
  10545. #u80006 .text {
  10546. position:absolute;
  10547. align-self:center;
  10548. padding:2px 2px 2px 2px;
  10549. box-sizing:border-box;
  10550. width:100%;
  10551. }
  10552. #u80006_text {
  10553. border-width:0px;
  10554. word-wrap:break-word;
  10555. text-transform:none;
  10556. }
  10557. #u80007_img {
  10558. border-width:0px;
  10559. position:absolute;
  10560. left:0px;
  10561. top:0px;
  10562. width:34px;
  10563. height:30px;
  10564. }
  10565. #u80007 {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:0px;
  10569. top:40px;
  10570. width:34px;
  10571. height:30px;
  10572. display:flex;
  10573. }
  10574. #u80007 .text {
  10575. position:absolute;
  10576. align-self:center;
  10577. padding:2px 2px 2px 2px;
  10578. box-sizing:border-box;
  10579. width:100%;
  10580. }
  10581. #u80007_text {
  10582. border-width:0px;
  10583. word-wrap:break-word;
  10584. text-transform:none;
  10585. visibility:hidden;
  10586. }
  10587. #u80008_img {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:123px;
  10593. height:30px;
  10594. }
  10595. #u80008 {
  10596. border-width:0px;
  10597. position:absolute;
  10598. left:34px;
  10599. top:40px;
  10600. width:123px;
  10601. height:30px;
  10602. display:flex;
  10603. }
  10604. #u80008 .text {
  10605. position:absolute;
  10606. align-self:center;
  10607. padding:2px 2px 2px 2px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u80008_text {
  10612. border-width:0px;
  10613. word-wrap:break-word;
  10614. text-transform:none;
  10615. visibility:hidden;
  10616. }
  10617. #u80009_img {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:0px;
  10621. top:0px;
  10622. width:103px;
  10623. height:30px;
  10624. }
  10625. #u80009 {
  10626. border-width:0px;
  10627. position:absolute;
  10628. left:157px;
  10629. top:40px;
  10630. width:103px;
  10631. height:30px;
  10632. display:flex;
  10633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10634. font-weight:400;
  10635. font-style:normal;
  10636. color:#1890FF;
  10637. }
  10638. #u80009 .text {
  10639. position:absolute;
  10640. align-self:center;
  10641. padding:2px 2px 2px 2px;
  10642. box-sizing:border-box;
  10643. width:100%;
  10644. }
  10645. #u80009_text {
  10646. border-width:0px;
  10647. word-wrap:break-word;
  10648. text-transform:none;
  10649. visibility:hidden;
  10650. }
  10651. #u80010_img {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:0px;
  10655. top:0px;
  10656. width:88px;
  10657. height:30px;
  10658. }
  10659. #u80010 {
  10660. border-width:0px;
  10661. position:absolute;
  10662. left:260px;
  10663. top:40px;
  10664. width:88px;
  10665. height:30px;
  10666. display:flex;
  10667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. color:#1890FF;
  10671. }
  10672. #u80010 .text {
  10673. position:absolute;
  10674. align-self:center;
  10675. padding:2px 2px 2px 2px;
  10676. box-sizing:border-box;
  10677. width:100%;
  10678. }
  10679. #u80010_text {
  10680. border-width:0px;
  10681. word-wrap:break-word;
  10682. text-transform:none;
  10683. visibility:hidden;
  10684. }
  10685. #u80011_img {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:0px;
  10689. top:0px;
  10690. width:34px;
  10691. height:30px;
  10692. }
  10693. #u80011 {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:0px;
  10697. top:70px;
  10698. width:34px;
  10699. height:30px;
  10700. display:flex;
  10701. }
  10702. #u80011 .text {
  10703. position:absolute;
  10704. align-self:center;
  10705. padding:2px 2px 2px 2px;
  10706. box-sizing:border-box;
  10707. width:100%;
  10708. }
  10709. #u80011_text {
  10710. border-width:0px;
  10711. word-wrap:break-word;
  10712. text-transform:none;
  10713. visibility:hidden;
  10714. }
  10715. #u80012_img {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:0px;
  10719. top:0px;
  10720. width:123px;
  10721. height:30px;
  10722. }
  10723. #u80012 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:34px;
  10727. top:70px;
  10728. width:123px;
  10729. height:30px;
  10730. display:flex;
  10731. }
  10732. #u80012 .text {
  10733. position:absolute;
  10734. align-self:center;
  10735. padding:2px 2px 2px 2px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u80012_text {
  10740. border-width:0px;
  10741. word-wrap:break-word;
  10742. text-transform:none;
  10743. visibility:hidden;
  10744. }
  10745. #u80013_img {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:0px;
  10749. top:0px;
  10750. width:103px;
  10751. height:30px;
  10752. }
  10753. #u80013 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:157px;
  10757. top:70px;
  10758. width:103px;
  10759. height:30px;
  10760. display:flex;
  10761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. color:#1890FF;
  10765. }
  10766. #u80013 .text {
  10767. position:absolute;
  10768. align-self:center;
  10769. padding:2px 2px 2px 2px;
  10770. box-sizing:border-box;
  10771. width:100%;
  10772. }
  10773. #u80013_text {
  10774. border-width:0px;
  10775. word-wrap:break-word;
  10776. text-transform:none;
  10777. visibility:hidden;
  10778. }
  10779. #u80014_img {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:0px;
  10783. top:0px;
  10784. width:88px;
  10785. height:30px;
  10786. }
  10787. #u80014 {
  10788. border-width:0px;
  10789. position:absolute;
  10790. left:260px;
  10791. top:70px;
  10792. width:88px;
  10793. height:30px;
  10794. display:flex;
  10795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10796. font-weight:400;
  10797. font-style:normal;
  10798. color:#1890FF;
  10799. }
  10800. #u80014 .text {
  10801. position:absolute;
  10802. align-self:center;
  10803. padding:2px 2px 2px 2px;
  10804. box-sizing:border-box;
  10805. width:100%;
  10806. }
  10807. #u80014_text {
  10808. border-width:0px;
  10809. word-wrap:break-word;
  10810. text-transform:none;
  10811. visibility:hidden;
  10812. }
  10813. #u80015_img {
  10814. border-width:0px;
  10815. position:absolute;
  10816. left:0px;
  10817. top:0px;
  10818. width:34px;
  10819. height:30px;
  10820. }
  10821. #u80015 {
  10822. border-width:0px;
  10823. position:absolute;
  10824. left:0px;
  10825. top:100px;
  10826. width:34px;
  10827. height:30px;
  10828. display:flex;
  10829. }
  10830. #u80015 .text {
  10831. position:absolute;
  10832. align-self:center;
  10833. padding:2px 2px 2px 2px;
  10834. box-sizing:border-box;
  10835. width:100%;
  10836. }
  10837. #u80015_text {
  10838. border-width:0px;
  10839. word-wrap:break-word;
  10840. text-transform:none;
  10841. visibility:hidden;
  10842. }
  10843. #u80016_img {
  10844. border-width:0px;
  10845. position:absolute;
  10846. left:0px;
  10847. top:0px;
  10848. width:123px;
  10849. height:30px;
  10850. }
  10851. #u80016 {
  10852. border-width:0px;
  10853. position:absolute;
  10854. left:34px;
  10855. top:100px;
  10856. width:123px;
  10857. height:30px;
  10858. display:flex;
  10859. }
  10860. #u80016 .text {
  10861. position:absolute;
  10862. align-self:center;
  10863. padding:2px 2px 2px 2px;
  10864. box-sizing:border-box;
  10865. width:100%;
  10866. }
  10867. #u80016_text {
  10868. border-width:0px;
  10869. word-wrap:break-word;
  10870. text-transform:none;
  10871. visibility:hidden;
  10872. }
  10873. #u80017_img {
  10874. border-width:0px;
  10875. position:absolute;
  10876. left:0px;
  10877. top:0px;
  10878. width:103px;
  10879. height:30px;
  10880. }
  10881. #u80017 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:157px;
  10885. top:100px;
  10886. width:103px;
  10887. height:30px;
  10888. display:flex;
  10889. }
  10890. #u80017 .text {
  10891. position:absolute;
  10892. align-self:center;
  10893. padding:2px 2px 2px 2px;
  10894. box-sizing:border-box;
  10895. width:100%;
  10896. }
  10897. #u80017_text {
  10898. border-width:0px;
  10899. word-wrap:break-word;
  10900. text-transform:none;
  10901. visibility:hidden;
  10902. }
  10903. #u80018_img {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:0px;
  10908. width:88px;
  10909. height:30px;
  10910. }
  10911. #u80018 {
  10912. border-width:0px;
  10913. position:absolute;
  10914. left:260px;
  10915. top:100px;
  10916. width:88px;
  10917. height:30px;
  10918. display:flex;
  10919. }
  10920. #u80018 .text {
  10921. position:absolute;
  10922. align-self:center;
  10923. padding:2px 2px 2px 2px;
  10924. box-sizing:border-box;
  10925. width:100%;
  10926. }
  10927. #u80018_text {
  10928. border-width:0px;
  10929. word-wrap:break-word;
  10930. text-transform:none;
  10931. visibility:hidden;
  10932. }
  10933. #u80019_img {
  10934. border-width:0px;
  10935. position:absolute;
  10936. left:0px;
  10937. top:0px;
  10938. width:34px;
  10939. height:30px;
  10940. }
  10941. #u80019 {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:0px;
  10945. top:130px;
  10946. width:34px;
  10947. height:30px;
  10948. display:flex;
  10949. }
  10950. #u80019 .text {
  10951. position:absolute;
  10952. align-self:center;
  10953. padding:2px 2px 2px 2px;
  10954. box-sizing:border-box;
  10955. width:100%;
  10956. }
  10957. #u80019_text {
  10958. border-width:0px;
  10959. word-wrap:break-word;
  10960. text-transform:none;
  10961. visibility:hidden;
  10962. }
  10963. #u80020_img {
  10964. border-width:0px;
  10965. position:absolute;
  10966. left:0px;
  10967. top:0px;
  10968. width:123px;
  10969. height:30px;
  10970. }
  10971. #u80020 {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:34px;
  10975. top:130px;
  10976. width:123px;
  10977. height:30px;
  10978. display:flex;
  10979. }
  10980. #u80020 .text {
  10981. position:absolute;
  10982. align-self:center;
  10983. padding:2px 2px 2px 2px;
  10984. box-sizing:border-box;
  10985. width:100%;
  10986. }
  10987. #u80020_text {
  10988. border-width:0px;
  10989. word-wrap:break-word;
  10990. text-transform:none;
  10991. visibility:hidden;
  10992. }
  10993. #u80021_img {
  10994. border-width:0px;
  10995. position:absolute;
  10996. left:0px;
  10997. top:0px;
  10998. width:103px;
  10999. height:30px;
  11000. }
  11001. #u80021 {
  11002. border-width:0px;
  11003. position:absolute;
  11004. left:157px;
  11005. top:130px;
  11006. width:103px;
  11007. height:30px;
  11008. display:flex;
  11009. }
  11010. #u80021 .text {
  11011. position:absolute;
  11012. align-self:center;
  11013. padding:2px 2px 2px 2px;
  11014. box-sizing:border-box;
  11015. width:100%;
  11016. }
  11017. #u80021_text {
  11018. border-width:0px;
  11019. word-wrap:break-word;
  11020. text-transform:none;
  11021. visibility:hidden;
  11022. }
  11023. #u80022_img {
  11024. border-width:0px;
  11025. position:absolute;
  11026. left:0px;
  11027. top:0px;
  11028. width:88px;
  11029. height:30px;
  11030. }
  11031. #u80022 {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:260px;
  11035. top:130px;
  11036. width:88px;
  11037. height:30px;
  11038. display:flex;
  11039. }
  11040. #u80022 .text {
  11041. position:absolute;
  11042. align-self:center;
  11043. padding:2px 2px 2px 2px;
  11044. box-sizing:border-box;
  11045. width:100%;
  11046. }
  11047. #u80022_text {
  11048. border-width:0px;
  11049. word-wrap:break-word;
  11050. text-transform:none;
  11051. visibility:hidden;
  11052. }
  11053. #u80023_img {
  11054. border-width:0px;
  11055. position:absolute;
  11056. left:0px;
  11057. top:0px;
  11058. width:34px;
  11059. height:30px;
  11060. }
  11061. #u80023 {
  11062. border-width:0px;
  11063. position:absolute;
  11064. left:0px;
  11065. top:160px;
  11066. width:34px;
  11067. height:30px;
  11068. display:flex;
  11069. }
  11070. #u80023 .text {
  11071. position:absolute;
  11072. align-self:center;
  11073. padding:2px 2px 2px 2px;
  11074. box-sizing:border-box;
  11075. width:100%;
  11076. }
  11077. #u80023_text {
  11078. border-width:0px;
  11079. word-wrap:break-word;
  11080. text-transform:none;
  11081. visibility:hidden;
  11082. }
  11083. #u80024_img {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:0px;
  11087. top:0px;
  11088. width:123px;
  11089. height:30px;
  11090. }
  11091. #u80024 {
  11092. border-width:0px;
  11093. position:absolute;
  11094. left:34px;
  11095. top:160px;
  11096. width:123px;
  11097. height:30px;
  11098. display:flex;
  11099. }
  11100. #u80024 .text {
  11101. position:absolute;
  11102. align-self:center;
  11103. padding:2px 2px 2px 2px;
  11104. box-sizing:border-box;
  11105. width:100%;
  11106. }
  11107. #u80024_text {
  11108. border-width:0px;
  11109. word-wrap:break-word;
  11110. text-transform:none;
  11111. visibility:hidden;
  11112. }
  11113. #u80025_img {
  11114. border-width:0px;
  11115. position:absolute;
  11116. left:0px;
  11117. top:0px;
  11118. width:103px;
  11119. height:30px;
  11120. }
  11121. #u80025 {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:157px;
  11125. top:160px;
  11126. width:103px;
  11127. height:30px;
  11128. display:flex;
  11129. }
  11130. #u80025 .text {
  11131. position:absolute;
  11132. align-self:center;
  11133. padding:2px 2px 2px 2px;
  11134. box-sizing:border-box;
  11135. width:100%;
  11136. }
  11137. #u80025_text {
  11138. border-width:0px;
  11139. word-wrap:break-word;
  11140. text-transform:none;
  11141. visibility:hidden;
  11142. }
  11143. #u80026_img {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:88px;
  11149. height:30px;
  11150. }
  11151. #u80026 {
  11152. border-width:0px;
  11153. position:absolute;
  11154. left:260px;
  11155. top:160px;
  11156. width:88px;
  11157. height:30px;
  11158. display:flex;
  11159. }
  11160. #u80026 .text {
  11161. position:absolute;
  11162. align-self:center;
  11163. padding:2px 2px 2px 2px;
  11164. box-sizing:border-box;
  11165. width:100%;
  11166. }
  11167. #u80026_text {
  11168. border-width:0px;
  11169. word-wrap:break-word;
  11170. text-transform:none;
  11171. visibility:hidden;
  11172. }
  11173. #u80027_img {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:0px;
  11177. top:0px;
  11178. width:34px;
  11179. height:20px;
  11180. }
  11181. #u80027 {
  11182. border-width:0px;
  11183. position:absolute;
  11184. left:0px;
  11185. top:190px;
  11186. width:34px;
  11187. height:20px;
  11188. display:flex;
  11189. }
  11190. #u80027 .text {
  11191. position:absolute;
  11192. align-self:center;
  11193. padding:2px 2px 2px 2px;
  11194. box-sizing:border-box;
  11195. width:100%;
  11196. }
  11197. #u80027_text {
  11198. border-width:0px;
  11199. word-wrap:break-word;
  11200. text-transform:none;
  11201. visibility:hidden;
  11202. }
  11203. #u80028_img {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:0px;
  11207. top:0px;
  11208. width:123px;
  11209. height:20px;
  11210. }
  11211. #u80028 {
  11212. border-width:0px;
  11213. position:absolute;
  11214. left:34px;
  11215. top:190px;
  11216. width:123px;
  11217. height:20px;
  11218. display:flex;
  11219. }
  11220. #u80028 .text {
  11221. position:absolute;
  11222. align-self:center;
  11223. padding:2px 2px 2px 2px;
  11224. box-sizing:border-box;
  11225. width:100%;
  11226. }
  11227. #u80028_text {
  11228. border-width:0px;
  11229. word-wrap:break-word;
  11230. text-transform:none;
  11231. visibility:hidden;
  11232. }
  11233. #u80029_img {
  11234. border-width:0px;
  11235. position:absolute;
  11236. left:0px;
  11237. top:0px;
  11238. width:103px;
  11239. height:20px;
  11240. }
  11241. #u80029 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:157px;
  11245. top:190px;
  11246. width:103px;
  11247. height:20px;
  11248. display:flex;
  11249. }
  11250. #u80029 .text {
  11251. position:absolute;
  11252. align-self:center;
  11253. padding:2px 2px 2px 2px;
  11254. box-sizing:border-box;
  11255. width:100%;
  11256. }
  11257. #u80029_text {
  11258. border-width:0px;
  11259. word-wrap:break-word;
  11260. text-transform:none;
  11261. visibility:hidden;
  11262. }
  11263. #u80030_img {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:88px;
  11269. height:20px;
  11270. }
  11271. #u80030 {
  11272. border-width:0px;
  11273. position:absolute;
  11274. left:260px;
  11275. top:190px;
  11276. width:88px;
  11277. height:20px;
  11278. display:flex;
  11279. }
  11280. #u80030 .text {
  11281. position:absolute;
  11282. align-self:center;
  11283. padding:2px 2px 2px 2px;
  11284. box-sizing:border-box;
  11285. width:100%;
  11286. }
  11287. #u80030_text {
  11288. border-width:0px;
  11289. word-wrap:break-word;
  11290. text-transform:none;
  11291. visibility:hidden;
  11292. }
  11293. #u80031 {
  11294. border-width:0px;
  11295. position:absolute;
  11296. left:0px;
  11297. top:0px;
  11298. width:0px;
  11299. height:0px;
  11300. }
  11301. #u80032_div {
  11302. border-width:0px;
  11303. position:absolute;
  11304. left:0px;
  11305. top:0px;
  11306. width:31px;
  11307. height:30px;
  11308. background:inherit;
  11309. background-color:rgba(255, 255, 255, 1);
  11310. box-sizing:border-box;
  11311. border-width:1px;
  11312. border-style:solid;
  11313. border-color:rgba(228, 228, 228, 1);
  11314. border-radius:4px;
  11315. -moz-box-shadow:none;
  11316. -webkit-box-shadow:none;
  11317. box-shadow:none;
  11318. font-family:'Microsoft YaHei', sans-serif;
  11319. font-weight:400;
  11320. font-style:normal;
  11321. font-size:12px;
  11322. }
  11323. #u80032 {
  11324. border-width:0px;
  11325. position:absolute;
  11326. left:845px;
  11327. top:806px;
  11328. width:31px;
  11329. height:30px;
  11330. display:flex;
  11331. font-family:'Microsoft YaHei', sans-serif;
  11332. font-weight:400;
  11333. font-style:normal;
  11334. font-size:12px;
  11335. }
  11336. #u80032 .text {
  11337. position:absolute;
  11338. align-self:center;
  11339. padding:2px 2px 2px 2px;
  11340. box-sizing:border-box;
  11341. width:100%;
  11342. }
  11343. #u80032_text {
  11344. border-width:0px;
  11345. word-wrap:break-word;
  11346. text-transform:none;
  11347. visibility:hidden;
  11348. }
  11349. #u80033_img {
  11350. border-width:0px;
  11351. position:absolute;
  11352. left:0px;
  11353. top:0px;
  11354. width:8px;
  11355. height:14px;
  11356. }
  11357. #u80033 {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:858px;
  11361. top:814px;
  11362. width:8px;
  11363. height:14px;
  11364. display:flex;
  11365. font-family:'Microsoft YaHei', sans-serif;
  11366. font-weight:400;
  11367. font-style:normal;
  11368. font-size:12px;
  11369. }
  11370. #u80033 .text {
  11371. position:absolute;
  11372. align-self:center;
  11373. padding:2px 2px 2px 2px;
  11374. box-sizing:border-box;
  11375. width:100%;
  11376. }
  11377. #u80033_text {
  11378. border-width:0px;
  11379. word-wrap:break-word;
  11380. text-transform:none;
  11381. visibility:hidden;
  11382. }
  11383. #u80034 {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:0px;
  11389. height:0px;
  11390. }
  11391. #u80035_div {
  11392. border-width:0px;
  11393. position:absolute;
  11394. left:0px;
  11395. top:0px;
  11396. width:31px;
  11397. height:30px;
  11398. background:inherit;
  11399. background-color:rgba(255, 255, 255, 1);
  11400. box-sizing:border-box;
  11401. border-width:1px;
  11402. border-style:solid;
  11403. border-color:rgba(228, 228, 228, 1);
  11404. border-radius:4px;
  11405. -moz-box-shadow:none;
  11406. -webkit-box-shadow:none;
  11407. box-shadow:none;
  11408. font-family:'Microsoft YaHei', sans-serif;
  11409. font-weight:400;
  11410. font-style:normal;
  11411. font-size:12px;
  11412. }
  11413. #u80035 {
  11414. border-width:0px;
  11415. position:absolute;
  11416. left:845px;
  11417. top:844px;
  11418. width:31px;
  11419. height:30px;
  11420. display:flex;
  11421. font-family:'Microsoft YaHei', sans-serif;
  11422. font-weight:400;
  11423. font-style:normal;
  11424. font-size:12px;
  11425. }
  11426. #u80035 .text {
  11427. position:absolute;
  11428. align-self:center;
  11429. padding:2px 2px 2px 2px;
  11430. box-sizing:border-box;
  11431. width:100%;
  11432. }
  11433. #u80035_text {
  11434. border-width:0px;
  11435. word-wrap:break-word;
  11436. text-transform:none;
  11437. visibility:hidden;
  11438. }
  11439. #u80036_img {
  11440. border-width:0px;
  11441. position:absolute;
  11442. left:0px;
  11443. top:0px;
  11444. width:8px;
  11445. height:14px;
  11446. }
  11447. #u80036 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:858px;
  11451. top:852px;
  11452. width:8px;
  11453. height:14px;
  11454. display:flex;
  11455. -webkit-transform:rotate(180deg);
  11456. -moz-transform:rotate(180deg);
  11457. -ms-transform:rotate(180deg);
  11458. transform:rotate(180deg);
  11459. font-family:'Microsoft YaHei', sans-serif;
  11460. font-weight:400;
  11461. font-style:normal;
  11462. font-size:12px;
  11463. }
  11464. #u80036 .text {
  11465. position:absolute;
  11466. align-self:center;
  11467. padding:2px 2px 2px 2px;
  11468. box-sizing:border-box;
  11469. width:100%;
  11470. }
  11471. #u80036_text {
  11472. border-width:0px;
  11473. word-wrap:break-word;
  11474. text-transform:none;
  11475. visibility:hidden;
  11476. }
  11477. #u80037 {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:0px;
  11483. height:0px;
  11484. }
  11485. #u80038 {
  11486. border-width:0px;
  11487. position:absolute;
  11488. left:0px;
  11489. top:0px;
  11490. width:0px;
  11491. height:0px;
  11492. }
  11493. #u80039_div {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:0px;
  11497. top:0px;
  11498. width:31px;
  11499. height:30px;
  11500. background:inherit;
  11501. background-color:rgba(242, 242, 242, 1);
  11502. box-sizing:border-box;
  11503. border-width:1px;
  11504. border-style:solid;
  11505. border-color:rgba(228, 228, 228, 1);
  11506. border-radius:4px;
  11507. -moz-box-shadow:none;
  11508. -webkit-box-shadow:none;
  11509. box-shadow:none;
  11510. font-family:'Microsoft YaHei', sans-serif;
  11511. font-weight:400;
  11512. font-style:normal;
  11513. font-size:12px;
  11514. }
  11515. #u80039 {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:1111px;
  11519. top:954px;
  11520. width:31px;
  11521. height:30px;
  11522. display:flex;
  11523. font-family:'Microsoft YaHei', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:12px;
  11527. }
  11528. #u80039 .text {
  11529. position:absolute;
  11530. align-self:center;
  11531. padding:2px 2px 2px 2px;
  11532. box-sizing:border-box;
  11533. width:100%;
  11534. }
  11535. #u80039_text {
  11536. border-width:0px;
  11537. word-wrap:break-word;
  11538. text-transform:none;
  11539. visibility:hidden;
  11540. }
  11541. #u80040_img {
  11542. border-width:0px;
  11543. position:absolute;
  11544. left:0px;
  11545. top:0px;
  11546. width:8px;
  11547. height:14px;
  11548. }
  11549. #u80040 {
  11550. border-width:0px;
  11551. position:absolute;
  11552. left:1123px;
  11553. top:962px;
  11554. width:8px;
  11555. height:14px;
  11556. display:flex;
  11557. opacity:0.3;
  11558. font-family:'Microsoft YaHei', sans-serif;
  11559. font-weight:400;
  11560. font-style:normal;
  11561. font-size:12px;
  11562. }
  11563. #u80040 .text {
  11564. position:absolute;
  11565. align-self:center;
  11566. padding:2px 2px 2px 2px;
  11567. box-sizing:border-box;
  11568. width:100%;
  11569. }
  11570. #u80040_text {
  11571. border-width:0px;
  11572. word-wrap:break-word;
  11573. text-transform:none;
  11574. visibility:hidden;
  11575. }
  11576. #u80041 {
  11577. border-width:0px;
  11578. position:absolute;
  11579. left:0px;
  11580. top:0px;
  11581. width:0px;
  11582. height:0px;
  11583. }
  11584. #u80042_div {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:0px;
  11588. top:0px;
  11589. width:31px;
  11590. height:30px;
  11591. background:inherit;
  11592. background-color:rgba(255, 255, 255, 1);
  11593. box-sizing:border-box;
  11594. border-width:1px;
  11595. border-style:solid;
  11596. border-color:rgba(228, 228, 228, 1);
  11597. border-radius:4px;
  11598. -moz-box-shadow:none;
  11599. -webkit-box-shadow:none;
  11600. box-shadow:none;
  11601. font-family:'Microsoft YaHei', sans-serif;
  11602. font-weight:400;
  11603. font-style:normal;
  11604. font-size:12px;
  11605. }
  11606. #u80042 {
  11607. border-width:0px;
  11608. position:absolute;
  11609. left:1196px;
  11610. top:954px;
  11611. width:31px;
  11612. height:30px;
  11613. display:flex;
  11614. font-family:'Microsoft YaHei', sans-serif;
  11615. font-weight:400;
  11616. font-style:normal;
  11617. font-size:12px;
  11618. }
  11619. #u80042 .text {
  11620. position:absolute;
  11621. align-self:center;
  11622. padding:2px 2px 2px 2px;
  11623. box-sizing:border-box;
  11624. width:100%;
  11625. }
  11626. #u80042_text {
  11627. border-width:0px;
  11628. word-wrap:break-word;
  11629. text-transform:none;
  11630. visibility:hidden;
  11631. }
  11632. #u80043_img {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:0px;
  11636. top:0px;
  11637. width:8px;
  11638. height:14px;
  11639. }
  11640. #u80043 {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:1209px;
  11644. top:962px;
  11645. width:8px;
  11646. height:14px;
  11647. display:flex;
  11648. font-family:'Microsoft YaHei', sans-serif;
  11649. font-weight:400;
  11650. font-style:normal;
  11651. font-size:12px;
  11652. }
  11653. #u80043 .text {
  11654. position:absolute;
  11655. align-self:center;
  11656. padding:2px 2px 2px 2px;
  11657. box-sizing:border-box;
  11658. width:100%;
  11659. }
  11660. #u80043_text {
  11661. border-width:0px;
  11662. word-wrap:break-word;
  11663. text-transform:none;
  11664. visibility:hidden;
  11665. }
  11666. #u80044_div {
  11667. border-width:0px;
  11668. position:absolute;
  11669. left:0px;
  11670. top:0px;
  11671. width:32px;
  11672. height:21px;
  11673. background:inherit;
  11674. background-color:rgba(255, 255, 255, 1);
  11675. border:none;
  11676. border-radius:15px;
  11677. -moz-box-shadow:none;
  11678. -webkit-box-shadow:none;
  11679. box-shadow:none;
  11680. font-family:'微软雅黑', sans-serif;
  11681. font-weight:400;
  11682. font-style:normal;
  11683. font-size:14px;
  11684. color:#1E1E1E;
  11685. }
  11686. #u80044 {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:1152px;
  11690. top:959px;
  11691. width:32px;
  11692. height:21px;
  11693. display:flex;
  11694. font-family:'微软雅黑', sans-serif;
  11695. font-weight:400;
  11696. font-style:normal;
  11697. font-size:14px;
  11698. color:#1E1E1E;
  11699. }
  11700. #u80044 .text {
  11701. position:absolute;
  11702. align-self:center;
  11703. padding:2px 2px 2px 2px;
  11704. box-sizing:border-box;
  11705. width:100%;
  11706. }
  11707. #u80044_text {
  11708. border-width:0px;
  11709. white-space:nowrap;
  11710. text-transform:none;
  11711. }
  11712. #u80045_div {
  11713. border-width:0px;
  11714. position:absolute;
  11715. left:0px;
  11716. top:0px;
  11717. width:79px;
  11718. height:30px;
  11719. background:inherit;
  11720. background-color:rgba(255, 255, 255, 1);
  11721. box-sizing:border-box;
  11722. border-width:1px;
  11723. border-style:solid;
  11724. border-color:rgba(170, 170, 170, 1);
  11725. border-radius:4px;
  11726. -moz-box-shadow:none;
  11727. -webkit-box-shadow:none;
  11728. box-shadow:none;
  11729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11730. font-weight:400;
  11731. font-style:normal;
  11732. font-size:12px;
  11733. color:#555555;
  11734. }
  11735. #u80045 {
  11736. border-width:0px;
  11737. position:absolute;
  11738. left:485px;
  11739. top:160px;
  11740. width:79px;
  11741. height:30px;
  11742. display:flex;
  11743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11744. font-weight:400;
  11745. font-style:normal;
  11746. font-size:12px;
  11747. color:#555555;
  11748. }
  11749. #u80045 .text {
  11750. position:absolute;
  11751. align-self:center;
  11752. padding:5px 15px 5px 15px;
  11753. box-sizing:border-box;
  11754. width:100%;
  11755. }
  11756. #u80045_text {
  11757. border-width:0px;
  11758. white-space:nowrap;
  11759. text-transform:none;
  11760. }
  11761. #u80046_div {
  11762. border-width:0px;
  11763. position:absolute;
  11764. left:0px;
  11765. top:0px;
  11766. width:843px;
  11767. height:30px;
  11768. background:inherit;
  11769. background-color:rgba(255, 255, 255, 0);
  11770. border:none;
  11771. border-radius:0px;
  11772. -moz-box-shadow:none;
  11773. -webkit-box-shadow:none;
  11774. box-shadow:none;
  11775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11776. font-weight:400;
  11777. font-style:normal;
  11778. font-size:18px;
  11779. color:#D9001B;
  11780. line-height:30px;
  11781. }
  11782. #u80046 {
  11783. border-width:0px;
  11784. position:absolute;
  11785. left:363px;
  11786. top:515px;
  11787. width:843px;
  11788. height:30px;
  11789. display:flex;
  11790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11791. font-weight:400;
  11792. font-style:normal;
  11793. font-size:18px;
  11794. color:#D9001B;
  11795. line-height:30px;
  11796. }
  11797. #u80046 .text {
  11798. position:absolute;
  11799. align-self:flex-start;
  11800. padding:0px 0px 0px 0px;
  11801. box-sizing:border-box;
  11802. width:100%;
  11803. }
  11804. #u80046_text {
  11805. border-width:0px;
  11806. white-space:nowrap;
  11807. text-transform:none;
  11808. }