styles.css 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366
  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. #u79470_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. #u79470 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u79470 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u79470_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u79471_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. #u79471 {
  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. #u79471 .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. #u79471_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u79472_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. #u79472 {
  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. #u79472 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u79472_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u79473 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u79474_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u79474 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u79474 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u79474_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u79475_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. #u79475 {
  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. #u79475 .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. #u79475_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u79476_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. #u79476 {
  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. #u79476 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u79476_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u79477 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u79478_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. #u79478 {
  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. #u79478 .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. #u79478_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u79479_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u79479 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u79479 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u79479_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u79480 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u79481_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. #u79481 {
  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. #u79481 .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. #u79481_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u79482_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u79482 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u79482 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u79482_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u79483 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u79484_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. #u79484 {
  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. #u79484 .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. #u79484_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79485_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79485 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u79485 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u79485_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u79486 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u79487_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. #u79487 {
  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. #u79487 .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. #u79487_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u79488_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u79488 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u79488 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u79488_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u79489 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u79490_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. #u79490 {
  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. #u79490 .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. #u79490_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u79491_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u79491 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u79491 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u79491_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u79492 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u79493_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. #u79493 {
  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. #u79493 .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. #u79493_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u79494_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u79494 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u79494 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u79494_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u79495 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u79496_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. #u79496 {
  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. #u79496 .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. #u79496_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u79497_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u79497 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u79497 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u79497_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u79498 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u79499_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. #u79499 {
  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. #u79499 .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. #u79499_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u79500_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u79500 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u79500 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u79500_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u79501 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u79502_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. #u79502 {
  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. #u79502 .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. #u79502_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u79503_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u79503 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u79503 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u79503_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u79504_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. #u79504 {
  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. #u79504 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u79504_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u79505_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u79505 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u79505 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u79505_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u79506_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. #u79506 {
  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. #u79506 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u79506_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u79507_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u79507 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u79507 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u79507_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u79508 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u79509_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. #u79509 {
  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. #u79509 .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. #u79509_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u79510_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u79510 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u79510 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u79510_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u79511 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u79512_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. #u79512 {
  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. #u79512 .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. #u79512_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u79513_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u79513 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u79513 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u79513_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u79514 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u79515_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. #u79515_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. #u79515_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. #u79515 {
  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. #u79515 .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. #u79515_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. #u79515.disabled {
  1428. }
  1429. .u79515_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u79516_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u79516 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u79516 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u79516_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u79517_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. #u79517 {
  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. #u79517 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u79517_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u79518_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u79518 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u79518 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u79518_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u79519_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. #u79519 {
  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. #u79519 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u79519_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u79520_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. #u79520 {
  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. #u79520 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u79520_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u79521 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:0px;
  1642. height:0px;
  1643. }
  1644. #u79522 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:0px;
  1650. height:0px;
  1651. }
  1652. #u79523_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. #u79523 {
  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. #u79523 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:5px 15px 5px 15px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u79523_text {
  1697. border-width:0px;
  1698. white-space:nowrap;
  1699. text-transform:none;
  1700. }
  1701. #u79524_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. #u79524 {
  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. #u79524 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:5px 15px 5px 15px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u79524_text {
  1746. border-width:0px;
  1747. white-space:nowrap;
  1748. text-transform:none;
  1749. }
  1750. #u79525 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:0px;
  1756. height:0px;
  1757. }
  1758. #u79526_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. #u79526 {
  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. #u79526 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u79526_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u79527_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. #u79527_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. #u79527_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. #u79527 {
  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. #u79527 .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. #u79527_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. #u79527.disabled {
  1891. }
  1892. .u79527_input_option {
  1893. font-size:11px;
  1894. }
  1895. #u79528 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:0px;
  1901. height:0px;
  1902. }
  1903. #u79529_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. #u79529 {
  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. #u79529 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 8px 2px 8px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u79529_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. visibility:hidden;
  1954. }
  1955. #u79530_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. #u79530_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. #u79530_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. #u79530 {
  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. #u79530 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u79530_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. #u79530.disabled {
  2052. }
  2053. #u79531 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:0px;
  2059. height:0px;
  2060. }
  2061. #u79532_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. #u79532 {
  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. #u79532 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:8px 15px 8px 15px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u79532_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u79533_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:18px;
  2117. height:18px;
  2118. }
  2119. #u79533 {
  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. #u79533 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u79533_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u79534 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:350px;
  2146. top:210px;
  2147. width:1222px;
  2148. height:293px;
  2149. }
  2150. #u79535_img {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:102px;
  2156. height:34px;
  2157. }
  2158. #u79535 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:102px;
  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. #u79535 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 10px 2px 10px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u79535_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. }
  2186. #u79536_img {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:102px;
  2192. height:34px;
  2193. }
  2194. #u79536 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:102px;
  2198. top:0px;
  2199. width:102px;
  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. #u79536 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 10px 2px 10px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u79536_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u79537_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:134px;
  2228. height:34px;
  2229. }
  2230. #u79537 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:204px;
  2234. top:0px;
  2235. width:134px;
  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. #u79537 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 10px 2px 10px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u79537_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. }
  2258. #u79538_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:134px;
  2264. height:34px;
  2265. }
  2266. #u79538 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:338px;
  2270. top:0px;
  2271. width:134px;
  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. #u79538 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 10px 2px 10px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u79538_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. }
  2294. #u79539_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:139px;
  2300. height:34px;
  2301. }
  2302. #u79539 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:472px;
  2306. top:0px;
  2307. width:139px;
  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. #u79539 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 10px 2px 10px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u79539_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. }
  2330. #u79540_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:134px;
  2336. height:34px;
  2337. }
  2338. #u79540 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:611px;
  2342. top:0px;
  2343. width:134px;
  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. #u79540 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 10px 2px 10px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u79540_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. }
  2366. #u79541_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:134px;
  2372. height:34px;
  2373. }
  2374. #u79541 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:745px;
  2378. top:0px;
  2379. width:134px;
  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. #u79541 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 10px 2px 10px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u79541_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u79542_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:139px;
  2408. height:34px;
  2409. }
  2410. #u79542 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:879px;
  2414. top:0px;
  2415. width:139px;
  2416. height:34px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. color:#FFFFFF;
  2423. text-align:left;
  2424. line-height:30px;
  2425. }
  2426. #u79542 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 10px 2px 10px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u79542_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. }
  2438. #u79543_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:204px;
  2444. height:34px;
  2445. }
  2446. #u79543 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:1018px;
  2450. top:0px;
  2451. width:204px;
  2452. height:34px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:14px;
  2458. color:#FFFFFF;
  2459. text-align:left;
  2460. line-height:30px;
  2461. }
  2462. #u79543 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 10px 2px 10px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u79543_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. }
  2474. #u79544_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:102px;
  2480. height:37px;
  2481. }
  2482. #u79544 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:34px;
  2487. width:102px;
  2488. height:37px;
  2489. display:flex;
  2490. font-size:14px;
  2491. text-align:left;
  2492. }
  2493. #u79544 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 10px 2px 10px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u79544_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. visibility:hidden;
  2505. }
  2506. #u79545_img {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:102px;
  2512. height:37px;
  2513. }
  2514. #u79545 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:102px;
  2518. top:34px;
  2519. width:102px;
  2520. height:37px;
  2521. display:flex;
  2522. font-size:14px;
  2523. text-align:left;
  2524. }
  2525. #u79545 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 10px 2px 10px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u79545_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u79546_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:134px;
  2544. height:37px;
  2545. }
  2546. #u79546 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:204px;
  2550. top:34px;
  2551. width:134px;
  2552. height:37px;
  2553. display:flex;
  2554. font-size:14px;
  2555. text-align:left;
  2556. }
  2557. #u79546 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:2px 10px 2px 10px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u79546_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u79547_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:134px;
  2575. height:37px;
  2576. }
  2577. #u79547 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:338px;
  2581. top:34px;
  2582. width:134px;
  2583. height:37px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:14px;
  2589. text-align:left;
  2590. }
  2591. #u79547 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 10px 2px 10px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u79547_text {
  2599. border-width:0px;
  2600. word-wrap:break-word;
  2601. text-transform:none;
  2602. }
  2603. #u79548_img {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:139px;
  2609. height:37px;
  2610. }
  2611. #u79548 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:472px;
  2615. top:34px;
  2616. width:139px;
  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. text-align:left;
  2624. }
  2625. #u79548 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 10px 2px 10px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u79548_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u79549_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:134px;
  2644. height:37px;
  2645. }
  2646. #u79549 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:611px;
  2650. top:34px;
  2651. width:134px;
  2652. height:37px;
  2653. display:flex;
  2654. font-size:14px;
  2655. text-align:left;
  2656. }
  2657. #u79549 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 10px 2px 10px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u79549_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. visibility:hidden;
  2669. }
  2670. #u79550_img {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:134px;
  2676. height:37px;
  2677. }
  2678. #u79550 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:745px;
  2682. top:34px;
  2683. width:134px;
  2684. height:37px;
  2685. display:flex;
  2686. font-size:14px;
  2687. text-align:left;
  2688. }
  2689. #u79550 .text {
  2690. position:absolute;
  2691. align-self:center;
  2692. padding:2px 10px 2px 10px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u79550_text {
  2697. border-width:0px;
  2698. word-wrap:break-word;
  2699. text-transform:none;
  2700. visibility:hidden;
  2701. }
  2702. #u79551_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:139px;
  2708. height:37px;
  2709. }
  2710. #u79551 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:879px;
  2714. top:34px;
  2715. width:139px;
  2716. height:37px;
  2717. display:flex;
  2718. font-size:14px;
  2719. text-align:left;
  2720. }
  2721. #u79551 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 10px 2px 10px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u79551_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u79552_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:204px;
  2740. height:37px;
  2741. }
  2742. #u79552 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:1018px;
  2746. top:34px;
  2747. width:204px;
  2748. height:37px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. text-align:left;
  2755. }
  2756. #u79552 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 10px 2px 10px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u79552_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u79553_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:102px;
  2774. height:37px;
  2775. }
  2776. #u79553 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:71px;
  2781. width:102px;
  2782. height:37px;
  2783. display:flex;
  2784. font-size:14px;
  2785. text-align:left;
  2786. }
  2787. #u79553 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 10px 2px 10px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u79553_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u79554_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:102px;
  2806. height:37px;
  2807. }
  2808. #u79554 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:102px;
  2812. top:71px;
  2813. width:102px;
  2814. height:37px;
  2815. display:flex;
  2816. font-size:14px;
  2817. text-align:left;
  2818. }
  2819. #u79554 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 10px 2px 10px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u79554_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u79555_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:134px;
  2838. height:37px;
  2839. }
  2840. #u79555 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:204px;
  2844. top:71px;
  2845. width:134px;
  2846. height:37px;
  2847. display:flex;
  2848. font-size:14px;
  2849. text-align:left;
  2850. }
  2851. #u79555 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 10px 2px 10px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u79555_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u79556_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:134px;
  2869. height:37px;
  2870. }
  2871. #u79556 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:338px;
  2875. top:71px;
  2876. width:134px;
  2877. height:37px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:14px;
  2883. text-align:left;
  2884. }
  2885. #u79556 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 10px 2px 10px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u79556_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u79557_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:139px;
  2903. height:37px;
  2904. }
  2905. #u79557 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:472px;
  2909. top:71px;
  2910. width:139px;
  2911. height:37px;
  2912. display:flex;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:14px;
  2917. text-align:left;
  2918. }
  2919. #u79557 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 10px 2px 10px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u79557_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u79558_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:134px;
  2938. height:37px;
  2939. }
  2940. #u79558 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:611px;
  2944. top:71px;
  2945. width:134px;
  2946. height:37px;
  2947. display:flex;
  2948. font-size:14px;
  2949. text-align:left;
  2950. }
  2951. #u79558 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 10px 2px 10px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u79558_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u79559_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:134px;
  2970. height:37px;
  2971. }
  2972. #u79559 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:745px;
  2976. top:71px;
  2977. width:134px;
  2978. height:37px;
  2979. display:flex;
  2980. font-size:14px;
  2981. text-align:left;
  2982. }
  2983. #u79559 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 10px 2px 10px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u79559_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u79560_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:139px;
  3002. height:37px;
  3003. }
  3004. #u79560 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:879px;
  3008. top:71px;
  3009. width:139px;
  3010. height:37px;
  3011. display:flex;
  3012. font-size:14px;
  3013. text-align:left;
  3014. }
  3015. #u79560 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 10px 2px 10px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u79560_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u79561_img {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:204px;
  3034. height:37px;
  3035. }
  3036. #u79561 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:1018px;
  3040. top:71px;
  3041. width:204px;
  3042. height:37px;
  3043. display:flex;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:14px;
  3048. color:#1890FF;
  3049. text-align:left;
  3050. }
  3051. #u79561 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 10px 2px 10px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u79561_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. }
  3063. #u79562_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:102px;
  3069. height:37px;
  3070. }
  3071. #u79562 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:108px;
  3076. width:102px;
  3077. height:37px;
  3078. display:flex;
  3079. font-size:14px;
  3080. text-align:left;
  3081. }
  3082. #u79562 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 10px 2px 10px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u79562_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u79563_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:102px;
  3101. height:37px;
  3102. }
  3103. #u79563 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:102px;
  3107. top:108px;
  3108. width:102px;
  3109. height:37px;
  3110. display:flex;
  3111. font-size:14px;
  3112. text-align:left;
  3113. }
  3114. #u79563 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 10px 2px 10px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u79563_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u79564_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:134px;
  3133. height:37px;
  3134. }
  3135. #u79564 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:204px;
  3139. top:108px;
  3140. width:134px;
  3141. height:37px;
  3142. display:flex;
  3143. font-size:14px;
  3144. text-align:left;
  3145. }
  3146. #u79564 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 10px 2px 10px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u79564_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. }
  3158. #u79565_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:134px;
  3164. height:37px;
  3165. }
  3166. #u79565 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:338px;
  3170. top:108px;
  3171. width:134px;
  3172. height:37px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:14px;
  3178. text-align:left;
  3179. }
  3180. #u79565 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 10px 2px 10px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u79565_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. }
  3192. #u79566_img {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:139px;
  3198. height:37px;
  3199. }
  3200. #u79566 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:472px;
  3204. top:108px;
  3205. width:139px;
  3206. height:37px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. text-align:left;
  3213. }
  3214. #u79566 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 10px 2px 10px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u79566_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u79567_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:134px;
  3233. height:37px;
  3234. }
  3235. #u79567 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:611px;
  3239. top:108px;
  3240. width:134px;
  3241. height:37px;
  3242. display:flex;
  3243. font-size:14px;
  3244. text-align:left;
  3245. }
  3246. #u79567 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 10px 2px 10px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u79567_text {
  3254. border-width:0px;
  3255. word-wrap:break-word;
  3256. text-transform:none;
  3257. visibility:hidden;
  3258. }
  3259. #u79568_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:134px;
  3265. height:37px;
  3266. }
  3267. #u79568 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:745px;
  3271. top:108px;
  3272. width:134px;
  3273. height:37px;
  3274. display:flex;
  3275. font-size:14px;
  3276. text-align:left;
  3277. }
  3278. #u79568 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 10px 2px 10px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u79568_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u79569_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:139px;
  3297. height:37px;
  3298. }
  3299. #u79569 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:879px;
  3303. top:108px;
  3304. width:139px;
  3305. height:37px;
  3306. display:flex;
  3307. font-size:14px;
  3308. text-align:left;
  3309. }
  3310. #u79569 .text {
  3311. position:absolute;
  3312. align-self:center;
  3313. padding:2px 10px 2px 10px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u79569_text {
  3318. border-width:0px;
  3319. word-wrap:break-word;
  3320. text-transform:none;
  3321. visibility:hidden;
  3322. }
  3323. #u79570_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:204px;
  3329. height:37px;
  3330. }
  3331. #u79570 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:1018px;
  3335. top:108px;
  3336. width:204px;
  3337. height:37px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:14px;
  3343. color:#1890FF;
  3344. text-align:left;
  3345. }
  3346. #u79570 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 10px 2px 10px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u79570_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. }
  3358. #u79571_img {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:102px;
  3364. height:37px;
  3365. }
  3366. #u79571 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:145px;
  3371. width:102px;
  3372. height:37px;
  3373. display:flex;
  3374. font-size:14px;
  3375. text-align:left;
  3376. }
  3377. #u79571 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 10px 2px 10px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u79571_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. visibility:hidden;
  3389. }
  3390. #u79572_img {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:102px;
  3396. height:37px;
  3397. }
  3398. #u79572 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:102px;
  3402. top:145px;
  3403. width:102px;
  3404. height:37px;
  3405. display:flex;
  3406. font-size:14px;
  3407. text-align:left;
  3408. }
  3409. #u79572 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:2px 10px 2px 10px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u79572_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. visibility:hidden;
  3421. }
  3422. #u79573_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:134px;
  3428. height:37px;
  3429. }
  3430. #u79573 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:204px;
  3434. top:145px;
  3435. width:134px;
  3436. height:37px;
  3437. display:flex;
  3438. font-size:14px;
  3439. text-align:left;
  3440. }
  3441. #u79573 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 10px 2px 10px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u79573_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u79574_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:134px;
  3460. height:37px;
  3461. }
  3462. #u79574 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:338px;
  3466. top:145px;
  3467. width:134px;
  3468. height:37px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:14px;
  3474. text-align:left;
  3475. }
  3476. #u79574 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 10px 2px 10px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u79574_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u79575_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:139px;
  3495. height:37px;
  3496. }
  3497. #u79575 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:472px;
  3501. top:145px;
  3502. width:139px;
  3503. height:37px;
  3504. display:flex;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:14px;
  3509. text-align:left;
  3510. }
  3511. #u79575 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 10px 2px 10px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u79575_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u79576_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:134px;
  3530. height:37px;
  3531. }
  3532. #u79576 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:611px;
  3536. top:145px;
  3537. width:134px;
  3538. height:37px;
  3539. display:flex;
  3540. font-size:14px;
  3541. text-align:left;
  3542. }
  3543. #u79576 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 10px 2px 10px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u79576_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u79577_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:134px;
  3562. height:37px;
  3563. }
  3564. #u79577 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:745px;
  3568. top:145px;
  3569. width:134px;
  3570. height:37px;
  3571. display:flex;
  3572. font-size:14px;
  3573. text-align:left;
  3574. }
  3575. #u79577 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 10px 2px 10px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u79577_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u79578_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:139px;
  3594. height:37px;
  3595. }
  3596. #u79578 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:879px;
  3600. top:145px;
  3601. width:139px;
  3602. height:37px;
  3603. display:flex;
  3604. font-size:14px;
  3605. text-align:left;
  3606. }
  3607. #u79578 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 10px 2px 10px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u79578_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u79579_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:204px;
  3626. height:37px;
  3627. }
  3628. #u79579 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:1018px;
  3632. top:145px;
  3633. width:204px;
  3634. height:37px;
  3635. display:flex;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:14px;
  3640. color:#1890FF;
  3641. text-align:left;
  3642. }
  3643. #u79579 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 10px 2px 10px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u79579_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u79580_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:102px;
  3662. height:37px;
  3663. }
  3664. #u79580 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:182px;
  3669. width:102px;
  3670. height:37px;
  3671. display:flex;
  3672. font-size:14px;
  3673. text-align:left;
  3674. }
  3675. #u79580 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 10px 2px 10px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u79580_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u79581_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:102px;
  3694. height:37px;
  3695. }
  3696. #u79581 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:102px;
  3700. top:182px;
  3701. width:102px;
  3702. height:37px;
  3703. display:flex;
  3704. font-size:14px;
  3705. text-align:left;
  3706. }
  3707. #u79581 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 10px 2px 10px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u79581_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u79582_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:134px;
  3726. height:37px;
  3727. }
  3728. #u79582 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:204px;
  3732. top:182px;
  3733. width:134px;
  3734. height:37px;
  3735. display:flex;
  3736. font-size:14px;
  3737. text-align:left;
  3738. }
  3739. #u79582 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 10px 2px 10px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u79582_text {
  3747. border-width:0px;
  3748. word-wrap:break-word;
  3749. text-transform:none;
  3750. visibility:hidden;
  3751. }
  3752. #u79583_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:134px;
  3758. height:37px;
  3759. }
  3760. #u79583 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:338px;
  3764. top:182px;
  3765. width:134px;
  3766. height:37px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:14px;
  3772. text-align:left;
  3773. }
  3774. #u79583 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 10px 2px 10px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u79583_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u79584_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:139px;
  3793. height:37px;
  3794. }
  3795. #u79584 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:472px;
  3799. top:182px;
  3800. width:139px;
  3801. height:37px;
  3802. display:flex;
  3803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3804. font-weight:400;
  3805. font-style:normal;
  3806. font-size:14px;
  3807. text-align:left;
  3808. }
  3809. #u79584 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 10px 2px 10px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u79584_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u79585_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:134px;
  3828. height:37px;
  3829. }
  3830. #u79585 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:611px;
  3834. top:182px;
  3835. width:134px;
  3836. height:37px;
  3837. display:flex;
  3838. font-size:14px;
  3839. text-align:left;
  3840. }
  3841. #u79585 .text {
  3842. position:absolute;
  3843. align-self:center;
  3844. padding:2px 10px 2px 10px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u79585_text {
  3849. border-width:0px;
  3850. word-wrap:break-word;
  3851. text-transform:none;
  3852. visibility:hidden;
  3853. }
  3854. #u79586_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:134px;
  3860. height:37px;
  3861. }
  3862. #u79586 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:745px;
  3866. top:182px;
  3867. width:134px;
  3868. height:37px;
  3869. display:flex;
  3870. font-size:14px;
  3871. text-align:left;
  3872. }
  3873. #u79586 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 10px 2px 10px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u79586_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u79587_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:139px;
  3892. height:37px;
  3893. }
  3894. #u79587 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:879px;
  3898. top:182px;
  3899. width:139px;
  3900. height:37px;
  3901. display:flex;
  3902. font-size:14px;
  3903. text-align:left;
  3904. }
  3905. #u79587 .text {
  3906. position:absolute;
  3907. align-self:center;
  3908. padding:2px 10px 2px 10px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u79587_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u79588_img {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:204px;
  3924. height:37px;
  3925. }
  3926. #u79588 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:1018px;
  3930. top:182px;
  3931. width:204px;
  3932. height:37px;
  3933. display:flex;
  3934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:14px;
  3938. color:#1890FF;
  3939. text-align:left;
  3940. }
  3941. #u79588 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 10px 2px 10px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u79588_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u79589_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:102px;
  3960. height:37px;
  3961. }
  3962. #u79589 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:219px;
  3967. width:102px;
  3968. height:37px;
  3969. display:flex;
  3970. font-size:14px;
  3971. text-align:left;
  3972. }
  3973. #u79589 .text {
  3974. position:absolute;
  3975. align-self:center;
  3976. padding:2px 10px 2px 10px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u79589_text {
  3981. border-width:0px;
  3982. word-wrap:break-word;
  3983. text-transform:none;
  3984. visibility:hidden;
  3985. }
  3986. #u79590_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:102px;
  3992. height:37px;
  3993. }
  3994. #u79590 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:102px;
  3998. top:219px;
  3999. width:102px;
  4000. height:37px;
  4001. display:flex;
  4002. font-size:14px;
  4003. text-align:left;
  4004. }
  4005. #u79590 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 10px 2px 10px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u79590_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u79591_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:134px;
  4024. height:37px;
  4025. }
  4026. #u79591 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:204px;
  4030. top:219px;
  4031. width:134px;
  4032. height:37px;
  4033. display:flex;
  4034. font-size:14px;
  4035. text-align:left;
  4036. }
  4037. #u79591 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 10px 2px 10px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u79591_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u79592_img {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:134px;
  4056. height:37px;
  4057. }
  4058. #u79592 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:338px;
  4062. top:219px;
  4063. width:134px;
  4064. height:37px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:14px;
  4070. text-align:left;
  4071. }
  4072. #u79592 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 10px 2px 10px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u79592_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u79593_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:139px;
  4091. height:37px;
  4092. }
  4093. #u79593 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:472px;
  4097. top:219px;
  4098. width:139px;
  4099. height:37px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:14px;
  4105. text-align:left;
  4106. }
  4107. #u79593 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 10px 2px 10px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u79593_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u79594_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:134px;
  4126. height:37px;
  4127. }
  4128. #u79594 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:611px;
  4132. top:219px;
  4133. width:134px;
  4134. height:37px;
  4135. display:flex;
  4136. font-size:14px;
  4137. text-align:left;
  4138. }
  4139. #u79594 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 10px 2px 10px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u79594_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. visibility:hidden;
  4151. }
  4152. #u79595_img {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:134px;
  4158. height:37px;
  4159. }
  4160. #u79595 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:745px;
  4164. top:219px;
  4165. width:134px;
  4166. height:37px;
  4167. display:flex;
  4168. font-size:14px;
  4169. text-align:left;
  4170. }
  4171. #u79595 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 10px 2px 10px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u79595_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u79596_img {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:139px;
  4190. height:37px;
  4191. }
  4192. #u79596 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:879px;
  4196. top:219px;
  4197. width:139px;
  4198. height:37px;
  4199. display:flex;
  4200. font-size:14px;
  4201. text-align:left;
  4202. }
  4203. #u79596 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 10px 2px 10px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u79596_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u79597_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:204px;
  4222. height:37px;
  4223. }
  4224. #u79597 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:1018px;
  4228. top:219px;
  4229. width:204px;
  4230. height:37px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:14px;
  4236. color:#1890FF;
  4237. text-align:left;
  4238. }
  4239. #u79597 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 10px 2px 10px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u79597_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u79598_img {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:102px;
  4258. height:37px;
  4259. }
  4260. #u79598 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:256px;
  4265. width:102px;
  4266. height:37px;
  4267. display:flex;
  4268. font-size:14px;
  4269. text-align:left;
  4270. }
  4271. #u79598 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 10px 2px 10px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u79598_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. visibility:hidden;
  4283. }
  4284. #u79599_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:102px;
  4290. height:37px;
  4291. }
  4292. #u79599 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:102px;
  4296. top:256px;
  4297. width:102px;
  4298. height:37px;
  4299. display:flex;
  4300. font-size:14px;
  4301. text-align:left;
  4302. }
  4303. #u79599 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 10px 2px 10px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u79599_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u79600_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:134px;
  4322. height:37px;
  4323. }
  4324. #u79600 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:204px;
  4328. top:256px;
  4329. width:134px;
  4330. height:37px;
  4331. display:flex;
  4332. font-size:14px;
  4333. text-align:left;
  4334. }
  4335. #u79600 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 10px 2px 10px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u79600_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u79601_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:134px;
  4354. height:37px;
  4355. }
  4356. #u79601 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:338px;
  4360. top:256px;
  4361. width:134px;
  4362. height:37px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:14px;
  4368. text-align:left;
  4369. }
  4370. #u79601 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 10px 2px 10px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u79601_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u79602_img {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:139px;
  4389. height:37px;
  4390. }
  4391. #u79602 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:472px;
  4395. top:256px;
  4396. width:139px;
  4397. height:37px;
  4398. display:flex;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:14px;
  4403. text-align:left;
  4404. }
  4405. #u79602 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 10px 2px 10px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u79602_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u79603_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:134px;
  4424. height:37px;
  4425. }
  4426. #u79603 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:611px;
  4430. top:256px;
  4431. width:134px;
  4432. height:37px;
  4433. display:flex;
  4434. font-size:14px;
  4435. text-align:left;
  4436. }
  4437. #u79603 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 10px 2px 10px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u79603_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u79604_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:134px;
  4456. height:37px;
  4457. }
  4458. #u79604 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:745px;
  4462. top:256px;
  4463. width:134px;
  4464. height:37px;
  4465. display:flex;
  4466. font-size:14px;
  4467. text-align:left;
  4468. }
  4469. #u79604 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 10px 2px 10px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u79604_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u79605_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:139px;
  4488. height:37px;
  4489. }
  4490. #u79605 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:879px;
  4494. top:256px;
  4495. width:139px;
  4496. height:37px;
  4497. display:flex;
  4498. font-size:14px;
  4499. text-align:left;
  4500. }
  4501. #u79605 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 10px 2px 10px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u79605_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. visibility:hidden;
  4513. }
  4514. #u79606_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:204px;
  4520. height:37px;
  4521. }
  4522. #u79606 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:1018px;
  4526. top:256px;
  4527. width:204px;
  4528. height:37px;
  4529. display:flex;
  4530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. font-size:14px;
  4534. color:#1890FF;
  4535. text-align:left;
  4536. }
  4537. #u79606 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 10px 2px 10px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u79606_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u79608 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:0px;
  4556. height:0px;
  4557. }
  4558. #u79609_img {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:200px;
  4564. height:1191px;
  4565. }
  4566. #u79609 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:120px;
  4570. top:50px;
  4571. width:200px;
  4572. height:1191px;
  4573. display:flex;
  4574. }
  4575. #u79609 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u79609_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u79610_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:200px;
  4594. height:60px;
  4595. background:inherit;
  4596. background-color:rgba(224, 231, 247, 1);
  4597. border:none;
  4598. border-radius:0px;
  4599. -moz-box-shadow:none;
  4600. -webkit-box-shadow:none;
  4601. box-shadow:none;
  4602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4603. font-weight:500;
  4604. font-style:normal;
  4605. font-size:18px;
  4606. }
  4607. #u79610 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:120px;
  4611. top:50px;
  4612. width:200px;
  4613. height:60px;
  4614. display:flex;
  4615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4616. font-weight:500;
  4617. font-style:normal;
  4618. font-size:18px;
  4619. }
  4620. #u79610 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:0px 0px 0px 20px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u79610_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. }
  4632. #u79611 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:120px;
  4636. top:130px;
  4637. width:200px;
  4638. height:1078px;
  4639. }
  4640. #u79611_state0 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:200px;
  4646. height:1078px;
  4647. overflow:auto;
  4648. -webkit-overflow-scrolling:touch;
  4649. -ms-overflow-x:hidden;
  4650. overflow-x:hidden;
  4651. background-image:none;
  4652. border:none;
  4653. border-radius:0px;
  4654. -moz-box-shadow:none;
  4655. -webkit-box-shadow:none;
  4656. box-shadow:none;
  4657. }
  4658. #u79611_state0_content {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:1px;
  4664. height:1px;
  4665. }
  4666. #u79612_div {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:97px;
  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. #u79612 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:30px;
  4689. top:0px;
  4690. width:97px;
  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. #u79612 .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. #u79612_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. }
  4710. #u79613_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. #u79613 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:30px;
  4733. top:42px;
  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. #u79613 .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. #u79613_text {
  4750. border-width:0px;
  4751. white-space:nowrap;
  4752. text-transform:none;
  4753. }
  4754. #u79614_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:49px;
  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. #u79614 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:30px;
  4777. top:145px;
  4778. width:49px;
  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. #u79614 .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. #u79614_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u79615_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:97px;
  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. #u79615 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:30px;
  4821. top:187px;
  4822. width:97px;
  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. #u79615 .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. #u79615_text {
  4838. border-width:0px;
  4839. word-wrap:break-word;
  4840. text-transform:none;
  4841. }
  4842. #u79616_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:201px;
  4848. height:2px;
  4849. }
  4850. #u79616 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:84px;
  4855. width:200px;
  4856. height:1px;
  4857. display:flex;
  4858. }
  4859. #u79616 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u79616_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u79617_div {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:49px;
  4878. height:17px;
  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:12px;
  4890. color:#AAAAAA;
  4891. }
  4892. #u79617 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:30px;
  4896. top:105px;
  4897. width:49px;
  4898. height:17px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#AAAAAA;
  4905. }
  4906. #u79617 .text {
  4907. position:absolute;
  4908. align-self:flex-start;
  4909. padding:0px 0px 0px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u79617_text {
  4914. border-width:0px;
  4915. white-space:nowrap;
  4916. text-transform:none;
  4917. }
  4918. #u79618_div {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:97px;
  4924. height:22px;
  4925. background:inherit;
  4926. background-color:rgba(255, 255, 255, 0);
  4927. border:none;
  4928. border-radius:0px;
  4929. -moz-box-shadow:none;
  4930. -webkit-box-shadow:none;
  4931. box-shadow:none;
  4932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4933. font-weight:400;
  4934. font-style:normal;
  4935. font-size:16px;
  4936. }
  4937. #u79618 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:30px;
  4941. top:229px;
  4942. width:97px;
  4943. height:22px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:16px;
  4949. }
  4950. #u79618 .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. #u79618_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. }
  4962. #u79619_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. #u79619 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:30px;
  4985. top:271px;
  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. #u79619 .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. #u79619_text {
  5002. border-width:0px;
  5003. white-space:nowrap;
  5004. text-transform:none;
  5005. }
  5006. #u79620_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:201px;
  5012. height:2px;
  5013. }
  5014. #u79620 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:313px;
  5019. width:200px;
  5020. height:1px;
  5021. display:flex;
  5022. }
  5023. #u79620 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 2px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u79620_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u79621_div {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:65px;
  5042. height:22px;
  5043. background:inherit;
  5044. background-color:rgba(255, 255, 255, 0);
  5045. border:none;
  5046. border-radius:0px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:16px;
  5054. }
  5055. #u79621 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:30px;
  5059. top:370px;
  5060. width:65px;
  5061. height:22px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:16px;
  5067. }
  5068. #u79621 .text {
  5069. position:absolute;
  5070. align-self:flex-start;
  5071. padding:0px 0px 0px 0px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u79621_text {
  5076. border-width:0px;
  5077. white-space:nowrap;
  5078. text-transform:none;
  5079. }
  5080. #u79622_div {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:49px;
  5086. height:17px;
  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:12px;
  5098. color:#AAAAAA;
  5099. }
  5100. #u79622 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:30px;
  5104. top:334px;
  5105. width:49px;
  5106. height:17px;
  5107. display:flex;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:12px;
  5112. color:#AAAAAA;
  5113. }
  5114. #u79622 .text {
  5115. position:absolute;
  5116. align-self:flex-start;
  5117. padding:0px 0px 0px 0px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u79622_text {
  5122. border-width:0px;
  5123. white-space:nowrap;
  5124. text-transform:none;
  5125. }
  5126. #u79623_div {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:65px;
  5132. height:22px;
  5133. background:inherit;
  5134. background-color:rgba(255, 255, 255, 0);
  5135. border:none;
  5136. border-radius:0px;
  5137. -moz-box-shadow:none;
  5138. -webkit-box-shadow:none;
  5139. box-shadow:none;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:16px;
  5144. }
  5145. #u79623 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:30px;
  5149. top:412px;
  5150. width:65px;
  5151. height:22px;
  5152. display:flex;
  5153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:16px;
  5157. }
  5158. #u79623 .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. #u79623_text {
  5166. border-width:0px;
  5167. white-space:nowrap;
  5168. text-transform:none;
  5169. }
  5170. #u79624_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:65px;
  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. #u79624 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:30px;
  5193. top:454px;
  5194. width:65px;
  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. #u79624 .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. #u79624_text {
  5210. border-width:0px;
  5211. white-space:nowrap;
  5212. text-transform:none;
  5213. }
  5214. #u79625_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. #u79625 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:30px;
  5237. top:496px;
  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. #u79625 .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. #u79625_text {
  5254. border-width:0px;
  5255. white-space:nowrap;
  5256. text-transform:none;
  5257. }
  5258. #u79626_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:65px;
  5264. height:22px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border:none;
  5268. border-radius:0px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:16px;
  5276. }
  5277. #u79626 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:30px;
  5281. top:538px;
  5282. width:65px;
  5283. height:22px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:16px;
  5289. }
  5290. #u79626 .text {
  5291. position:absolute;
  5292. align-self:flex-start;
  5293. padding:0px 0px 0px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u79626_text {
  5298. border-width:0px;
  5299. white-space:nowrap;
  5300. text-transform:none;
  5301. }
  5302. #u79627_div {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:65px;
  5308. height:22px;
  5309. background:inherit;
  5310. background-color:rgba(255, 255, 255, 0);
  5311. border:none;
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:16px;
  5320. }
  5321. #u79627 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:30px;
  5325. top:580px;
  5326. width:65px;
  5327. height:22px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:16px;
  5333. }
  5334. #u79627 .text {
  5335. position:absolute;
  5336. align-self:flex-start;
  5337. padding:0px 0px 0px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u79627_text {
  5342. border-width:0px;
  5343. white-space:nowrap;
  5344. text-transform:none;
  5345. }
  5346. #u79628_img {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:201px;
  5352. height:2px;
  5353. }
  5354. #u79628 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:1289px;
  5359. width:200px;
  5360. height:1px;
  5361. display:flex;
  5362. }
  5363. #u79628 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 2px 2px 2px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u79628_text {
  5371. border-width:0px;
  5372. word-wrap:break-word;
  5373. text-transform:none;
  5374. visibility:hidden;
  5375. }
  5376. #u79629_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:65px;
  5382. height:22px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 0);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:none;
  5388. -webkit-box-shadow:none;
  5389. box-shadow:none;
  5390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:16px;
  5394. }
  5395. #u79629 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:30px;
  5399. top:1346px;
  5400. width:65px;
  5401. height:22px;
  5402. display:flex;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:16px;
  5407. }
  5408. #u79629 .text {
  5409. position:absolute;
  5410. align-self:flex-start;
  5411. padding:0px 0px 0px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u79629_text {
  5416. border-width:0px;
  5417. white-space:nowrap;
  5418. text-transform:none;
  5419. }
  5420. #u79630_div {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:49px;
  5426. height:17px;
  5427. background:inherit;
  5428. background-color:rgba(255, 255, 255, 0);
  5429. border:none;
  5430. border-radius:0px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:12px;
  5438. color:#AAAAAA;
  5439. }
  5440. #u79630 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:30px;
  5444. top:1310px;
  5445. width:49px;
  5446. height:17px;
  5447. display:flex;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. color:#AAAAAA;
  5453. }
  5454. #u79630 .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. #u79630_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u79631_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. #u79631 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:30px;
  5489. top:1388px;
  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. #u79631 .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. #u79631_text {
  5506. border-width:0px;
  5507. white-space:nowrap;
  5508. text-transform:none;
  5509. }
  5510. #u79632_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:65px;
  5516. height:22px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 0);
  5519. border:none;
  5520. border-radius:0px;
  5521. -moz-box-shadow:none;
  5522. -webkit-box-shadow:none;
  5523. box-shadow:none;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:16px;
  5528. }
  5529. #u79632 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:30px;
  5533. top:1472px;
  5534. width:65px;
  5535. height:22px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:16px;
  5541. }
  5542. #u79632 .text {
  5543. position:absolute;
  5544. align-self:flex-start;
  5545. padding:0px 0px 0px 0px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u79632_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u79633_img {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:201px;
  5560. height:2px;
  5561. }
  5562. #u79633 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:1514px;
  5567. width:200px;
  5568. height:1px;
  5569. display:flex;
  5570. }
  5571. #u79633 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:2px 2px 2px 2px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u79633_text {
  5579. border-width:0px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. visibility:hidden;
  5583. }
  5584. #u79634_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:49px;
  5590. height:22px;
  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:16px;
  5602. }
  5603. #u79634 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:30px;
  5607. top:1571px;
  5608. width:49px;
  5609. height:22px;
  5610. display:flex;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:16px;
  5615. }
  5616. #u79634 .text {
  5617. position:absolute;
  5618. align-self:flex-start;
  5619. padding:0px 0px 0px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u79634_text {
  5624. border-width:0px;
  5625. white-space:nowrap;
  5626. text-transform:none;
  5627. }
  5628. #u79635_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:49px;
  5634. height:17px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 0);
  5637. border:none;
  5638. border-radius:0px;
  5639. -moz-box-shadow:none;
  5640. -webkit-box-shadow:none;
  5641. box-shadow:none;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:12px;
  5646. color:#AAAAAA;
  5647. }
  5648. #u79635 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:30px;
  5652. top:1535px;
  5653. width:49px;
  5654. height:17px;
  5655. display:flex;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. color:#AAAAAA;
  5661. }
  5662. #u79635 .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. #u79635_text {
  5670. border-width:0px;
  5671. white-space:nowrap;
  5672. text-transform:none;
  5673. }
  5674. #u79636_div {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:49px;
  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. #u79636 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:30px;
  5697. top:1613px;
  5698. width:49px;
  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. #u79636 .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. #u79636_text {
  5714. border-width:0px;
  5715. white-space:nowrap;
  5716. text-transform:none;
  5717. }
  5718. #u79637_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. #u79637 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:30px;
  5741. top:1655px;
  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. #u79637 .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. #u79637_text {
  5758. border-width:0px;
  5759. white-space:nowrap;
  5760. text-transform:none;
  5761. }
  5762. #u79638_img {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:201px;
  5768. height:2px;
  5769. }
  5770. #u79638 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:1697px;
  5775. width:200px;
  5776. height:1px;
  5777. display:flex;
  5778. }
  5779. #u79638 .text {
  5780. position:absolute;
  5781. align-self:center;
  5782. padding:2px 2px 2px 2px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u79638_text {
  5787. border-width:0px;
  5788. word-wrap:break-word;
  5789. text-transform:none;
  5790. visibility:hidden;
  5791. }
  5792. #u79639_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:81px;
  5798. height:22px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 0);
  5801. border:none;
  5802. border-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:16px;
  5810. }
  5811. #u79639 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:30px;
  5815. top:1754px;
  5816. width:81px;
  5817. height:22px;
  5818. display:flex;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:16px;
  5823. }
  5824. #u79639 .text {
  5825. position:absolute;
  5826. align-self:flex-start;
  5827. padding:0px 0px 0px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u79639_text {
  5832. border-width:0px;
  5833. white-space:nowrap;
  5834. text-transform:none;
  5835. }
  5836. #u79640_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:49px;
  5842. height:17px;
  5843. background:inherit;
  5844. background-color:rgba(255, 255, 255, 0);
  5845. border:none;
  5846. border-radius:0px;
  5847. -moz-box-shadow:none;
  5848. -webkit-box-shadow:none;
  5849. box-shadow:none;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:12px;
  5854. color:#AAAAAA;
  5855. }
  5856. #u79640 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:30px;
  5860. top:1718px;
  5861. width:49px;
  5862. height:17px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#AAAAAA;
  5869. }
  5870. #u79640 .text {
  5871. position:absolute;
  5872. align-self:flex-start;
  5873. padding:0px 0px 0px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u79640_text {
  5878. border-width:0px;
  5879. white-space:nowrap;
  5880. text-transform:none;
  5881. }
  5882. #u79641_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:81px;
  5888. height:22px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 0);
  5891. border:none;
  5892. border-radius:0px;
  5893. -moz-box-shadow:none;
  5894. -webkit-box-shadow:none;
  5895. box-shadow:none;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:16px;
  5900. }
  5901. #u79641 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:30px;
  5905. top:1796px;
  5906. width:81px;
  5907. height:22px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:16px;
  5913. }
  5914. #u79641 .text {
  5915. position:absolute;
  5916. align-self:flex-start;
  5917. padding:0px 0px 0px 0px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u79641_text {
  5922. border-width:0px;
  5923. white-space:nowrap;
  5924. text-transform:none;
  5925. }
  5926. #u79642_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:81px;
  5932. height:22px;
  5933. background:inherit;
  5934. background-color:rgba(255, 255, 255, 0);
  5935. border:none;
  5936. border-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:16px;
  5944. }
  5945. #u79642 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:30px;
  5949. top:1838px;
  5950. width:81px;
  5951. height:22px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:16px;
  5957. }
  5958. #u79642 .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. #u79642_text {
  5966. border-width:0px;
  5967. white-space:nowrap;
  5968. text-transform:none;
  5969. }
  5970. #u79643_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. #u79643 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:30px;
  5993. top:1430px;
  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. #u79643 .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. #u79643_text {
  6010. border-width:0px;
  6011. white-space:nowrap;
  6012. text-transform:none;
  6013. }
  6014. #u79644_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:201px;
  6020. height:2px;
  6021. }
  6022. #u79644 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:669px;
  6027. width:200px;
  6028. height:1px;
  6029. display:flex;
  6030. }
  6031. #u79644 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:2px 2px 2px 2px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u79644_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. visibility:hidden;
  6043. }
  6044. #u79645_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:65px;
  6050. height:22px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 0);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:16px;
  6062. }
  6063. #u79645 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:30px;
  6067. top:726px;
  6068. width:65px;
  6069. height:22px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:16px;
  6075. }
  6076. #u79645 .text {
  6077. position:absolute;
  6078. align-self:flex-start;
  6079. padding:0px 0px 0px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u79645_text {
  6084. border-width:0px;
  6085. white-space:nowrap;
  6086. text-transform:none;
  6087. }
  6088. #u79646_div {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:49px;
  6094. height:17px;
  6095. background:inherit;
  6096. background-color:rgba(255, 255, 255, 0);
  6097. border:none;
  6098. border-radius:0px;
  6099. -moz-box-shadow:none;
  6100. -webkit-box-shadow:none;
  6101. box-shadow:none;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:12px;
  6106. color:#AAAAAA;
  6107. }
  6108. #u79646 {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:30px;
  6112. top:690px;
  6113. width:49px;
  6114. height:17px;
  6115. display:flex;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:12px;
  6120. color:#AAAAAA;
  6121. }
  6122. #u79646 .text {
  6123. position:absolute;
  6124. align-self:flex-start;
  6125. padding:0px 0px 0px 0px;
  6126. box-sizing:border-box;
  6127. width:100%;
  6128. }
  6129. #u79646_text {
  6130. border-width:0px;
  6131. white-space:nowrap;
  6132. text-transform:none;
  6133. }
  6134. #u79647_div {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:65px;
  6140. height:22px;
  6141. background:inherit;
  6142. background-color:rgba(255, 255, 255, 0);
  6143. border:none;
  6144. border-radius:0px;
  6145. -moz-box-shadow:none;
  6146. -webkit-box-shadow:none;
  6147. box-shadow:none;
  6148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:16px;
  6152. }
  6153. #u79647 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:30px;
  6157. top:768px;
  6158. width:65px;
  6159. height:22px;
  6160. display:flex;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:16px;
  6165. }
  6166. #u79647 .text {
  6167. position:absolute;
  6168. align-self:flex-start;
  6169. padding:0px 0px 0px 0px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u79647_text {
  6174. border-width:0px;
  6175. white-space:nowrap;
  6176. text-transform:none;
  6177. }
  6178. #u79648_div {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:65px;
  6184. height:22px;
  6185. background:inherit;
  6186. background-color:rgba(255, 255, 255, 0);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:16px;
  6196. }
  6197. #u79648 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:30px;
  6201. top:852px;
  6202. width:65px;
  6203. height:22px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:16px;
  6209. }
  6210. #u79648 .text {
  6211. position:absolute;
  6212. align-self:flex-start;
  6213. padding:0px 0px 0px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u79648_text {
  6218. border-width:0px;
  6219. white-space:nowrap;
  6220. text-transform:none;
  6221. }
  6222. #u79649_div {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:65px;
  6228. height:22px;
  6229. background:inherit;
  6230. background-color:rgba(255, 255, 255, 0);
  6231. border:none;
  6232. border-radius:0px;
  6233. -moz-box-shadow:none;
  6234. -webkit-box-shadow:none;
  6235. box-shadow:none;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:16px;
  6240. }
  6241. #u79649 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:30px;
  6245. top:810px;
  6246. width:65px;
  6247. height:22px;
  6248. display:flex;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:16px;
  6253. }
  6254. #u79649 .text {
  6255. position:absolute;
  6256. align-self:flex-start;
  6257. padding:0px 0px 0px 0px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u79649_text {
  6262. border-width:0px;
  6263. white-space:nowrap;
  6264. text-transform:none;
  6265. }
  6266. #u79650_div {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:65px;
  6272. height:22px;
  6273. background:inherit;
  6274. background-color:rgba(255, 255, 255, 0);
  6275. border:none;
  6276. border-radius:0px;
  6277. -moz-box-shadow:none;
  6278. -webkit-box-shadow:none;
  6279. box-shadow:none;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:16px;
  6284. }
  6285. #u79650 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:30px;
  6289. top:894px;
  6290. width:65px;
  6291. height:22px;
  6292. display:flex;
  6293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:16px;
  6297. }
  6298. #u79650 .text {
  6299. position:absolute;
  6300. align-self:flex-start;
  6301. padding:0px 0px 0px 0px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u79650_text {
  6306. border-width:0px;
  6307. white-space:nowrap;
  6308. text-transform:none;
  6309. }
  6310. #u79651_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:65px;
  6316. height:22px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 0);
  6319. border:none;
  6320. border-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:16px;
  6328. }
  6329. #u79651 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:30px;
  6333. top:936px;
  6334. width:65px;
  6335. height:22px;
  6336. display:flex;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:16px;
  6341. }
  6342. #u79651 .text {
  6343. position:absolute;
  6344. align-self:flex-start;
  6345. padding:0px 0px 0px 0px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u79651_text {
  6350. border-width:0px;
  6351. white-space:nowrap;
  6352. text-transform:none;
  6353. }
  6354. #u79652_img {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:201px;
  6360. height:2px;
  6361. }
  6362. #u79652 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:1018px;
  6367. width:200px;
  6368. height:1px;
  6369. display:flex;
  6370. }
  6371. #u79652 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:2px 2px 2px 2px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u79652_text {
  6379. border-width:0px;
  6380. word-wrap:break-word;
  6381. text-transform:none;
  6382. visibility:hidden;
  6383. }
  6384. #u79653_div {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:65px;
  6390. height:22px;
  6391. background:inherit;
  6392. background-color:rgba(255, 255, 255, 0);
  6393. border:none;
  6394. border-radius:0px;
  6395. -moz-box-shadow:none;
  6396. -webkit-box-shadow:none;
  6397. box-shadow:none;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:16px;
  6402. }
  6403. #u79653 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:30px;
  6407. top:1075px;
  6408. width:65px;
  6409. height:22px;
  6410. display:flex;
  6411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:16px;
  6415. }
  6416. #u79653 .text {
  6417. position:absolute;
  6418. align-self:flex-start;
  6419. padding:0px 0px 0px 0px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u79653_text {
  6424. border-width:0px;
  6425. white-space:nowrap;
  6426. text-transform:none;
  6427. }
  6428. #u79654_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:49px;
  6434. height:17px;
  6435. background:inherit;
  6436. background-color:rgba(255, 255, 255, 0);
  6437. border:none;
  6438. border-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6443. font-weight:400;
  6444. font-style:normal;
  6445. font-size:12px;
  6446. color:#AAAAAA;
  6447. }
  6448. #u79654 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:30px;
  6452. top:1039px;
  6453. width:49px;
  6454. height:17px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:12px;
  6460. color:#AAAAAA;
  6461. }
  6462. #u79654 .text {
  6463. position:absolute;
  6464. align-self:flex-start;
  6465. padding:0px 0px 0px 0px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u79654_text {
  6470. border-width:0px;
  6471. white-space:nowrap;
  6472. text-transform:none;
  6473. }
  6474. #u79655_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:65px;
  6480. height:22px;
  6481. background:inherit;
  6482. background-color:rgba(255, 255, 255, 0);
  6483. border:none;
  6484. border-radius:0px;
  6485. -moz-box-shadow:none;
  6486. -webkit-box-shadow:none;
  6487. box-shadow:none;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:16px;
  6492. }
  6493. #u79655 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:30px;
  6497. top:1117px;
  6498. width:65px;
  6499. height:22px;
  6500. display:flex;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:16px;
  6505. }
  6506. #u79655 .text {
  6507. position:absolute;
  6508. align-self:flex-start;
  6509. padding:0px 0px 0px 0px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u79655_text {
  6514. border-width:0px;
  6515. white-space:nowrap;
  6516. text-transform:none;
  6517. }
  6518. #u79656_div {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:65px;
  6524. height:22px;
  6525. background:inherit;
  6526. background-color:rgba(255, 255, 255, 0);
  6527. border:none;
  6528. border-radius:0px;
  6529. -moz-box-shadow:none;
  6530. -webkit-box-shadow:none;
  6531. box-shadow:none;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:16px;
  6536. }
  6537. #u79656 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:30px;
  6541. top:1201px;
  6542. width:65px;
  6543. height:22px;
  6544. display:flex;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:16px;
  6549. }
  6550. #u79656 .text {
  6551. position:absolute;
  6552. align-self:flex-start;
  6553. padding:0px 0px 0px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u79656_text {
  6558. border-width:0px;
  6559. white-space:nowrap;
  6560. text-transform:none;
  6561. }
  6562. #u79657_div {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:65px;
  6568. height:22px;
  6569. background:inherit;
  6570. background-color:rgba(255, 255, 255, 0);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:16px;
  6580. }
  6581. #u79657 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:30px;
  6585. top:1159px;
  6586. width:65px;
  6587. height:22px;
  6588. display:flex;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:16px;
  6593. }
  6594. #u79657 .text {
  6595. position:absolute;
  6596. align-self:flex-start;
  6597. padding:0px 0px 0px 0px;
  6598. box-sizing:border-box;
  6599. width:100%;
  6600. }
  6601. #u79657_text {
  6602. border-width:0px;
  6603. white-space:nowrap;
  6604. text-transform:none;
  6605. }
  6606. #u79658_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:65px;
  6612. height:22px;
  6613. background:inherit;
  6614. background-color:rgba(255, 255, 255, 0);
  6615. border:none;
  6616. border-radius:0px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:16px;
  6624. }
  6625. #u79658 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:30px;
  6629. top:1243px;
  6630. width:65px;
  6631. height:22px;
  6632. display:flex;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:16px;
  6637. }
  6638. #u79658 .text {
  6639. position:absolute;
  6640. align-self:flex-start;
  6641. padding:0px 0px 0px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u79658_text {
  6646. border-width:0px;
  6647. white-space:nowrap;
  6648. text-transform:none;
  6649. }
  6650. #u79659_div {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:65px;
  6656. height:22px;
  6657. background:inherit;
  6658. background-color:rgba(255, 255, 255, 0);
  6659. border:none;
  6660. border-radius:0px;
  6661. -moz-box-shadow:none;
  6662. -webkit-box-shadow:none;
  6663. box-shadow:none;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:16px;
  6668. }
  6669. #u79659 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:30px;
  6673. top:978px;
  6674. width:65px;
  6675. height:22px;
  6676. display:flex;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:16px;
  6681. }
  6682. #u79659 .text {
  6683. position:absolute;
  6684. align-self:flex-start;
  6685. padding:0px 0px 0px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u79659_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u79660_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:65px;
  6700. height:22px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 0);
  6703. border:none;
  6704. border-radius:0px;
  6705. -moz-box-shadow:none;
  6706. -webkit-box-shadow:none;
  6707. box-shadow:none;
  6708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:16px;
  6712. }
  6713. #u79660 {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:30px;
  6717. top:622px;
  6718. width:65px;
  6719. height:22px;
  6720. display:flex;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:16px;
  6725. }
  6726. #u79660 .text {
  6727. position:absolute;
  6728. align-self:flex-start;
  6729. padding:0px 0px 0px 0px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u79660_text {
  6734. border-width:0px;
  6735. white-space:nowrap;
  6736. text-transform:none;
  6737. }
  6738. #u79661 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:0px;
  6744. height:0px;
  6745. }
  6746. #u79662_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:700px;
  6752. height:1191px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 1);
  6755. box-sizing:border-box;
  6756. border-width:1px;
  6757. border-style:solid;
  6758. border-color:rgba(215, 215, 215, 1);
  6759. border-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. color:#AAAAAA;
  6768. text-align:center;
  6769. line-height:30px;
  6770. }
  6771. #u79662 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:1637px;
  6775. top:50px;
  6776. width:700px;
  6777. height:1191px;
  6778. display:flex;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:14px;
  6783. color:#AAAAAA;
  6784. text-align:center;
  6785. line-height:30px;
  6786. }
  6787. #u79662 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:5px 10px 5px 10px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u79662_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. visibility:hidden;
  6799. }
  6800. #u79663_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:119px;
  6806. height:35px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 0);
  6809. border:none;
  6810. border-top:0px;
  6811. border-right:0px;
  6812. border-bottom:0px;
  6813. border-radius:0px;
  6814. border-top-left-radius:0px;
  6815. border-bottom-left-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6820. font-weight:500;
  6821. font-style:normal;
  6822. font-size:18px;
  6823. }
  6824. #u79663 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:1658px;
  6828. top:71px;
  6829. width:119px;
  6830. height:35px;
  6831. display:flex;
  6832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6833. font-weight:500;
  6834. font-style:normal;
  6835. font-size:18px;
  6836. }
  6837. #u79663 .text {
  6838. position:absolute;
  6839. align-self:center;
  6840. padding:5px 10px 5px 0px;
  6841. box-sizing:border-box;
  6842. width:100%;
  6843. }
  6844. #u79663_text {
  6845. border-width:0px;
  6846. white-space:nowrap;
  6847. text-transform:none;
  6848. }
  6849. #u79664 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:0px;
  6855. height:0px;
  6856. }
  6857. #u79665_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:40px;
  6863. height:40px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 0);
  6866. border:none;
  6867. border-top:0px;
  6868. border-right:0px;
  6869. border-bottom:0px;
  6870. border-radius:0px;
  6871. border-top-left-radius:0px;
  6872. border-bottom-left-radius:0px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6877. font-weight:500;
  6878. font-style:normal;
  6879. font-size:18px;
  6880. text-align:center;
  6881. }
  6882. #u79665 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:2297px;
  6886. top:50px;
  6887. width:40px;
  6888. height:40px;
  6889. display:flex;
  6890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6891. font-weight:500;
  6892. font-style:normal;
  6893. font-size:18px;
  6894. text-align:center;
  6895. }
  6896. #u79665 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:5px 10px 5px 0px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u79665_text {
  6904. border-width:0px;
  6905. word-wrap:break-word;
  6906. text-transform:none;
  6907. }
  6908. #u79666_img {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:13px;
  6914. height:13px;
  6915. }
  6916. #u79666 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:2285px;
  6920. top:66px;
  6921. width:13px;
  6922. height:13px;
  6923. display:flex;
  6924. }
  6925. #u79666 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u79666_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u79667_div {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:81px;
  6944. height:30px;
  6945. background:inherit;
  6946. background-color:rgba(242, 242, 242, 0);
  6947. border:none;
  6948. border-top:0px;
  6949. border-right:0px;
  6950. border-bottom:0px;
  6951. border-radius:0px;
  6952. border-top-left-radius:0px;
  6953. border-bottom-left-radius:0px;
  6954. -moz-box-shadow:none;
  6955. -webkit-box-shadow:none;
  6956. box-shadow:none;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:14px;
  6961. text-align:right;
  6962. }
  6963. #u79667 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:1680px;
  6967. top:387px;
  6968. width:81px;
  6969. height:30px;
  6970. display:flex;
  6971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6972. font-weight:400;
  6973. font-style:normal;
  6974. font-size:14px;
  6975. text-align:right;
  6976. }
  6977. #u79667 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:5px 10px 5px 0px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u79667_text {
  6985. border-width:0px;
  6986. white-space:nowrap;
  6987. text-transform:none;
  6988. }
  6989. #u79668_div {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:81px;
  6995. height:30px;
  6996. background:inherit;
  6997. background-color:rgba(242, 242, 242, 0);
  6998. border:none;
  6999. border-top:0px;
  7000. border-right:0px;
  7001. border-bottom:0px;
  7002. border-radius:0px;
  7003. border-top-left-radius:0px;
  7004. border-bottom-left-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:14px;
  7012. text-align:right;
  7013. }
  7014. #u79668 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:1680px;
  7018. top:337px;
  7019. width:81px;
  7020. height:30px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. text-align:right;
  7027. }
  7028. #u79668 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:5px 10px 5px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u79668_text {
  7036. border-width:0px;
  7037. white-space:nowrap;
  7038. text-transform:none;
  7039. }
  7040. #u79669 {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:0px;
  7046. height:0px;
  7047. }
  7048. #u79670_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:300px;
  7054. height:40px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 1);
  7057. box-sizing:border-box;
  7058. border-width:1px;
  7059. border-style:solid;
  7060. border-color:rgba(201, 201, 201, 1);
  7061. border-radius:4px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-family:'Microsoft YaHei', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:14px;
  7069. color:#CCCCCC;
  7070. text-align:left;
  7071. }
  7072. #u79670 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:1768px;
  7076. top:332px;
  7077. width:300px;
  7078. height:40px;
  7079. display:flex;
  7080. font-family:'Microsoft YaHei', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:14px;
  7084. color:#CCCCCC;
  7085. text-align:left;
  7086. }
  7087. #u79670 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 8px 2px 8px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u79670_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u79671_input {
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:263px;
  7105. height:38px;
  7106. padding:2px 2px 2px 2px;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:14px;
  7111. letter-spacing:normal;
  7112. color:#000000;
  7113. vertical-align:none;
  7114. text-align:left;
  7115. text-transform:none;
  7116. background-color:transparent;
  7117. border-color:transparent;
  7118. }
  7119. #u79671_input.disabled {
  7120. position:absolute;
  7121. left:0px;
  7122. top:0px;
  7123. width:263px;
  7124. height:38px;
  7125. padding:2px 2px 2px 2px;
  7126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:14px;
  7130. letter-spacing:normal;
  7131. color:#000000;
  7132. vertical-align:none;
  7133. text-align:left;
  7134. text-transform:none;
  7135. background-color:transparent;
  7136. border-color:transparent;
  7137. }
  7138. #u79671_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:263px;
  7144. height:38px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 1);
  7147. border:none;
  7148. border-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:14px;
  7156. }
  7157. #u79671 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:1776px;
  7161. top:333px;
  7162. width:263px;
  7163. height:38px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:14px;
  7169. }
  7170. #u79671 .text {
  7171. position:absolute;
  7172. align-self:center;
  7173. padding:2px 2px 2px 2px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u79671_div.disabled {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:263px;
  7183. height:38px;
  7184. background:inherit;
  7185. background-color:rgba(240, 240, 240, 1);
  7186. border:none;
  7187. border-radius:0px;
  7188. -moz-box-shadow:none;
  7189. -webkit-box-shadow:none;
  7190. box-shadow:none;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. }
  7196. #u79671.disabled {
  7197. }
  7198. #u79672_div {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:88px;
  7204. height:30px;
  7205. background:inherit;
  7206. background-color:rgba(242, 242, 242, 0);
  7207. border:none;
  7208. border-top:0px;
  7209. border-right:0px;
  7210. border-bottom:0px;
  7211. border-radius:0px;
  7212. border-top-left-radius:0px;
  7213. border-bottom-left-radius:0px;
  7214. -moz-box-shadow:none;
  7215. -webkit-box-shadow:none;
  7216. box-shadow:none;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. text-align:right;
  7222. }
  7223. #u79672 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:1673px;
  7227. top:237px;
  7228. width:88px;
  7229. height:30px;
  7230. display:flex;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:14px;
  7235. text-align:right;
  7236. }
  7237. #u79672 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:5px 10px 5px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u79672_text {
  7245. border-width:0px;
  7246. white-space:nowrap;
  7247. text-transform:none;
  7248. }
  7249. #u79673 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:0px;
  7255. height:0px;
  7256. }
  7257. #u79674_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:700px;
  7263. height:60px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 1);
  7266. box-sizing:border-box;
  7267. border-width:1px;
  7268. border-style:solid;
  7269. border-color:rgba(215, 215, 215, 1);
  7270. border-radius:0px;
  7271. -moz-box-shadow:none;
  7272. -webkit-box-shadow:none;
  7273. box-shadow:none;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:14px;
  7278. color:#AAAAAA;
  7279. text-align:center;
  7280. line-height:30px;
  7281. }
  7282. #u79674 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:1637px;
  7286. top:1181px;
  7287. width:700px;
  7288. height:60px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:14px;
  7294. color:#AAAAAA;
  7295. text-align:center;
  7296. line-height:30px;
  7297. }
  7298. #u79674 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:5px 10px 5px 10px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u79674_text {
  7306. border-width:0px;
  7307. word-wrap:break-word;
  7308. text-transform:none;
  7309. visibility:hidden;
  7310. }
  7311. #u79675_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:80px;
  7317. height:30px;
  7318. background:inherit;
  7319. background-color:rgba(24, 144, 255, 1);
  7320. border:none;
  7321. border-radius:4px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. color:#FFFFFF;
  7330. }
  7331. #u79675 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:2212px;
  7335. top:1196px;
  7336. width:80px;
  7337. height:30px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:14px;
  7343. color:#FFFFFF;
  7344. }
  7345. #u79675 .text {
  7346. position:absolute;
  7347. align-self:center;
  7348. padding:2px 2px 2px 2px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u79675_text {
  7353. border-width:0px;
  7354. word-wrap:break-word;
  7355. text-transform:none;
  7356. }
  7357. #u79676_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:80px;
  7363. height:30px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 1);
  7366. box-sizing:border-box;
  7367. border-width:1px;
  7368. border-style:solid;
  7369. border-color:rgba(170, 170, 170, 1);
  7370. border-radius:4px;
  7371. -moz-box-shadow:none;
  7372. -webkit-box-shadow:none;
  7373. box-shadow:none;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:14px;
  7378. }
  7379. #u79676 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:2112px;
  7383. top:1196px;
  7384. width:80px;
  7385. height:30px;
  7386. display:flex;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. }
  7392. #u79676 .text {
  7393. position:absolute;
  7394. align-self:center;
  7395. padding:2px 2px 2px 2px;
  7396. box-sizing:border-box;
  7397. width:100%;
  7398. }
  7399. #u79676_text {
  7400. border-width:0px;
  7401. word-wrap:break-word;
  7402. text-transform:none;
  7403. }
  7404. #u79677 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:0px;
  7408. top:0px;
  7409. width:0px;
  7410. height:0px;
  7411. }
  7412. #u79678_div {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:300px;
  7418. height:40px;
  7419. background:inherit;
  7420. background-color:rgba(255, 255, 255, 1);
  7421. box-sizing:border-box;
  7422. border-width:1px;
  7423. border-style:solid;
  7424. border-color:rgba(201, 201, 201, 1);
  7425. border-radius:4px;
  7426. -moz-box-shadow:none;
  7427. -webkit-box-shadow:none;
  7428. box-shadow:none;
  7429. font-family:'Microsoft YaHei', sans-serif;
  7430. font-weight:400;
  7431. font-style:normal;
  7432. font-size:14px;
  7433. color:#CCCCCC;
  7434. text-align:left;
  7435. }
  7436. #u79678 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:1768px;
  7440. top:232px;
  7441. width:300px;
  7442. height:40px;
  7443. display:flex;
  7444. font-family:'Microsoft YaHei', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:14px;
  7448. color:#CCCCCC;
  7449. text-align:left;
  7450. }
  7451. #u79678 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 8px 2px 8px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u79678_text {
  7459. border-width:0px;
  7460. word-wrap:break-word;
  7461. text-transform:none;
  7462. visibility:hidden;
  7463. }
  7464. #u79679_input {
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:263px;
  7469. height:38px;
  7470. padding:2px 2px 2px 2px;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:14px;
  7475. letter-spacing:normal;
  7476. color:#000000;
  7477. vertical-align:none;
  7478. text-align:left;
  7479. text-transform:none;
  7480. background-color:transparent;
  7481. border-color:transparent;
  7482. }
  7483. #u79679_input.disabled {
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:263px;
  7488. height:38px;
  7489. padding:2px 2px 2px 2px;
  7490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:14px;
  7494. letter-spacing:normal;
  7495. color:#000000;
  7496. vertical-align:none;
  7497. text-align:left;
  7498. text-transform:none;
  7499. background-color:transparent;
  7500. border-color:transparent;
  7501. }
  7502. #u79679_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:263px;
  7508. height:38px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 1);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:14px;
  7520. }
  7521. #u79679 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:1776px;
  7525. top:233px;
  7526. width:263px;
  7527. height:38px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. }
  7534. #u79679 .text {
  7535. position:absolute;
  7536. align-self:center;
  7537. padding:2px 2px 2px 2px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u79679_div.disabled {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:263px;
  7547. height:38px;
  7548. background:inherit;
  7549. background-color:rgba(240, 240, 240, 1);
  7550. border:none;
  7551. border-radius:0px;
  7552. -moz-box-shadow:none;
  7553. -webkit-box-shadow:none;
  7554. box-shadow:none;
  7555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:14px;
  7559. }
  7560. #u79679.disabled {
  7561. }
  7562. #u79680 {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:0px;
  7568. height:0px;
  7569. }
  7570. #u79681_div {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:300px;
  7576. height:40px;
  7577. background:inherit;
  7578. background-color:rgba(255, 255, 255, 1);
  7579. box-sizing:border-box;
  7580. border-width:1px;
  7581. border-style:solid;
  7582. border-color:rgba(201, 201, 201, 1);
  7583. border-radius:4px;
  7584. -moz-box-shadow:none;
  7585. -webkit-box-shadow:none;
  7586. box-shadow:none;
  7587. font-family:'Microsoft YaHei', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:14px;
  7591. color:#CCCCCC;
  7592. text-align:left;
  7593. }
  7594. #u79681 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:1768px;
  7598. top:382px;
  7599. width:300px;
  7600. height:40px;
  7601. display:flex;
  7602. font-family:'Microsoft YaHei', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:14px;
  7606. color:#CCCCCC;
  7607. text-align:left;
  7608. }
  7609. #u79681 .text {
  7610. position:absolute;
  7611. align-self:center;
  7612. padding:2px 8px 2px 8px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u79681_text {
  7617. border-width:0px;
  7618. word-wrap:break-word;
  7619. text-transform:none;
  7620. visibility:hidden;
  7621. }
  7622. #u79682_input {
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:263px;
  7627. height:38px;
  7628. padding:2px 2px 2px 2px;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:14px;
  7633. letter-spacing:normal;
  7634. color:#000000;
  7635. vertical-align:none;
  7636. text-align:left;
  7637. text-transform:none;
  7638. background-color:transparent;
  7639. border-color:transparent;
  7640. }
  7641. #u79682_input.disabled {
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:263px;
  7646. height:38px;
  7647. padding:2px 2px 2px 2px;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:14px;
  7652. letter-spacing:normal;
  7653. color:#000000;
  7654. vertical-align:none;
  7655. text-align:left;
  7656. text-transform:none;
  7657. background-color:transparent;
  7658. border-color:transparent;
  7659. }
  7660. #u79682_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:263px;
  7666. height:38px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 1);
  7669. border:none;
  7670. border-radius:0px;
  7671. -moz-box-shadow:none;
  7672. -webkit-box-shadow:none;
  7673. box-shadow:none;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:14px;
  7678. }
  7679. #u79682 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:1776px;
  7683. top:383px;
  7684. width:263px;
  7685. height:38px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:14px;
  7691. }
  7692. #u79682 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 2px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u79682_div.disabled {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:263px;
  7705. height:38px;
  7706. background:inherit;
  7707. background-color:rgba(240, 240, 240, 1);
  7708. border:none;
  7709. border-radius:0px;
  7710. -moz-box-shadow:none;
  7711. -webkit-box-shadow:none;
  7712. box-shadow:none;
  7713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:14px;
  7717. }
  7718. #u79682.disabled {
  7719. }
  7720. #u79683 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:0px;
  7726. height:0px;
  7727. }
  7728. #u79684_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:300px;
  7734. height:60px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 1);
  7737. box-sizing:border-box;
  7738. border-width:1px;
  7739. border-style:solid;
  7740. border-color:rgba(201, 201, 201, 1);
  7741. border-radius:4px;
  7742. -moz-box-shadow:none;
  7743. -webkit-box-shadow:none;
  7744. box-shadow:none;
  7745. font-family:'Microsoft YaHei', sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:14px;
  7749. color:#CCCCCC;
  7750. text-align:left;
  7751. }
  7752. #u79684 {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:1768px;
  7756. top:663px;
  7757. width:300px;
  7758. height:60px;
  7759. display:flex;
  7760. font-family:'Microsoft YaHei', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:14px;
  7764. color:#CCCCCC;
  7765. text-align:left;
  7766. }
  7767. #u79684 .text {
  7768. position:absolute;
  7769. align-self:center;
  7770. padding:2px 8px 2px 8px;
  7771. box-sizing:border-box;
  7772. width:100%;
  7773. }
  7774. #u79684_text {
  7775. border-width:0px;
  7776. word-wrap:break-word;
  7777. text-transform:none;
  7778. visibility:hidden;
  7779. }
  7780. #u79685_input {
  7781. position:absolute;
  7782. left:0px;
  7783. top:0px;
  7784. width:285px;
  7785. height:57px;
  7786. padding:2px 2px 2px 2px;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:14px;
  7791. letter-spacing:normal;
  7792. color:#000000;
  7793. vertical-align:none;
  7794. text-align:left;
  7795. text-transform:none;
  7796. background-color:transparent;
  7797. border-color:transparent;
  7798. }
  7799. #u79685_input.disabled {
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:285px;
  7804. height:57px;
  7805. padding:2px 2px 2px 2px;
  7806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7807. font-weight:400;
  7808. font-style:normal;
  7809. font-size:14px;
  7810. letter-spacing:normal;
  7811. color:#000000;
  7812. vertical-align:none;
  7813. text-align:left;
  7814. text-transform:none;
  7815. background-color:transparent;
  7816. border-color:transparent;
  7817. }
  7818. #u79685_div {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:285px;
  7824. height:57px;
  7825. background:inherit;
  7826. background-color:rgba(255, 255, 255, 1);
  7827. border:none;
  7828. border-radius:0px;
  7829. -moz-box-shadow:none;
  7830. -webkit-box-shadow:none;
  7831. box-shadow:none;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:14px;
  7836. }
  7837. #u79685 {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:1776px;
  7841. top:665px;
  7842. width:285px;
  7843. height:57px;
  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. }
  7850. #u79685 .text {
  7851. position:absolute;
  7852. align-self:center;
  7853. padding:2px 2px 2px 2px;
  7854. box-sizing:border-box;
  7855. width:100%;
  7856. }
  7857. #u79685_div.disabled {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:0px;
  7861. top:0px;
  7862. width:285px;
  7863. height:57px;
  7864. background:inherit;
  7865. background-color:rgba(240, 240, 240, 1);
  7866. border:none;
  7867. border-radius:0px;
  7868. -moz-box-shadow:none;
  7869. -webkit-box-shadow:none;
  7870. box-shadow:none;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:14px;
  7875. }
  7876. #u79685.disabled {
  7877. }
  7878. #u79686_div {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:136px;
  7884. height:90px;
  7885. background:inherit;
  7886. background-color:rgba(242, 242, 242, 1);
  7887. border:none;
  7888. border-radius:0px;
  7889. -moz-box-shadow:none;
  7890. -webkit-box-shadow:none;
  7891. box-shadow:none;
  7892. font-size:38px;
  7893. color:#AAAAAA;
  7894. }
  7895. #u79686 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:1768px;
  7899. top:522px;
  7900. width:136px;
  7901. height:90px;
  7902. display:flex;
  7903. font-size:38px;
  7904. color:#AAAAAA;
  7905. }
  7906. #u79686 .text {
  7907. position:absolute;
  7908. align-self:center;
  7909. padding:2px 2px 2px 2px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u79686_text {
  7914. border-width:0px;
  7915. word-wrap:break-word;
  7916. text-transform:none;
  7917. }
  7918. #u79687_div {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:81px;
  7924. height:30px;
  7925. background:inherit;
  7926. background-color:rgba(242, 242, 242, 0);
  7927. border:none;
  7928. border-top:0px;
  7929. border-right:0px;
  7930. border-bottom:0px;
  7931. border-radius:0px;
  7932. border-top-left-radius:0px;
  7933. border-bottom-left-radius:0px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:14px;
  7941. text-align:right;
  7942. }
  7943. #u79687 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:1681px;
  7947. top:665px;
  7948. width:81px;
  7949. height:30px;
  7950. display:flex;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:14px;
  7955. text-align:right;
  7956. }
  7957. #u79687 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:5px 10px 5px 0px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u79687_text {
  7965. border-width:0px;
  7966. white-space:nowrap;
  7967. text-transform:none;
  7968. }
  7969. #u79688_div {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:81px;
  7975. height:30px;
  7976. background:inherit;
  7977. background-color:rgba(242, 242, 242, 0);
  7978. border:none;
  7979. border-top:0px;
  7980. border-right:0px;
  7981. border-bottom:0px;
  7982. border-radius:0px;
  7983. border-top-left-radius:0px;
  7984. border-bottom-left-radius:0px;
  7985. -moz-box-shadow:none;
  7986. -webkit-box-shadow:none;
  7987. box-shadow:none;
  7988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:14px;
  7992. text-align:right;
  7993. }
  7994. #u79688 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:1681px;
  7998. top:522px;
  7999. width:81px;
  8000. height:30px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:14px;
  8006. text-align:right;
  8007. }
  8008. #u79688 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:5px 10px 5px 0px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u79688_text {
  8016. border-width:0px;
  8017. white-space:nowrap;
  8018. text-transform:none;
  8019. }
  8020. #u79689_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:88px;
  8026. height:30px;
  8027. background:inherit;
  8028. background-color:rgba(242, 242, 242, 0);
  8029. border:none;
  8030. border-top:0px;
  8031. border-right:0px;
  8032. border-bottom:0px;
  8033. border-radius:0px;
  8034. border-top-left-radius:0px;
  8035. border-bottom-left-radius:0px;
  8036. -moz-box-shadow:none;
  8037. -webkit-box-shadow:none;
  8038. box-shadow:none;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:14px;
  8043. text-align:right;
  8044. }
  8045. #u79689 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:1674px;
  8049. top:136px;
  8050. width:88px;
  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. text-align:right;
  8058. }
  8059. #u79689 .text {
  8060. position:absolute;
  8061. align-self:center;
  8062. padding:5px 10px 5px 0px;
  8063. box-sizing:border-box;
  8064. width:100%;
  8065. }
  8066. #u79689_text {
  8067. border-width:0px;
  8068. white-space:nowrap;
  8069. text-transform:none;
  8070. }
  8071. #u79690 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:0px;
  8077. height:0px;
  8078. }
  8079. #u79691_div {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:0px;
  8084. width:300px;
  8085. height:40px;
  8086. background:inherit;
  8087. background-color:rgba(255, 255, 255, 1);
  8088. box-sizing:border-box;
  8089. border-width:1px;
  8090. border-style:solid;
  8091. border-color:rgba(215, 215, 215, 1);
  8092. border-radius:4px;
  8093. -moz-box-shadow:none;
  8094. -webkit-box-shadow:none;
  8095. box-shadow:none;
  8096. font-size:11px;
  8097. }
  8098. #u79691 {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:1768px;
  8102. top:132px;
  8103. width:300px;
  8104. height:40px;
  8105. display:flex;
  8106. font-size:11px;
  8107. }
  8108. #u79691 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:2px 2px 2px 2px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u79691_text {
  8116. border-width:0px;
  8117. word-wrap:break-word;
  8118. text-transform:none;
  8119. visibility:hidden;
  8120. }
  8121. #u79692_input {
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:286px;
  8126. height:31px;
  8127. padding:2px 2px 2px 2px;
  8128. font-family:'ArialMT', 'Arial', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. font-size:11px;
  8132. letter-spacing:normal;
  8133. color:#AAAAAA;
  8134. vertical-align:none;
  8135. text-align:left;
  8136. text-transform:none;
  8137. background-color:transparent;
  8138. border-color:transparent;
  8139. }
  8140. #u79692_input.disabled {
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:286px;
  8145. height:31px;
  8146. padding:2px 2px 2px 2px;
  8147. font-family:'ArialMT', 'Arial', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:11px;
  8151. letter-spacing:normal;
  8152. color:#AAAAAA;
  8153. vertical-align:none;
  8154. text-align:left;
  8155. text-transform:none;
  8156. background-color:transparent;
  8157. border-color:transparent;
  8158. }
  8159. #u79692_div {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:0px;
  8163. top:0px;
  8164. width:286px;
  8165. height:31px;
  8166. background:inherit;
  8167. background-color:rgba(255, 255, 255, 1);
  8168. border:none;
  8169. border-radius:0px;
  8170. -moz-box-shadow:none;
  8171. -webkit-box-shadow:none;
  8172. box-shadow:none;
  8173. font-size:11px;
  8174. color:#AAAAAA;
  8175. }
  8176. #u79692 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:1775px;
  8180. top:135px;
  8181. width:286px;
  8182. height:31px;
  8183. display:flex;
  8184. font-size:11px;
  8185. color:#AAAAAA;
  8186. }
  8187. #u79692 .text {
  8188. position:absolute;
  8189. align-self:flex-start;
  8190. padding:2px 2px 2px 2px;
  8191. box-sizing:border-box;
  8192. width:100%;
  8193. }
  8194. #u79692_div.disabled {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:0px;
  8199. width:286px;
  8200. height:31px;
  8201. background:inherit;
  8202. background-color:rgba(240, 240, 240, 1);
  8203. border:none;
  8204. border-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-size:11px;
  8209. color:#AAAAAA;
  8210. }
  8211. #u79692.disabled {
  8212. }
  8213. .u79692_input_option {
  8214. font-size:11px;
  8215. }
  8216. #u79693_div {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:88px;
  8222. height:30px;
  8223. background:inherit;
  8224. background-color:rgba(242, 242, 242, 0);
  8225. border:none;
  8226. border-top:0px;
  8227. border-right:0px;
  8228. border-bottom:0px;
  8229. border-radius:0px;
  8230. border-top-left-radius:0px;
  8231. border-bottom-left-radius:0px;
  8232. -moz-box-shadow:none;
  8233. -webkit-box-shadow:none;
  8234. box-shadow:none;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:14px;
  8239. text-align:right;
  8240. }
  8241. #u79693 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:1674px;
  8245. top:186px;
  8246. width:88px;
  8247. height:30px;
  8248. display:flex;
  8249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8250. font-weight:400;
  8251. font-style:normal;
  8252. font-size:14px;
  8253. text-align:right;
  8254. }
  8255. #u79693 .text {
  8256. position:absolute;
  8257. align-self:center;
  8258. padding:5px 10px 5px 0px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u79693_text {
  8263. border-width:0px;
  8264. white-space:nowrap;
  8265. text-transform:none;
  8266. }
  8267. #u79694 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:0px;
  8271. top:0px;
  8272. width:0px;
  8273. height:0px;
  8274. }
  8275. #u79695_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:300px;
  8281. height:40px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 1);
  8284. box-sizing:border-box;
  8285. border-width:1px;
  8286. border-style:solid;
  8287. border-color:rgba(215, 215, 215, 1);
  8288. border-radius:4px;
  8289. -moz-box-shadow:none;
  8290. -webkit-box-shadow:none;
  8291. box-shadow:none;
  8292. font-size:11px;
  8293. }
  8294. #u79695 {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:1768px;
  8298. top:182px;
  8299. width:300px;
  8300. height:40px;
  8301. display:flex;
  8302. font-size:11px;
  8303. }
  8304. #u79695 .text {
  8305. position:absolute;
  8306. align-self:center;
  8307. padding:2px 2px 2px 2px;
  8308. box-sizing:border-box;
  8309. width:100%;
  8310. }
  8311. #u79695_text {
  8312. border-width:0px;
  8313. word-wrap:break-word;
  8314. text-transform:none;
  8315. visibility:hidden;
  8316. }
  8317. #u79696_input {
  8318. position:absolute;
  8319. left:0px;
  8320. top:0px;
  8321. width:286px;
  8322. height:31px;
  8323. padding:2px 2px 2px 2px;
  8324. font-family:'ArialMT', 'Arial', sans-serif;
  8325. font-weight:400;
  8326. font-style:normal;
  8327. font-size:11px;
  8328. letter-spacing:normal;
  8329. color:#AAAAAA;
  8330. vertical-align:none;
  8331. text-align:left;
  8332. text-transform:none;
  8333. background-color:transparent;
  8334. border-color:transparent;
  8335. }
  8336. #u79696_input.disabled {
  8337. position:absolute;
  8338. left:0px;
  8339. top:0px;
  8340. width:286px;
  8341. height:31px;
  8342. padding:2px 2px 2px 2px;
  8343. font-family:'ArialMT', 'Arial', sans-serif;
  8344. font-weight:400;
  8345. font-style:normal;
  8346. font-size:11px;
  8347. letter-spacing:normal;
  8348. color:#AAAAAA;
  8349. vertical-align:none;
  8350. text-align:left;
  8351. text-transform:none;
  8352. background-color:transparent;
  8353. border-color:transparent;
  8354. }
  8355. #u79696_div {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:286px;
  8361. height:31px;
  8362. background:inherit;
  8363. background-color:rgba(255, 255, 255, 1);
  8364. border:none;
  8365. border-radius:0px;
  8366. -moz-box-shadow:none;
  8367. -webkit-box-shadow:none;
  8368. box-shadow:none;
  8369. font-size:11px;
  8370. color:#AAAAAA;
  8371. }
  8372. #u79696 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:1775px;
  8376. top:185px;
  8377. width:286px;
  8378. height:31px;
  8379. display:flex;
  8380. font-size:11px;
  8381. color:#AAAAAA;
  8382. }
  8383. #u79696 .text {
  8384. position:absolute;
  8385. align-self:flex-start;
  8386. padding:2px 2px 2px 2px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u79696_div.disabled {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:286px;
  8396. height:31px;
  8397. background:inherit;
  8398. background-color:rgba(240, 240, 240, 1);
  8399. border:none;
  8400. border-radius:0px;
  8401. -moz-box-shadow:none;
  8402. -webkit-box-shadow:none;
  8403. box-shadow:none;
  8404. font-size:11px;
  8405. color:#AAAAAA;
  8406. }
  8407. #u79696.disabled {
  8408. }
  8409. .u79696_input_option {
  8410. font-size:11px;
  8411. }
  8412. #u79697_div {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:0px;
  8416. top:0px;
  8417. width:88px;
  8418. height:30px;
  8419. background:inherit;
  8420. background-color:rgba(242, 242, 242, 0);
  8421. border:none;
  8422. border-top:0px;
  8423. border-right:0px;
  8424. border-bottom:0px;
  8425. border-radius:0px;
  8426. border-top-left-radius:0px;
  8427. border-bottom-left-radius:0px;
  8428. -moz-box-shadow:none;
  8429. -webkit-box-shadow:none;
  8430. box-shadow:none;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:14px;
  8435. text-align:right;
  8436. }
  8437. #u79697 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:1673px;
  8441. top:482px;
  8442. width:88px;
  8443. height:30px;
  8444. display:flex;
  8445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:14px;
  8449. text-align:right;
  8450. }
  8451. #u79697 .text {
  8452. position:absolute;
  8453. align-self:center;
  8454. padding:5px 10px 5px 0px;
  8455. box-sizing:border-box;
  8456. width:100%;
  8457. }
  8458. #u79697_text {
  8459. border-width:0px;
  8460. white-space:nowrap;
  8461. text-transform:none;
  8462. }
  8463. #u79698 label {
  8464. left:0px;
  8465. width:100%;
  8466. }
  8467. #u79698_img {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:0px;
  8471. top:3px;
  8472. width:12px;
  8473. height:12px;
  8474. }
  8475. #u79698 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:1768px;
  8479. top:488px;
  8480. width:100px;
  8481. height:18px;
  8482. display:flex;
  8483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. }
  8487. #u79698 .text {
  8488. position:absolute;
  8489. align-self:center;
  8490. padding:0px 2px 0px 2px;
  8491. box-sizing:border-box;
  8492. }
  8493. #u79698_img.selected {
  8494. }
  8495. #u79698.selected {
  8496. }
  8497. #u79698_img.disabled {
  8498. }
  8499. #u79698.disabled {
  8500. }
  8501. #u79698_img.selectedDisabled {
  8502. }
  8503. #u79698.selectedDisabled {
  8504. }
  8505. #u79698_text {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:14px;
  8509. top:0px;
  8510. width:84px;
  8511. word-wrap:break-word;
  8512. text-transform:none;
  8513. }
  8514. #u79698_input {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:0px;
  8520. height:0px;
  8521. opacity:0;
  8522. }
  8523. #u79699 label {
  8524. left:0px;
  8525. width:100%;
  8526. }
  8527. #u79699_img {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:0px;
  8531. top:3px;
  8532. width:12px;
  8533. height:12px;
  8534. }
  8535. #u79699 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:1868px;
  8539. top:488px;
  8540. width:100px;
  8541. height:18px;
  8542. display:flex;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. }
  8547. #u79699 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:0px 2px 0px 2px;
  8551. box-sizing:border-box;
  8552. }
  8553. #u79699_img.selected {
  8554. }
  8555. #u79699.selected {
  8556. }
  8557. #u79699_img.disabled {
  8558. }
  8559. #u79699.disabled {
  8560. }
  8561. #u79699_img.selectedDisabled {
  8562. }
  8563. #u79699.selectedDisabled {
  8564. }
  8565. #u79699_text {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:14px;
  8569. top:0px;
  8570. width:84px;
  8571. word-wrap:break-word;
  8572. text-transform:none;
  8573. }
  8574. #u79699_input {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:0px;
  8578. top:0px;
  8579. width:0px;
  8580. height:0px;
  8581. opacity:0;
  8582. }
  8583. #u79700 label {
  8584. left:0px;
  8585. width:100%;
  8586. }
  8587. #u79700_img {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:3px;
  8592. width:12px;
  8593. height:12px;
  8594. }
  8595. #u79700 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:1968px;
  8599. top:488px;
  8600. width:100px;
  8601. height:18px;
  8602. display:flex;
  8603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8604. font-weight:400;
  8605. font-style:normal;
  8606. }
  8607. #u79700 .text {
  8608. position:absolute;
  8609. align-self:center;
  8610. padding:0px 2px 0px 2px;
  8611. box-sizing:border-box;
  8612. }
  8613. #u79700_img.selected {
  8614. }
  8615. #u79700.selected {
  8616. }
  8617. #u79700_img.disabled {
  8618. }
  8619. #u79700.disabled {
  8620. }
  8621. #u79700_img.selectedDisabled {
  8622. }
  8623. #u79700.selectedDisabled {
  8624. }
  8625. #u79700_text {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:14px;
  8629. top:0px;
  8630. width:84px;
  8631. word-wrap:break-word;
  8632. text-transform:none;
  8633. }
  8634. #u79700_input {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:0px;
  8638. top:0px;
  8639. width:0px;
  8640. height:0px;
  8641. opacity:0;
  8642. }
  8643. #u79701_div {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:88px;
  8649. height:30px;
  8650. background:inherit;
  8651. background-color:rgba(242, 242, 242, 0);
  8652. border:none;
  8653. border-top:0px;
  8654. border-right:0px;
  8655. border-bottom:0px;
  8656. border-radius:0px;
  8657. border-top-left-radius:0px;
  8658. border-bottom-left-radius:0px;
  8659. -moz-box-shadow:none;
  8660. -webkit-box-shadow:none;
  8661. box-shadow:none;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:14px;
  8666. text-align:right;
  8667. }
  8668. #u79701 {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:1674px;
  8672. top:286px;
  8673. width:88px;
  8674. height:30px;
  8675. display:flex;
  8676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8677. font-weight:400;
  8678. font-style:normal;
  8679. font-size:14px;
  8680. text-align:right;
  8681. }
  8682. #u79701 .text {
  8683. position:absolute;
  8684. align-self:center;
  8685. padding:5px 10px 5px 0px;
  8686. box-sizing:border-box;
  8687. width:100%;
  8688. }
  8689. #u79701_text {
  8690. border-width:0px;
  8691. white-space:nowrap;
  8692. text-transform:none;
  8693. }
  8694. #u79702 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:0px;
  8698. top:0px;
  8699. width:0px;
  8700. height:0px;
  8701. }
  8702. #u79703_div {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:300px;
  8708. height:40px;
  8709. background:inherit;
  8710. background-color:rgba(255, 255, 255, 1);
  8711. box-sizing:border-box;
  8712. border-width:1px;
  8713. border-style:solid;
  8714. border-color:rgba(215, 215, 215, 1);
  8715. border-radius:4px;
  8716. -moz-box-shadow:none;
  8717. -webkit-box-shadow:none;
  8718. box-shadow:none;
  8719. font-size:11px;
  8720. }
  8721. #u79703 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:1768px;
  8725. top:282px;
  8726. width:300px;
  8727. height:40px;
  8728. display:flex;
  8729. font-size:11px;
  8730. }
  8731. #u79703 .text {
  8732. position:absolute;
  8733. align-self:center;
  8734. padding:2px 2px 2px 2px;
  8735. box-sizing:border-box;
  8736. width:100%;
  8737. }
  8738. #u79703_text {
  8739. border-width:0px;
  8740. word-wrap:break-word;
  8741. text-transform:none;
  8742. visibility:hidden;
  8743. }
  8744. #u79704_input {
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:286px;
  8749. height:31px;
  8750. padding:2px 2px 2px 2px;
  8751. font-family:'ArialMT', 'Arial', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. font-size:11px;
  8755. letter-spacing:normal;
  8756. color:#AAAAAA;
  8757. vertical-align:none;
  8758. text-align:left;
  8759. text-transform:none;
  8760. background-color:transparent;
  8761. border-color:transparent;
  8762. }
  8763. #u79704_input.disabled {
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:286px;
  8768. height:31px;
  8769. padding:2px 2px 2px 2px;
  8770. font-family:'ArialMT', 'Arial', sans-serif;
  8771. font-weight:400;
  8772. font-style:normal;
  8773. font-size:11px;
  8774. letter-spacing:normal;
  8775. color:#AAAAAA;
  8776. vertical-align:none;
  8777. text-align:left;
  8778. text-transform:none;
  8779. background-color:transparent;
  8780. border-color:transparent;
  8781. }
  8782. #u79704_div {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:0px;
  8786. top:0px;
  8787. width:286px;
  8788. height:31px;
  8789. background:inherit;
  8790. background-color:rgba(255, 255, 255, 1);
  8791. border:none;
  8792. border-radius:0px;
  8793. -moz-box-shadow:none;
  8794. -webkit-box-shadow:none;
  8795. box-shadow:none;
  8796. font-size:11px;
  8797. color:#AAAAAA;
  8798. }
  8799. #u79704 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:1775px;
  8803. top:285px;
  8804. width:286px;
  8805. height:31px;
  8806. display:flex;
  8807. font-size:11px;
  8808. color:#AAAAAA;
  8809. }
  8810. #u79704 .text {
  8811. position:absolute;
  8812. align-self:flex-start;
  8813. padding:2px 2px 2px 2px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u79704_div.disabled {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:286px;
  8823. height:31px;
  8824. background:inherit;
  8825. background-color:rgba(240, 240, 240, 1);
  8826. border:none;
  8827. border-radius:0px;
  8828. -moz-box-shadow:none;
  8829. -webkit-box-shadow:none;
  8830. box-shadow:none;
  8831. font-size:11px;
  8832. color:#AAAAAA;
  8833. }
  8834. #u79704.disabled {
  8835. }
  8836. .u79704_input_option {
  8837. font-size:11px;
  8838. }
  8839. #u79705_div {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:0px;
  8844. width:88px;
  8845. height:30px;
  8846. background:inherit;
  8847. background-color:rgba(242, 242, 242, 0);
  8848. border:none;
  8849. border-top:0px;
  8850. border-right:0px;
  8851. border-bottom:0px;
  8852. border-radius:0px;
  8853. border-top-left-radius:0px;
  8854. border-bottom-left-radius:0px;
  8855. -moz-box-shadow:none;
  8856. -webkit-box-shadow:none;
  8857. box-shadow:none;
  8858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8859. font-weight:400;
  8860. font-style:normal;
  8861. font-size:14px;
  8862. text-align:right;
  8863. }
  8864. #u79705 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:1674px;
  8868. top:436px;
  8869. width:88px;
  8870. height:30px;
  8871. display:flex;
  8872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:14px;
  8876. text-align:right;
  8877. }
  8878. #u79705 .text {
  8879. position:absolute;
  8880. align-self:center;
  8881. padding:5px 10px 5px 0px;
  8882. box-sizing:border-box;
  8883. width:100%;
  8884. }
  8885. #u79705_text {
  8886. border-width:0px;
  8887. white-space:nowrap;
  8888. text-transform:none;
  8889. }
  8890. #u79706 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:0px;
  8896. height:0px;
  8897. }
  8898. #u79707_div {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:300px;
  8904. height:40px;
  8905. background:inherit;
  8906. background-color:rgba(255, 255, 255, 1);
  8907. box-sizing:border-box;
  8908. border-width:1px;
  8909. border-style:solid;
  8910. border-color:rgba(215, 215, 215, 1);
  8911. border-radius:4px;
  8912. -moz-box-shadow:none;
  8913. -webkit-box-shadow:none;
  8914. box-shadow:none;
  8915. font-size:11px;
  8916. }
  8917. #u79707 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:1768px;
  8921. top:432px;
  8922. width:300px;
  8923. height:40px;
  8924. display:flex;
  8925. font-size:11px;
  8926. }
  8927. #u79707 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:2px 2px 2px 2px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u79707_text {
  8935. border-width:0px;
  8936. word-wrap:break-word;
  8937. text-transform:none;
  8938. visibility:hidden;
  8939. }
  8940. #u79708_input {
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:286px;
  8945. height:31px;
  8946. padding:2px 2px 2px 2px;
  8947. font-family:'ArialMT', 'Arial', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:11px;
  8951. letter-spacing:normal;
  8952. color:#AAAAAA;
  8953. vertical-align:none;
  8954. text-align:left;
  8955. text-transform:none;
  8956. background-color:transparent;
  8957. border-color:transparent;
  8958. }
  8959. #u79708_input.disabled {
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:286px;
  8964. height:31px;
  8965. padding:2px 2px 2px 2px;
  8966. font-family:'ArialMT', 'Arial', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:11px;
  8970. letter-spacing:normal;
  8971. color:#AAAAAA;
  8972. vertical-align:none;
  8973. text-align:left;
  8974. text-transform:none;
  8975. background-color:transparent;
  8976. border-color:transparent;
  8977. }
  8978. #u79708_div {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:0px;
  8982. top:0px;
  8983. width:286px;
  8984. height:31px;
  8985. background:inherit;
  8986. background-color:rgba(255, 255, 255, 1);
  8987. border:none;
  8988. border-radius:0px;
  8989. -moz-box-shadow:none;
  8990. -webkit-box-shadow:none;
  8991. box-shadow:none;
  8992. font-size:11px;
  8993. color:#AAAAAA;
  8994. }
  8995. #u79708 {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:1775px;
  8999. top:435px;
  9000. width:286px;
  9001. height:31px;
  9002. display:flex;
  9003. font-size:11px;
  9004. color:#AAAAAA;
  9005. }
  9006. #u79708 .text {
  9007. position:absolute;
  9008. align-self:flex-start;
  9009. padding:2px 2px 2px 2px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u79708_div.disabled {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:286px;
  9019. height:31px;
  9020. background:inherit;
  9021. background-color:rgba(240, 240, 240, 1);
  9022. border:none;
  9023. border-radius:0px;
  9024. -moz-box-shadow:none;
  9025. -webkit-box-shadow:none;
  9026. box-shadow:none;
  9027. font-size:11px;
  9028. color:#AAAAAA;
  9029. }
  9030. #u79708.disabled {
  9031. }
  9032. .u79708_input_option {
  9033. font-size:11px;
  9034. }
  9035. #u79709 {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:0px;
  9041. height:0px;
  9042. }
  9043. #u79710_img {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:50px;
  9049. height:31px;
  9050. }
  9051. #u79710 {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:1768px;
  9055. top:622px;
  9056. width:50px;
  9057. height:31px;
  9058. display:flex;
  9059. }
  9060. #u79710 .text {
  9061. position:absolute;
  9062. align-self:center;
  9063. padding:2px 2px 2px 2px;
  9064. box-sizing:border-box;
  9065. width:100%;
  9066. }
  9067. #u79710_text {
  9068. border-width:0px;
  9069. word-wrap:break-word;
  9070. text-transform:none;
  9071. visibility:hidden;
  9072. }
  9073. #u79711_div {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:137px;
  9079. height:30px;
  9080. background:inherit;
  9081. background-color:rgba(255, 255, 255, 0);
  9082. border:none;
  9083. border-top:0px;
  9084. border-right:0px;
  9085. border-bottom:0px;
  9086. border-radius:0px;
  9087. border-top-left-radius:0px;
  9088. border-bottom-left-radius:0px;
  9089. -moz-box-shadow:none;
  9090. -webkit-box-shadow:none;
  9091. box-shadow:none;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:14px;
  9096. }
  9097. #u79711 {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:1681px;
  9101. top:622px;
  9102. width:137px;
  9103. height:30px;
  9104. display:flex;
  9105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9106. font-weight:400;
  9107. font-style:normal;
  9108. font-size:14px;
  9109. }
  9110. #u79711 .text {
  9111. position:absolute;
  9112. align-self:center;
  9113. padding:5px 10px 5px 0px;
  9114. box-sizing:border-box;
  9115. width:100%;
  9116. }
  9117. #u79711_text {
  9118. border-width:0px;
  9119. word-wrap:break-word;
  9120. text-transform:none;
  9121. }
  9122. #u79712_div {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:38px;
  9128. height:24px;
  9129. background:inherit;
  9130. background-color:rgba(255, 255, 255, 1);
  9131. box-sizing:border-box;
  9132. border-width:1px;
  9133. border-style:solid;
  9134. border-color:rgba(170, 170, 170, 1);
  9135. border-radius:4px;
  9136. -moz-box-shadow:none;
  9137. -webkit-box-shadow:none;
  9138. box-shadow:none;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:10px;
  9143. color:#555555;
  9144. }
  9145. #u79712 {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:1238px;
  9149. top:252px;
  9150. width:38px;
  9151. height:24px;
  9152. display:flex;
  9153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9154. font-weight:400;
  9155. font-style:normal;
  9156. font-size:10px;
  9157. color:#555555;
  9158. }
  9159. #u79712 .text {
  9160. position:absolute;
  9161. align-self:center;
  9162. padding:5px 0px 5px 0px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u79712_text {
  9167. border-width:0px;
  9168. word-wrap:break-word;
  9169. text-transform:none;
  9170. }
  9171. #u79713_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:38px;
  9177. height:24px;
  9178. background:inherit;
  9179. background-color:rgba(255, 255, 255, 1);
  9180. box-sizing:border-box;
  9181. border-width:1px;
  9182. border-style:solid;
  9183. border-color:rgba(217, 0, 27, 1);
  9184. border-radius:4px;
  9185. -moz-box-shadow:none;
  9186. -webkit-box-shadow:none;
  9187. box-shadow:none;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:10px;
  9192. color:#D9001B;
  9193. }
  9194. #u79713 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:1238px;
  9198. top:288px;
  9199. width:38px;
  9200. height:24px;
  9201. display:flex;
  9202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9203. font-weight:400;
  9204. font-style:normal;
  9205. font-size:10px;
  9206. color:#D9001B;
  9207. }
  9208. #u79713 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:5px 0px 5px 0px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u79713_text {
  9216. border-width:0px;
  9217. word-wrap:break-word;
  9218. text-transform:none;
  9219. }
  9220. #u79714_div {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:38px;
  9226. height:24px;
  9227. background:inherit;
  9228. background-color:rgba(255, 255, 255, 1);
  9229. box-sizing:border-box;
  9230. border-width:1px;
  9231. border-style:solid;
  9232. border-color:rgba(217, 0, 27, 1);
  9233. border-radius:4px;
  9234. -moz-box-shadow:none;
  9235. -webkit-box-shadow:none;
  9236. box-shadow:none;
  9237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:10px;
  9241. color:#D9001B;
  9242. }
  9243. #u79714 {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:1238px;
  9247. top:324px;
  9248. width:38px;
  9249. height:24px;
  9250. display:flex;
  9251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:10px;
  9255. color:#D9001B;
  9256. }
  9257. #u79714 .text {
  9258. position:absolute;
  9259. align-self:center;
  9260. padding:5px 0px 5px 0px;
  9261. box-sizing:border-box;
  9262. width:100%;
  9263. }
  9264. #u79714_text {
  9265. border-width:0px;
  9266. word-wrap:break-word;
  9267. text-transform:none;
  9268. }
  9269. #u79715_div {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:0px;
  9273. top:0px;
  9274. width:79px;
  9275. height:30px;
  9276. background:inherit;
  9277. background-color:rgba(255, 255, 255, 1);
  9278. box-sizing:border-box;
  9279. border-width:1px;
  9280. border-style:solid;
  9281. border-color:rgba(170, 170, 170, 1);
  9282. border-radius:4px;
  9283. -moz-box-shadow:none;
  9284. -webkit-box-shadow:none;
  9285. box-shadow:none;
  9286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9287. font-weight:400;
  9288. font-style:normal;
  9289. font-size:12px;
  9290. color:#555555;
  9291. }
  9292. #u79715 {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:419px;
  9296. top:160px;
  9297. width:79px;
  9298. height:30px;
  9299. display:flex;
  9300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9301. font-weight:400;
  9302. font-style:normal;
  9303. font-size:12px;
  9304. color:#555555;
  9305. }
  9306. #u79715 .text {
  9307. position:absolute;
  9308. align-self:center;
  9309. padding:5px 15px 5px 15px;
  9310. box-sizing:border-box;
  9311. width:100%;
  9312. }
  9313. #u79715_text {
  9314. border-width:0px;
  9315. white-space:nowrap;
  9316. text-transform:none;
  9317. }
  9318. #u79716_div {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:59px;
  9324. height:30px;
  9325. background:inherit;
  9326. background-color:rgba(0, 153, 255, 1);
  9327. box-sizing:border-box;
  9328. border-width:1px;
  9329. border-style:solid;
  9330. border-color:rgba(0, 153, 255, 1);
  9331. border-radius:4px;
  9332. -moz-box-shadow:none;
  9333. -webkit-box-shadow:none;
  9334. box-shadow:none;
  9335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. font-size:14px;
  9339. color:#FFFFFF;
  9340. }
  9341. #u79716 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:350px;
  9345. top:160px;
  9346. width:59px;
  9347. height:30px;
  9348. display:flex;
  9349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9350. font-weight:400;
  9351. font-style:normal;
  9352. font-size:14px;
  9353. color:#FFFFFF;
  9354. }
  9355. #u79716 .text {
  9356. position:absolute;
  9357. align-self:center;
  9358. padding:5px 15px 5px 15px;
  9359. box-sizing:border-box;
  9360. width:100%;
  9361. }
  9362. #u79716_text {
  9363. border-width:0px;
  9364. white-space:nowrap;
  9365. text-transform:none;
  9366. }