styles.css 146 KB

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