styles.css 145 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750
  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. #u96807_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. #u96807 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u96807 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u96807_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u96808_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. #u96808 {
  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. #u96808 .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. #u96808_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u96809_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. #u96809 {
  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. #u96809 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u96809_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u96810 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u96811_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u96811 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u96811 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u96811_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u96812_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. #u96812 {
  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. #u96812 .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. #u96812_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u96813_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. #u96813 {
  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. #u96813 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u96813_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u96814 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u96815_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. #u96815_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. #u96815_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. #u96815 {
  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. #u96815 .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. #u96815_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. #u96815.disabled {
  356. }
  357. .u96815_input_option {
  358. font-size:14px;
  359. }
  360. #u96816_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u96816 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u96816 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u96816_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u96817_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. #u96817 {
  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. #u96817 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u96817_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u96818_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. #u96818 {
  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. #u96818 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u96818_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u96819 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u96820_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. #u96820 {
  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. #u96820 .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. #u96820_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u96821_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u96821 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u96821 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u96821_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u96822 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u96823_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. #u96823 {
  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. #u96823 .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. #u96823_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u96824_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u96824 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u96824 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u96824_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u96825 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u96826_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. #u96826 {
  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. #u96826 .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. #u96826_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u96827_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u96827 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u96827 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u96827_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u96828 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u96829_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. #u96829 {
  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. #u96829 .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. #u96829_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u96830_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u96830 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u96830 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u96830_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u96831 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u96832_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. #u96832 {
  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. #u96832 .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. #u96832_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u96833_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u96833 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u96833 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u96833_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u96834 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u96835_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. #u96835 {
  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. #u96835 .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. #u96835_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u96836_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u96836 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u96836 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u96836_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u96837 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u96838_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. #u96838 {
  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. #u96838 .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. #u96838_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u96839_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u96839 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u96839 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u96839_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u96840 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u96841_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. #u96841 {
  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. #u96841 .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. #u96841_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u96842_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u96842 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u96842 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u96842_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u96843 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u96844_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. #u96844 {
  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. #u96844 .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. #u96844_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u96845_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u96845 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u96845 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u96845_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u96846 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u96847_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. #u96847 {
  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. #u96847 .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. #u96847_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u96848_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u96848 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u96848 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u96848_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u96849_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. #u96849 {
  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. #u96849 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u96849_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u96850_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u96850 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u96850 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u96850_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u96851_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. #u96851 {
  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. #u96851 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u96851_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u96852_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u96852 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u96852 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u96852_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u96853 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u96854_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. #u96854 {
  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. #u96854 .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. #u96854_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u96855_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u96855 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u96855 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u96855_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u96856 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u96857_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. #u96857 {
  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. #u96857 .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. #u96857_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u96858_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u96858 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u96858 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u96858_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u96859_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1258px;
  1644. height:1180px;
  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. }
  1653. #u96859 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:333px;
  1657. top:50px;
  1658. width:1258px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u96859 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u96859_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u96860_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. line-height:40px;
  1699. }
  1700. #u96860 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:361px;
  1704. top:53px;
  1705. width:73px;
  1706. height:50px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:18px;
  1712. line-height:40px;
  1713. }
  1714. #u96860 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u96860_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u96861 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:353px;
  1730. top:221px;
  1731. width:1218px;
  1732. height:461px;
  1733. }
  1734. #u96862_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:94px;
  1740. height:31px;
  1741. }
  1742. #u96862 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:94px;
  1748. height:31px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u96862 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 2px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u96862_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u96863_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:96px;
  1774. height:31px;
  1775. }
  1776. #u96863 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:94px;
  1780. top:0px;
  1781. width:96px;
  1782. height:31px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:14px;
  1788. color:#FFFFFF;
  1789. }
  1790. #u96863 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 2px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u96863_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. }
  1802. #u96864_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:94px;
  1808. height:31px;
  1809. }
  1810. #u96864 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:190px;
  1814. top:0px;
  1815. width:94px;
  1816. height:31px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:14px;
  1822. color:#FFFFFF;
  1823. }
  1824. #u96864 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u96864_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u96865_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:114px;
  1842. height:31px;
  1843. }
  1844. #u96865 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:284px;
  1848. top:0px;
  1849. width:114px;
  1850. height:31px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:14px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u96865 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u96865_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u96866_img {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:114px;
  1876. height:31px;
  1877. }
  1878. #u96866 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:398px;
  1882. top:0px;
  1883. width:114px;
  1884. height:31px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:14px;
  1890. color:#FFFFFF;
  1891. }
  1892. #u96866 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 2px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u96866_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u96867_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:102px;
  1910. height:31px;
  1911. }
  1912. #u96867 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:512px;
  1916. top:0px;
  1917. width:102px;
  1918. height:31px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#FFFFFF;
  1925. }
  1926. #u96867 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u96867_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. }
  1938. #u96868_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:101px;
  1944. height:31px;
  1945. }
  1946. #u96868 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:614px;
  1950. top:0px;
  1951. width:101px;
  1952. height:31px;
  1953. display:flex;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:14px;
  1958. color:#FFFFFF;
  1959. }
  1960. #u96868 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 2px 2px 2px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u96868_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. }
  1972. #u96869_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:101px;
  1978. height:31px;
  1979. }
  1980. #u96869 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:715px;
  1984. top:0px;
  1985. width:101px;
  1986. height:31px;
  1987. display:flex;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:14px;
  1992. color:#FFFFFF;
  1993. }
  1994. #u96869 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u96869_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. }
  2006. #u96870_img {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:95px;
  2012. height:31px;
  2013. }
  2014. #u96870 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:816px;
  2018. top:0px;
  2019. width:95px;
  2020. height:31px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:14px;
  2026. color:#FFFFFF;
  2027. }
  2028. #u96870 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 2px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u96870_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u96871_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:102px;
  2046. height:31px;
  2047. }
  2048. #u96871 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:911px;
  2052. top:0px;
  2053. width:102px;
  2054. height:31px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:14px;
  2060. color:#FFFFFF;
  2061. }
  2062. #u96871 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:2px 2px 2px 2px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u96871_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. }
  2074. #u96872_img {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:101px;
  2080. height:31px;
  2081. }
  2082. #u96872 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:1013px;
  2086. top:0px;
  2087. width:101px;
  2088. height:31px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:14px;
  2094. color:#FFFFFF;
  2095. }
  2096. #u96872 .text {
  2097. position:absolute;
  2098. align-self:center;
  2099. padding:2px 2px 2px 2px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u96872_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u96873_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:104px;
  2114. height:31px;
  2115. }
  2116. #u96873 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:1114px;
  2120. top:0px;
  2121. width:104px;
  2122. height:31px;
  2123. display:flex;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:14px;
  2128. color:#FFFFFF;
  2129. }
  2130. #u96873 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u96873_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. }
  2142. #u96874_img {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:94px;
  2148. height:35px;
  2149. }
  2150. #u96874 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:31px;
  2155. width:94px;
  2156. height:35px;
  2157. display:flex;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:14px;
  2162. }
  2163. #u96874 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u96874_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u96875_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:96px;
  2182. height:35px;
  2183. }
  2184. #u96875 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:94px;
  2188. top:31px;
  2189. width:96px;
  2190. height:35px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:14px;
  2196. }
  2197. #u96875 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 2px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u96875_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u96876_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:94px;
  2215. height:35px;
  2216. }
  2217. #u96876 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:190px;
  2221. top:31px;
  2222. width:94px;
  2223. height:35px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. }
  2230. #u96876 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:2px 2px 2px 2px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u96876_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u96877_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:114px;
  2249. height:35px;
  2250. }
  2251. #u96877 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:284px;
  2255. top:31px;
  2256. width:114px;
  2257. height:35px;
  2258. display:flex;
  2259. font-size:14px;
  2260. }
  2261. #u96877 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u96877_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u96878_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:114px;
  2279. height:35px;
  2280. }
  2281. #u96878 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:398px;
  2285. top:31px;
  2286. width:114px;
  2287. height:35px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. }
  2294. #u96878 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 2px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u96878_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u96879_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:102px;
  2313. height:35px;
  2314. }
  2315. #u96879 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:512px;
  2319. top:31px;
  2320. width:102px;
  2321. height:35px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:14px;
  2327. }
  2328. #u96879 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 2px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u96879_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u96880_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:101px;
  2347. height:35px;
  2348. }
  2349. #u96880 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:614px;
  2353. top:31px;
  2354. width:101px;
  2355. height:35px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:14px;
  2361. }
  2362. #u96880 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 2px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u96880_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u96881_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:101px;
  2381. height:35px;
  2382. }
  2383. #u96881 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:715px;
  2387. top:31px;
  2388. width:101px;
  2389. height:35px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:14px;
  2395. }
  2396. #u96881 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u96881_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u96882_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:95px;
  2415. height:35px;
  2416. }
  2417. #u96882 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:816px;
  2421. top:31px;
  2422. width:95px;
  2423. height:35px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. }
  2430. #u96882 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u96882_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u96883_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:102px;
  2448. height:35px;
  2449. }
  2450. #u96883 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:911px;
  2454. top:31px;
  2455. width:102px;
  2456. height:35px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:14px;
  2462. }
  2463. #u96883 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u96883_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u96884_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:101px;
  2482. height:35px;
  2483. }
  2484. #u96884 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:1013px;
  2488. top:31px;
  2489. width:101px;
  2490. height:35px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:14px;
  2496. }
  2497. #u96884 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u96884_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. }
  2509. #u96885_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:104px;
  2515. height:35px;
  2516. }
  2517. #u96885 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:1114px;
  2521. top:31px;
  2522. width:104px;
  2523. height:35px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:14px;
  2529. color:#1890FF;
  2530. }
  2531. #u96885 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 2px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u96885_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. }
  2543. #u96886_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:94px;
  2549. height:35px;
  2550. }
  2551. #u96886 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:66px;
  2556. width:94px;
  2557. height:35px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:14px;
  2563. }
  2564. #u96886 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u96886_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u96887_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:96px;
  2583. height:35px;
  2584. }
  2585. #u96887 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:94px;
  2589. top:66px;
  2590. width:96px;
  2591. height:35px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. }
  2598. #u96887 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u96887_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u96888_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:94px;
  2617. height:35px;
  2618. }
  2619. #u96888 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:190px;
  2623. top:66px;
  2624. width:94px;
  2625. height:35px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:14px;
  2631. }
  2632. #u96888 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 2px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u96888_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u96889_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:114px;
  2651. height:35px;
  2652. }
  2653. #u96889 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:284px;
  2657. top:66px;
  2658. width:114px;
  2659. height:35px;
  2660. display:flex;
  2661. font-size:14px;
  2662. }
  2663. #u96889 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u96889_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. visibility:hidden;
  2675. }
  2676. #u96890_img {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:114px;
  2682. height:35px;
  2683. }
  2684. #u96890 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:398px;
  2688. top:66px;
  2689. width:114px;
  2690. height:35px;
  2691. display:flex;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:14px;
  2696. }
  2697. #u96890 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:2px 2px 2px 2px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u96890_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. visibility:hidden;
  2709. }
  2710. #u96891_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:102px;
  2716. height:35px;
  2717. }
  2718. #u96891 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:512px;
  2722. top:66px;
  2723. width:102px;
  2724. height:35px;
  2725. display:flex;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:14px;
  2730. }
  2731. #u96891 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 2px 2px 2px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u96891_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u96892_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:101px;
  2750. height:35px;
  2751. }
  2752. #u96892 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:614px;
  2756. top:66px;
  2757. width:101px;
  2758. height:35px;
  2759. display:flex;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:14px;
  2764. }
  2765. #u96892 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u96892_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u96893_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:101px;
  2784. height:35px;
  2785. }
  2786. #u96893 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:715px;
  2790. top:66px;
  2791. width:101px;
  2792. height:35px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:14px;
  2798. }
  2799. #u96893 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u96893_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u96894_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:95px;
  2818. height:35px;
  2819. }
  2820. #u96894 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:816px;
  2824. top:66px;
  2825. width:95px;
  2826. height:35px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. }
  2833. #u96894 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 2px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u96894_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. }
  2845. #u96895_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:102px;
  2851. height:35px;
  2852. }
  2853. #u96895 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:911px;
  2857. top:66px;
  2858. width:102px;
  2859. height:35px;
  2860. display:flex;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:14px;
  2865. }
  2866. #u96895 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u96895_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u96896_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:101px;
  2885. height:35px;
  2886. }
  2887. #u96896 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:1013px;
  2891. top:66px;
  2892. width:101px;
  2893. height:35px;
  2894. display:flex;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:14px;
  2899. }
  2900. #u96896 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 2px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u96896_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. }
  2912. #u96897_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:104px;
  2918. height:35px;
  2919. }
  2920. #u96897 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:1114px;
  2924. top:66px;
  2925. width:104px;
  2926. height:35px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:14px;
  2932. color:#1890FF;
  2933. }
  2934. #u96897 .text {
  2935. position:absolute;
  2936. align-self:center;
  2937. padding:2px 2px 2px 2px;
  2938. box-sizing:border-box;
  2939. width:100%;
  2940. }
  2941. #u96897_text {
  2942. border-width:0px;
  2943. word-wrap:break-word;
  2944. text-transform:none;
  2945. }
  2946. #u96898_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:94px;
  2952. height:30px;
  2953. }
  2954. #u96898 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:101px;
  2959. width:94px;
  2960. height:30px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:14px;
  2966. }
  2967. #u96898 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 2px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u96898_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u96899_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:96px;
  2986. height:30px;
  2987. }
  2988. #u96899 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:94px;
  2992. top:101px;
  2993. width:96px;
  2994. height:30px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:14px;
  3000. }
  3001. #u96899 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 2px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u96899_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u96900_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:94px;
  3020. height:30px;
  3021. }
  3022. #u96900 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:190px;
  3026. top:101px;
  3027. width:94px;
  3028. height:30px;
  3029. display:flex;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:14px;
  3034. }
  3035. #u96900 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 2px 2px 2px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u96900_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. visibility:hidden;
  3047. }
  3048. #u96901_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:114px;
  3054. height:30px;
  3055. }
  3056. #u96901 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:284px;
  3060. top:101px;
  3061. width:114px;
  3062. height:30px;
  3063. display:flex;
  3064. font-size:14px;
  3065. }
  3066. #u96901 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 2px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u96901_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. visibility:hidden;
  3078. }
  3079. #u96902_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:114px;
  3085. height:30px;
  3086. }
  3087. #u96902 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:398px;
  3091. top:101px;
  3092. width:114px;
  3093. height:30px;
  3094. display:flex;
  3095. font-size:14px;
  3096. }
  3097. #u96902 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 2px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u96902_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u96903_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:102px;
  3116. height:30px;
  3117. }
  3118. #u96903 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:512px;
  3122. top:101px;
  3123. width:102px;
  3124. height:30px;
  3125. display:flex;
  3126. font-size:14px;
  3127. }
  3128. #u96903 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u96903_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u96904_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:101px;
  3147. height:30px;
  3148. }
  3149. #u96904 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:614px;
  3153. top:101px;
  3154. width:101px;
  3155. height:30px;
  3156. display:flex;
  3157. font-size:14px;
  3158. }
  3159. #u96904 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 2px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u96904_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u96905_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:101px;
  3178. height:30px;
  3179. }
  3180. #u96905 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:715px;
  3184. top:101px;
  3185. width:101px;
  3186. height:30px;
  3187. display:flex;
  3188. font-size:14px;
  3189. }
  3190. #u96905 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 2px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u96905_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u96906_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:95px;
  3209. height:30px;
  3210. }
  3211. #u96906 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:816px;
  3215. top:101px;
  3216. width:95px;
  3217. height:30px;
  3218. display:flex;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:14px;
  3223. }
  3224. #u96906 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 2px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u96906_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. }
  3236. #u96907_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:102px;
  3242. height:30px;
  3243. }
  3244. #u96907 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:911px;
  3248. top:101px;
  3249. width:102px;
  3250. height:30px;
  3251. display:flex;
  3252. font-size:14px;
  3253. }
  3254. #u96907 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u96907_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u96908_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:101px;
  3273. height:30px;
  3274. }
  3275. #u96908 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:1013px;
  3279. top:101px;
  3280. width:101px;
  3281. height:30px;
  3282. display:flex;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:14px;
  3287. }
  3288. #u96908 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 2px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u96908_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. }
  3300. #u96909_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:104px;
  3306. height:30px;
  3307. }
  3308. #u96909 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:1114px;
  3312. top:101px;
  3313. width:104px;
  3314. height:30px;
  3315. display:flex;
  3316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:14px;
  3320. color:#1890FF;
  3321. }
  3322. #u96909 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 2px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u96909_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. }
  3334. #u96910_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:94px;
  3340. height:30px;
  3341. }
  3342. #u96910 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:131px;
  3347. width:94px;
  3348. height:30px;
  3349. display:flex;
  3350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:14px;
  3354. }
  3355. #u96910 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u96910_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u96911_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:96px;
  3374. height:30px;
  3375. }
  3376. #u96911 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:94px;
  3380. top:131px;
  3381. width:96px;
  3382. height:30px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:14px;
  3388. }
  3389. #u96911 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u96911_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u96912_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:94px;
  3408. height:30px;
  3409. }
  3410. #u96912 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:190px;
  3414. top:131px;
  3415. width:94px;
  3416. height:30px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. }
  3423. #u96912 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 2px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u96912_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u96913_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:114px;
  3442. height:30px;
  3443. }
  3444. #u96913 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:284px;
  3448. top:131px;
  3449. width:114px;
  3450. height:30px;
  3451. display:flex;
  3452. font-size:14px;
  3453. }
  3454. #u96913 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u96913_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u96914_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:114px;
  3473. height:30px;
  3474. }
  3475. #u96914 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:398px;
  3479. top:131px;
  3480. width:114px;
  3481. height:30px;
  3482. display:flex;
  3483. font-size:14px;
  3484. }
  3485. #u96914 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 2px 2px 2px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u96914_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u96915_img {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:102px;
  3504. height:30px;
  3505. }
  3506. #u96915 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:512px;
  3510. top:131px;
  3511. width:102px;
  3512. height:30px;
  3513. display:flex;
  3514. font-size:14px;
  3515. }
  3516. #u96915 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u96915_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u96916_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:101px;
  3535. height:30px;
  3536. }
  3537. #u96916 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:614px;
  3541. top:131px;
  3542. width:101px;
  3543. height:30px;
  3544. display:flex;
  3545. font-size:14px;
  3546. }
  3547. #u96916 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 2px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u96916_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u96917_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:101px;
  3566. height:30px;
  3567. }
  3568. #u96917 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:715px;
  3572. top:131px;
  3573. width:101px;
  3574. height:30px;
  3575. display:flex;
  3576. font-size:14px;
  3577. }
  3578. #u96917 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 2px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u96917_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u96918_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:95px;
  3597. height:30px;
  3598. }
  3599. #u96918 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:816px;
  3603. top:131px;
  3604. width:95px;
  3605. height:30px;
  3606. display:flex;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:14px;
  3611. }
  3612. #u96918 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 2px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u96918_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. }
  3624. #u96919_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:102px;
  3630. height:30px;
  3631. }
  3632. #u96919 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:911px;
  3636. top:131px;
  3637. width:102px;
  3638. height:30px;
  3639. display:flex;
  3640. font-size:14px;
  3641. }
  3642. #u96919 .text {
  3643. position:absolute;
  3644. align-self:center;
  3645. padding:2px 2px 2px 2px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u96919_text {
  3650. border-width:0px;
  3651. word-wrap:break-word;
  3652. text-transform:none;
  3653. visibility:hidden;
  3654. }
  3655. #u96920_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:101px;
  3661. height:30px;
  3662. }
  3663. #u96920 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:1013px;
  3667. top:131px;
  3668. width:101px;
  3669. height:30px;
  3670. display:flex;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. }
  3676. #u96920 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u96920_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. }
  3688. #u96921_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:104px;
  3694. height:30px;
  3695. }
  3696. #u96921 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:1114px;
  3700. top:131px;
  3701. width:104px;
  3702. height:30px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:14px;
  3708. color:#1890FF;
  3709. }
  3710. #u96921 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 2px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u96921_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. }
  3722. #u96922_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:94px;
  3728. height:30px;
  3729. }
  3730. #u96922 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:161px;
  3735. width:94px;
  3736. height:30px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:14px;
  3742. }
  3743. #u96922 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 2px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u96922_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u96923_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:96px;
  3762. height:30px;
  3763. }
  3764. #u96923 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:94px;
  3768. top:161px;
  3769. width:96px;
  3770. height:30px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. }
  3777. #u96923 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 2px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u96923_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u96924_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:94px;
  3796. height:30px;
  3797. }
  3798. #u96924 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:190px;
  3802. top:161px;
  3803. width:94px;
  3804. height:30px;
  3805. display:flex;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:14px;
  3810. }
  3811. #u96924 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 2px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u96924_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. visibility:hidden;
  3823. }
  3824. #u96925_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:114px;
  3830. height:30px;
  3831. }
  3832. #u96925 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:284px;
  3836. top:161px;
  3837. width:114px;
  3838. height:30px;
  3839. display:flex;
  3840. font-size:14px;
  3841. }
  3842. #u96925 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 2px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u96925_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. visibility:hidden;
  3854. }
  3855. #u96926_img {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:114px;
  3861. height:30px;
  3862. }
  3863. #u96926 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:398px;
  3867. top:161px;
  3868. width:114px;
  3869. height:30px;
  3870. display:flex;
  3871. font-size:14px;
  3872. }
  3873. #u96926 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u96926_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u96927_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:102px;
  3892. height:30px;
  3893. }
  3894. #u96927 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:512px;
  3898. top:161px;
  3899. width:102px;
  3900. height:30px;
  3901. display:flex;
  3902. font-size:14px;
  3903. }
  3904. #u96927 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u96927_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u96928_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:101px;
  3923. height:30px;
  3924. }
  3925. #u96928 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:614px;
  3929. top:161px;
  3930. width:101px;
  3931. height:30px;
  3932. display:flex;
  3933. font-size:14px;
  3934. }
  3935. #u96928 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 2px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u96928_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u96929_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:101px;
  3954. height:30px;
  3955. }
  3956. #u96929 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:715px;
  3960. top:161px;
  3961. width:101px;
  3962. height:30px;
  3963. display:flex;
  3964. font-size:14px;
  3965. }
  3966. #u96929 .text {
  3967. position:absolute;
  3968. align-self:center;
  3969. padding:2px 2px 2px 2px;
  3970. box-sizing:border-box;
  3971. width:100%;
  3972. }
  3973. #u96929_text {
  3974. border-width:0px;
  3975. word-wrap:break-word;
  3976. text-transform:none;
  3977. visibility:hidden;
  3978. }
  3979. #u96930_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:95px;
  3985. height:30px;
  3986. }
  3987. #u96930 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:816px;
  3991. top:161px;
  3992. width:95px;
  3993. height:30px;
  3994. display:flex;
  3995. font-size:14px;
  3996. }
  3997. #u96930 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 2px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u96930_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u96931_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:102px;
  4016. height:30px;
  4017. }
  4018. #u96931 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:911px;
  4022. top:161px;
  4023. width:102px;
  4024. height:30px;
  4025. display:flex;
  4026. font-size:14px;
  4027. }
  4028. #u96931 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u96931_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u96932_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:101px;
  4047. height:30px;
  4048. }
  4049. #u96932 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:1013px;
  4053. top:161px;
  4054. width:101px;
  4055. height:30px;
  4056. display:flex;
  4057. font-size:14px;
  4058. }
  4059. #u96932 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u96932_text {
  4067. border-width:0px;
  4068. word-wrap:break-word;
  4069. text-transform:none;
  4070. visibility:hidden;
  4071. }
  4072. #u96933_img {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:104px;
  4078. height:30px;
  4079. }
  4080. #u96933 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1114px;
  4084. top:161px;
  4085. width:104px;
  4086. height:30px;
  4087. display:flex;
  4088. font-size:14px;
  4089. }
  4090. #u96933 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u96933_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u96934_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:94px;
  4109. height:30px;
  4110. }
  4111. #u96934 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:191px;
  4116. width:94px;
  4117. height:30px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:14px;
  4123. }
  4124. #u96934 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 2px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u96934_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u96935_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:96px;
  4143. height:30px;
  4144. }
  4145. #u96935 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:94px;
  4149. top:191px;
  4150. width:96px;
  4151. height:30px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. }
  4158. #u96935 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u96935_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u96936_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:94px;
  4177. height:30px;
  4178. }
  4179. #u96936 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:190px;
  4183. top:191px;
  4184. width:94px;
  4185. height:30px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:14px;
  4191. }
  4192. #u96936 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 2px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u96936_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. visibility:hidden;
  4204. }
  4205. #u96937_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:114px;
  4211. height:30px;
  4212. }
  4213. #u96937 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:284px;
  4217. top:191px;
  4218. width:114px;
  4219. height:30px;
  4220. display:flex;
  4221. font-size:14px;
  4222. }
  4223. #u96937 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u96937_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u96938_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:114px;
  4242. height:30px;
  4243. }
  4244. #u96938 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:398px;
  4248. top:191px;
  4249. width:114px;
  4250. height:30px;
  4251. display:flex;
  4252. font-size:14px;
  4253. }
  4254. #u96938 .text {
  4255. position:absolute;
  4256. align-self:center;
  4257. padding:2px 2px 2px 2px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u96938_text {
  4262. border-width:0px;
  4263. word-wrap:break-word;
  4264. text-transform:none;
  4265. visibility:hidden;
  4266. }
  4267. #u96939_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:102px;
  4273. height:30px;
  4274. }
  4275. #u96939 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:512px;
  4279. top:191px;
  4280. width:102px;
  4281. height:30px;
  4282. display:flex;
  4283. font-size:14px;
  4284. }
  4285. #u96939 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 2px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u96939_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u96940_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:101px;
  4304. height:30px;
  4305. }
  4306. #u96940 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:614px;
  4310. top:191px;
  4311. width:101px;
  4312. height:30px;
  4313. display:flex;
  4314. font-size:14px;
  4315. }
  4316. #u96940 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u96940_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u96941_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:101px;
  4335. height:30px;
  4336. }
  4337. #u96941 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:715px;
  4341. top:191px;
  4342. width:101px;
  4343. height:30px;
  4344. display:flex;
  4345. font-size:14px;
  4346. }
  4347. #u96941 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u96941_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u96942_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:95px;
  4366. height:30px;
  4367. }
  4368. #u96942 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:816px;
  4372. top:191px;
  4373. width:95px;
  4374. height:30px;
  4375. display:flex;
  4376. font-size:14px;
  4377. }
  4378. #u96942 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u96942_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u96943_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:102px;
  4397. height:30px;
  4398. }
  4399. #u96943 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:911px;
  4403. top:191px;
  4404. width:102px;
  4405. height:30px;
  4406. display:flex;
  4407. font-size:14px;
  4408. }
  4409. #u96943 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u96943_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u96944_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:101px;
  4428. height:30px;
  4429. }
  4430. #u96944 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:1013px;
  4434. top:191px;
  4435. width:101px;
  4436. height:30px;
  4437. display:flex;
  4438. font-size:14px;
  4439. }
  4440. #u96944 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u96944_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u96945_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:104px;
  4459. height:30px;
  4460. }
  4461. #u96945 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:1114px;
  4465. top:191px;
  4466. width:104px;
  4467. height:30px;
  4468. display:flex;
  4469. font-size:14px;
  4470. }
  4471. #u96945 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u96945_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u96946_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:94px;
  4490. height:30px;
  4491. }
  4492. #u96946 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:221px;
  4497. width:94px;
  4498. height:30px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. }
  4505. #u96946 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u96946_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u96947_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:96px;
  4524. height:30px;
  4525. }
  4526. #u96947 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:94px;
  4530. top:221px;
  4531. width:96px;
  4532. height:30px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. }
  4539. #u96947 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 2px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u96947_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u96948_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:94px;
  4558. height:30px;
  4559. }
  4560. #u96948 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:190px;
  4564. top:221px;
  4565. width:94px;
  4566. height:30px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. }
  4573. #u96948 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u96948_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u96949_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:114px;
  4592. height:30px;
  4593. }
  4594. #u96949 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:284px;
  4598. top:221px;
  4599. width:114px;
  4600. height:30px;
  4601. display:flex;
  4602. font-size:14px;
  4603. }
  4604. #u96949 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u96949_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u96950_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:114px;
  4623. height:30px;
  4624. }
  4625. #u96950 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:398px;
  4629. top:221px;
  4630. width:114px;
  4631. height:30px;
  4632. display:flex;
  4633. font-size:14px;
  4634. }
  4635. #u96950 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 2px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u96950_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u96951_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:102px;
  4654. height:30px;
  4655. }
  4656. #u96951 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:512px;
  4660. top:221px;
  4661. width:102px;
  4662. height:30px;
  4663. display:flex;
  4664. font-size:14px;
  4665. }
  4666. #u96951 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u96951_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u96952_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:101px;
  4685. height:30px;
  4686. }
  4687. #u96952 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:614px;
  4691. top:221px;
  4692. width:101px;
  4693. height:30px;
  4694. display:flex;
  4695. font-size:14px;
  4696. }
  4697. #u96952 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 2px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u96952_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u96953_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:101px;
  4716. height:30px;
  4717. }
  4718. #u96953 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:715px;
  4722. top:221px;
  4723. width:101px;
  4724. height:30px;
  4725. display:flex;
  4726. font-size:14px;
  4727. }
  4728. #u96953 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 2px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u96953_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u96954_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:95px;
  4747. height:30px;
  4748. }
  4749. #u96954 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:816px;
  4753. top:221px;
  4754. width:95px;
  4755. height:30px;
  4756. display:flex;
  4757. font-size:14px;
  4758. }
  4759. #u96954 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 2px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u96954_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u96955_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:102px;
  4778. height:30px;
  4779. }
  4780. #u96955 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:911px;
  4784. top:221px;
  4785. width:102px;
  4786. height:30px;
  4787. display:flex;
  4788. font-size:14px;
  4789. }
  4790. #u96955 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u96955_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u96956_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:101px;
  4809. height:30px;
  4810. }
  4811. #u96956 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1013px;
  4815. top:221px;
  4816. width:101px;
  4817. height:30px;
  4818. display:flex;
  4819. font-size:14px;
  4820. }
  4821. #u96956 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u96956_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u96957_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:104px;
  4840. height:30px;
  4841. }
  4842. #u96957 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:1114px;
  4846. top:221px;
  4847. width:104px;
  4848. height:30px;
  4849. display:flex;
  4850. font-size:14px;
  4851. }
  4852. #u96957 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u96957_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u96958_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:94px;
  4871. height:30px;
  4872. }
  4873. #u96958 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:251px;
  4878. width:94px;
  4879. height:30px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:14px;
  4885. }
  4886. #u96958 .text {
  4887. position:absolute;
  4888. align-self:center;
  4889. padding:2px 2px 2px 2px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u96958_text {
  4894. border-width:0px;
  4895. word-wrap:break-word;
  4896. text-transform:none;
  4897. visibility:hidden;
  4898. }
  4899. #u96959_img {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:96px;
  4905. height:30px;
  4906. }
  4907. #u96959 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:94px;
  4911. top:251px;
  4912. width:96px;
  4913. height:30px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:14px;
  4919. }
  4920. #u96959 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:2px 2px 2px 2px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u96959_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. visibility:hidden;
  4932. }
  4933. #u96960_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:94px;
  4939. height:30px;
  4940. }
  4941. #u96960 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:190px;
  4945. top:251px;
  4946. width:94px;
  4947. height:30px;
  4948. display:flex;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:14px;
  4953. }
  4954. #u96960 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:2px 2px 2px 2px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u96960_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u96961_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:114px;
  4973. height:30px;
  4974. }
  4975. #u96961 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:284px;
  4979. top:251px;
  4980. width:114px;
  4981. height:30px;
  4982. display:flex;
  4983. font-size:14px;
  4984. }
  4985. #u96961 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 2px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u96961_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u96962_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:114px;
  5004. height:30px;
  5005. }
  5006. #u96962 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:398px;
  5010. top:251px;
  5011. width:114px;
  5012. height:30px;
  5013. display:flex;
  5014. font-size:14px;
  5015. }
  5016. #u96962 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 2px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u96962_text {
  5024. border-width:0px;
  5025. word-wrap:break-word;
  5026. text-transform:none;
  5027. visibility:hidden;
  5028. }
  5029. #u96963_img {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:102px;
  5035. height:30px;
  5036. }
  5037. #u96963 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:512px;
  5041. top:251px;
  5042. width:102px;
  5043. height:30px;
  5044. display:flex;
  5045. font-size:14px;
  5046. }
  5047. #u96963 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u96963_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u96964_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:101px;
  5066. height:30px;
  5067. }
  5068. #u96964 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:614px;
  5072. top:251px;
  5073. width:101px;
  5074. height:30px;
  5075. display:flex;
  5076. font-size:14px;
  5077. }
  5078. #u96964 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u96964_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u96965_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:101px;
  5097. height:30px;
  5098. }
  5099. #u96965 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:715px;
  5103. top:251px;
  5104. width:101px;
  5105. height:30px;
  5106. display:flex;
  5107. font-size:14px;
  5108. }
  5109. #u96965 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 2px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u96965_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. visibility:hidden;
  5121. }
  5122. #u96966_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:95px;
  5128. height:30px;
  5129. }
  5130. #u96966 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:816px;
  5134. top:251px;
  5135. width:95px;
  5136. height:30px;
  5137. display:flex;
  5138. font-size:14px;
  5139. }
  5140. #u96966 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 2px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u96966_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u96967_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:102px;
  5159. height:30px;
  5160. }
  5161. #u96967 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:911px;
  5165. top:251px;
  5166. width:102px;
  5167. height:30px;
  5168. display:flex;
  5169. font-size:14px;
  5170. }
  5171. #u96967 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 2px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u96967_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. visibility:hidden;
  5183. }
  5184. #u96968_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:101px;
  5190. height:30px;
  5191. }
  5192. #u96968 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:1013px;
  5196. top:251px;
  5197. width:101px;
  5198. height:30px;
  5199. display:flex;
  5200. font-size:14px;
  5201. }
  5202. #u96968 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 2px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u96968_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u96969_img {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:104px;
  5221. height:30px;
  5222. }
  5223. #u96969 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1114px;
  5227. top:251px;
  5228. width:104px;
  5229. height:30px;
  5230. display:flex;
  5231. font-size:14px;
  5232. }
  5233. #u96969 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u96969_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u96970_img {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:94px;
  5252. height:30px;
  5253. }
  5254. #u96970 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:281px;
  5259. width:94px;
  5260. height:30px;
  5261. display:flex;
  5262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:14px;
  5266. }
  5267. #u96970 .text {
  5268. position:absolute;
  5269. align-self:center;
  5270. padding:2px 2px 2px 2px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u96970_text {
  5275. border-width:0px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. visibility:hidden;
  5279. }
  5280. #u96971_img {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:96px;
  5286. height:30px;
  5287. }
  5288. #u96971 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:94px;
  5292. top:281px;
  5293. width:96px;
  5294. height:30px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:14px;
  5300. }
  5301. #u96971 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 2px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u96971_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u96972_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:94px;
  5320. height:30px;
  5321. }
  5322. #u96972 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:190px;
  5326. top:281px;
  5327. width:94px;
  5328. height:30px;
  5329. display:flex;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:14px;
  5334. }
  5335. #u96972 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u96972_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u96973_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:114px;
  5354. height:30px;
  5355. }
  5356. #u96973 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:284px;
  5360. top:281px;
  5361. width:114px;
  5362. height:30px;
  5363. display:flex;
  5364. font-size:14px;
  5365. }
  5366. #u96973 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u96973_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u96974_img {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:114px;
  5385. height:30px;
  5386. }
  5387. #u96974 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:398px;
  5391. top:281px;
  5392. width:114px;
  5393. height:30px;
  5394. display:flex;
  5395. font-size:14px;
  5396. }
  5397. #u96974 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 2px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u96974_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u96975_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:102px;
  5416. height:30px;
  5417. }
  5418. #u96975 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:512px;
  5422. top:281px;
  5423. width:102px;
  5424. height:30px;
  5425. display:flex;
  5426. font-size:14px;
  5427. }
  5428. #u96975 .text {
  5429. position:absolute;
  5430. align-self:center;
  5431. padding:2px 2px 2px 2px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u96975_text {
  5436. border-width:0px;
  5437. word-wrap:break-word;
  5438. text-transform:none;
  5439. visibility:hidden;
  5440. }
  5441. #u96976_img {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:101px;
  5447. height:30px;
  5448. }
  5449. #u96976 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:614px;
  5453. top:281px;
  5454. width:101px;
  5455. height:30px;
  5456. display:flex;
  5457. font-size:14px;
  5458. }
  5459. #u96976 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u96976_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u96977_img {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:101px;
  5478. height:30px;
  5479. }
  5480. #u96977 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:715px;
  5484. top:281px;
  5485. width:101px;
  5486. height:30px;
  5487. display:flex;
  5488. font-size:14px;
  5489. }
  5490. #u96977 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 2px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u96977_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. visibility:hidden;
  5502. }
  5503. #u96978_img {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:95px;
  5509. height:30px;
  5510. }
  5511. #u96978 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:816px;
  5515. top:281px;
  5516. width:95px;
  5517. height:30px;
  5518. display:flex;
  5519. font-size:14px;
  5520. }
  5521. #u96978 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u96978_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u96979_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:102px;
  5540. height:30px;
  5541. }
  5542. #u96979 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:911px;
  5546. top:281px;
  5547. width:102px;
  5548. height:30px;
  5549. display:flex;
  5550. font-size:14px;
  5551. }
  5552. #u96979 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 2px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u96979_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u96980_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:101px;
  5571. height:30px;
  5572. }
  5573. #u96980 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:1013px;
  5577. top:281px;
  5578. width:101px;
  5579. height:30px;
  5580. display:flex;
  5581. font-size:14px;
  5582. }
  5583. #u96980 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 2px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u96980_text {
  5591. border-width:0px;
  5592. word-wrap:break-word;
  5593. text-transform:none;
  5594. visibility:hidden;
  5595. }
  5596. #u96981_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:104px;
  5602. height:30px;
  5603. }
  5604. #u96981 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:1114px;
  5608. top:281px;
  5609. width:104px;
  5610. height:30px;
  5611. display:flex;
  5612. font-size:14px;
  5613. }
  5614. #u96981 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 2px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u96981_text {
  5622. border-width:0px;
  5623. word-wrap:break-word;
  5624. text-transform:none;
  5625. visibility:hidden;
  5626. }
  5627. #u96982_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:94px;
  5633. height:30px;
  5634. }
  5635. #u96982 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:311px;
  5640. width:94px;
  5641. height:30px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:14px;
  5647. }
  5648. #u96982 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 2px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u96982_text {
  5656. border-width:0px;
  5657. word-wrap:break-word;
  5658. text-transform:none;
  5659. visibility:hidden;
  5660. }
  5661. #u96983_img {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:96px;
  5667. height:30px;
  5668. }
  5669. #u96983 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:94px;
  5673. top:311px;
  5674. width:96px;
  5675. height:30px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:14px;
  5681. }
  5682. #u96983 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:2px 2px 2px 2px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u96983_text {
  5690. border-width:0px;
  5691. word-wrap:break-word;
  5692. text-transform:none;
  5693. visibility:hidden;
  5694. }
  5695. #u96984_img {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:94px;
  5701. height:30px;
  5702. }
  5703. #u96984 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:190px;
  5707. top:311px;
  5708. width:94px;
  5709. height:30px;
  5710. display:flex;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:14px;
  5715. }
  5716. #u96984 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:2px 2px 2px 2px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u96984_text {
  5724. border-width:0px;
  5725. word-wrap:break-word;
  5726. text-transform:none;
  5727. visibility:hidden;
  5728. }
  5729. #u96985_img {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:114px;
  5735. height:30px;
  5736. }
  5737. #u96985 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:284px;
  5741. top:311px;
  5742. width:114px;
  5743. height:30px;
  5744. display:flex;
  5745. font-size:14px;
  5746. }
  5747. #u96985 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u96985_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u96986_img {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:114px;
  5766. height:30px;
  5767. }
  5768. #u96986 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:398px;
  5772. top:311px;
  5773. width:114px;
  5774. height:30px;
  5775. display:flex;
  5776. font-size:14px;
  5777. }
  5778. #u96986 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 2px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u96986_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u96987_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:102px;
  5797. height:30px;
  5798. }
  5799. #u96987 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:512px;
  5803. top:311px;
  5804. width:102px;
  5805. height:30px;
  5806. display:flex;
  5807. font-size:14px;
  5808. }
  5809. #u96987 .text {
  5810. position:absolute;
  5811. align-self:center;
  5812. padding:2px 2px 2px 2px;
  5813. box-sizing:border-box;
  5814. width:100%;
  5815. }
  5816. #u96987_text {
  5817. border-width:0px;
  5818. word-wrap:break-word;
  5819. text-transform:none;
  5820. visibility:hidden;
  5821. }
  5822. #u96988_img {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:101px;
  5828. height:30px;
  5829. }
  5830. #u96988 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:614px;
  5834. top:311px;
  5835. width:101px;
  5836. height:30px;
  5837. display:flex;
  5838. font-size:14px;
  5839. }
  5840. #u96988 .text {
  5841. position:absolute;
  5842. align-self:center;
  5843. padding:2px 2px 2px 2px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u96988_text {
  5848. border-width:0px;
  5849. word-wrap:break-word;
  5850. text-transform:none;
  5851. visibility:hidden;
  5852. }
  5853. #u96989_img {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:101px;
  5859. height:30px;
  5860. }
  5861. #u96989 {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:715px;
  5865. top:311px;
  5866. width:101px;
  5867. height:30px;
  5868. display:flex;
  5869. font-size:14px;
  5870. }
  5871. #u96989 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:2px 2px 2px 2px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u96989_text {
  5879. border-width:0px;
  5880. word-wrap:break-word;
  5881. text-transform:none;
  5882. visibility:hidden;
  5883. }
  5884. #u96990_img {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:95px;
  5890. height:30px;
  5891. }
  5892. #u96990 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:816px;
  5896. top:311px;
  5897. width:95px;
  5898. height:30px;
  5899. display:flex;
  5900. font-size:14px;
  5901. }
  5902. #u96990 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 2px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u96990_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. visibility:hidden;
  5914. }
  5915. #u96991_img {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:102px;
  5921. height:30px;
  5922. }
  5923. #u96991 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:911px;
  5927. top:311px;
  5928. width:102px;
  5929. height:30px;
  5930. display:flex;
  5931. font-size:14px;
  5932. }
  5933. #u96991 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 2px 2px 2px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u96991_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. visibility:hidden;
  5945. }
  5946. #u96992_img {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:101px;
  5952. height:30px;
  5953. }
  5954. #u96992 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:1013px;
  5958. top:311px;
  5959. width:101px;
  5960. height:30px;
  5961. display:flex;
  5962. font-size:14px;
  5963. }
  5964. #u96992 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 2px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u96992_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u96993_img {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:104px;
  5983. height:30px;
  5984. }
  5985. #u96993 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:1114px;
  5989. top:311px;
  5990. width:104px;
  5991. height:30px;
  5992. display:flex;
  5993. font-size:14px;
  5994. }
  5995. #u96993 .text {
  5996. position:absolute;
  5997. align-self:center;
  5998. padding:2px 2px 2px 2px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u96993_text {
  6003. border-width:0px;
  6004. word-wrap:break-word;
  6005. text-transform:none;
  6006. visibility:hidden;
  6007. }
  6008. #u96994_img {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:94px;
  6014. height:30px;
  6015. }
  6016. #u96994 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:341px;
  6021. width:94px;
  6022. height:30px;
  6023. display:flex;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:14px;
  6028. }
  6029. #u96994 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 2px 2px 2px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u96994_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. visibility:hidden;
  6041. }
  6042. #u96995_img {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:96px;
  6048. height:30px;
  6049. }
  6050. #u96995 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:94px;
  6054. top:341px;
  6055. width:96px;
  6056. height:30px;
  6057. display:flex;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:14px;
  6062. }
  6063. #u96995 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:2px 2px 2px 2px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u96995_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. visibility:hidden;
  6075. }
  6076. #u96996_img {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:94px;
  6082. height:30px;
  6083. }
  6084. #u96996 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:190px;
  6088. top:341px;
  6089. width:94px;
  6090. height:30px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. }
  6097. #u96996 .text {
  6098. position:absolute;
  6099. align-self:center;
  6100. padding:2px 2px 2px 2px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u96996_text {
  6105. border-width:0px;
  6106. word-wrap:break-word;
  6107. text-transform:none;
  6108. visibility:hidden;
  6109. }
  6110. #u96997_img {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:114px;
  6116. height:30px;
  6117. }
  6118. #u96997 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:284px;
  6122. top:341px;
  6123. width:114px;
  6124. height:30px;
  6125. display:flex;
  6126. font-size:14px;
  6127. }
  6128. #u96997 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:2px 2px 2px 2px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u96997_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u96998_img {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:114px;
  6147. height:30px;
  6148. }
  6149. #u96998 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:398px;
  6153. top:341px;
  6154. width:114px;
  6155. height:30px;
  6156. display:flex;
  6157. font-size:14px;
  6158. }
  6159. #u96998 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u96998_text {
  6167. border-width:0px;
  6168. word-wrap:break-word;
  6169. text-transform:none;
  6170. visibility:hidden;
  6171. }
  6172. #u96999_img {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:102px;
  6178. height:30px;
  6179. }
  6180. #u96999 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:512px;
  6184. top:341px;
  6185. width:102px;
  6186. height:30px;
  6187. display:flex;
  6188. font-size:14px;
  6189. }
  6190. #u96999 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 2px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u96999_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u97000_img {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:101px;
  6209. height:30px;
  6210. }
  6211. #u97000 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:614px;
  6215. top:341px;
  6216. width:101px;
  6217. height:30px;
  6218. display:flex;
  6219. font-size:14px;
  6220. }
  6221. #u97000 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:2px 2px 2px 2px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u97000_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. visibility:hidden;
  6233. }
  6234. #u97001_img {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:101px;
  6240. height:30px;
  6241. }
  6242. #u97001 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:715px;
  6246. top:341px;
  6247. width:101px;
  6248. height:30px;
  6249. display:flex;
  6250. font-size:14px;
  6251. }
  6252. #u97001 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u97001_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u97002_img {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:95px;
  6271. height:30px;
  6272. }
  6273. #u97002 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:816px;
  6277. top:341px;
  6278. width:95px;
  6279. height:30px;
  6280. display:flex;
  6281. font-size:14px;
  6282. }
  6283. #u97002 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u97002_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. visibility:hidden;
  6295. }
  6296. #u97003_img {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:102px;
  6302. height:30px;
  6303. }
  6304. #u97003 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:911px;
  6308. top:341px;
  6309. width:102px;
  6310. height:30px;
  6311. display:flex;
  6312. font-size:14px;
  6313. }
  6314. #u97003 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 2px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u97003_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u97004_img {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:101px;
  6333. height:30px;
  6334. }
  6335. #u97004 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1013px;
  6339. top:341px;
  6340. width:101px;
  6341. height:30px;
  6342. display:flex;
  6343. font-size:14px;
  6344. }
  6345. #u97004 .text {
  6346. position:absolute;
  6347. align-self:center;
  6348. padding:2px 2px 2px 2px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u97004_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. visibility:hidden;
  6357. }
  6358. #u97005_img {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:104px;
  6364. height:30px;
  6365. }
  6366. #u97005 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1114px;
  6370. top:341px;
  6371. width:104px;
  6372. height:30px;
  6373. display:flex;
  6374. font-size:14px;
  6375. }
  6376. #u97005 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:2px 2px 2px 2px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u97005_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. visibility:hidden;
  6388. }
  6389. #u97006_img {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:94px;
  6395. height:30px;
  6396. }
  6397. #u97006 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:371px;
  6402. width:94px;
  6403. height:30px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:14px;
  6409. }
  6410. #u97006 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u97006_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u97007_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:96px;
  6429. height:30px;
  6430. }
  6431. #u97007 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:94px;
  6435. top:371px;
  6436. width:96px;
  6437. height:30px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. }
  6444. #u97007 .text {
  6445. position:absolute;
  6446. align-self:center;
  6447. padding:2px 2px 2px 2px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u97007_text {
  6452. border-width:0px;
  6453. word-wrap:break-word;
  6454. text-transform:none;
  6455. visibility:hidden;
  6456. }
  6457. #u97008_img {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:94px;
  6463. height:30px;
  6464. }
  6465. #u97008 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:190px;
  6469. top:371px;
  6470. width:94px;
  6471. height:30px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:14px;
  6477. }
  6478. #u97008 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 2px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u97008_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u97009_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:114px;
  6497. height:30px;
  6498. }
  6499. #u97009 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:284px;
  6503. top:371px;
  6504. width:114px;
  6505. height:30px;
  6506. display:flex;
  6507. font-size:14px;
  6508. }
  6509. #u97009 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 2px 2px 2px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u97009_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. visibility:hidden;
  6521. }
  6522. #u97010_img {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:114px;
  6528. height:30px;
  6529. }
  6530. #u97010 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:398px;
  6534. top:371px;
  6535. width:114px;
  6536. height:30px;
  6537. display:flex;
  6538. font-size:14px;
  6539. }
  6540. #u97010 .text {
  6541. position:absolute;
  6542. align-self:center;
  6543. padding:2px 2px 2px 2px;
  6544. box-sizing:border-box;
  6545. width:100%;
  6546. }
  6547. #u97010_text {
  6548. border-width:0px;
  6549. word-wrap:break-word;
  6550. text-transform:none;
  6551. visibility:hidden;
  6552. }
  6553. #u97011_img {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:102px;
  6559. height:30px;
  6560. }
  6561. #u97011 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:512px;
  6565. top:371px;
  6566. width:102px;
  6567. height:30px;
  6568. display:flex;
  6569. font-size:14px;
  6570. }
  6571. #u97011 .text {
  6572. position:absolute;
  6573. align-self:center;
  6574. padding:2px 2px 2px 2px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u97011_text {
  6579. border-width:0px;
  6580. word-wrap:break-word;
  6581. text-transform:none;
  6582. visibility:hidden;
  6583. }
  6584. #u97012_img {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:101px;
  6590. height:30px;
  6591. }
  6592. #u97012 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:614px;
  6596. top:371px;
  6597. width:101px;
  6598. height:30px;
  6599. display:flex;
  6600. font-size:14px;
  6601. }
  6602. #u97012 .text {
  6603. position:absolute;
  6604. align-self:center;
  6605. padding:2px 2px 2px 2px;
  6606. box-sizing:border-box;
  6607. width:100%;
  6608. }
  6609. #u97012_text {
  6610. border-width:0px;
  6611. word-wrap:break-word;
  6612. text-transform:none;
  6613. visibility:hidden;
  6614. }
  6615. #u97013_img {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:101px;
  6621. height:30px;
  6622. }
  6623. #u97013 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:715px;
  6627. top:371px;
  6628. width:101px;
  6629. height:30px;
  6630. display:flex;
  6631. font-size:14px;
  6632. }
  6633. #u97013 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 2px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u97013_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. visibility:hidden;
  6645. }
  6646. #u97014_img {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:95px;
  6652. height:30px;
  6653. }
  6654. #u97014 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:816px;
  6658. top:371px;
  6659. width:95px;
  6660. height:30px;
  6661. display:flex;
  6662. font-size:14px;
  6663. }
  6664. #u97014 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:2px 2px 2px 2px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u97014_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u97015_img {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:102px;
  6683. height:30px;
  6684. }
  6685. #u97015 {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:911px;
  6689. top:371px;
  6690. width:102px;
  6691. height:30px;
  6692. display:flex;
  6693. font-size:14px;
  6694. }
  6695. #u97015 .text {
  6696. position:absolute;
  6697. align-self:center;
  6698. padding:2px 2px 2px 2px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u97015_text {
  6703. border-width:0px;
  6704. word-wrap:break-word;
  6705. text-transform:none;
  6706. visibility:hidden;
  6707. }
  6708. #u97016_img {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:101px;
  6714. height:30px;
  6715. }
  6716. #u97016 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:1013px;
  6720. top:371px;
  6721. width:101px;
  6722. height:30px;
  6723. display:flex;
  6724. font-size:14px;
  6725. }
  6726. #u97016 .text {
  6727. position:absolute;
  6728. align-self:center;
  6729. padding:2px 2px 2px 2px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u97016_text {
  6734. border-width:0px;
  6735. word-wrap:break-word;
  6736. text-transform:none;
  6737. visibility:hidden;
  6738. }
  6739. #u97017_img {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:104px;
  6745. height:30px;
  6746. }
  6747. #u97017 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:1114px;
  6751. top:371px;
  6752. width:104px;
  6753. height:30px;
  6754. display:flex;
  6755. font-size:14px;
  6756. }
  6757. #u97017 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:2px 2px 2px 2px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u97017_text {
  6765. border-width:0px;
  6766. word-wrap:break-word;
  6767. text-transform:none;
  6768. visibility:hidden;
  6769. }
  6770. #u97018_img {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:94px;
  6776. height:30px;
  6777. }
  6778. #u97018 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:401px;
  6783. width:94px;
  6784. height:30px;
  6785. display:flex;
  6786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6787. font-weight:400;
  6788. font-style:normal;
  6789. font-size:14px;
  6790. }
  6791. #u97018 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:2px 2px 2px 2px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u97018_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. visibility:hidden;
  6803. }
  6804. #u97019_img {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:96px;
  6810. height:30px;
  6811. }
  6812. #u97019 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:94px;
  6816. top:401px;
  6817. width:96px;
  6818. height:30px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:14px;
  6824. }
  6825. #u97019 .text {
  6826. position:absolute;
  6827. align-self:center;
  6828. padding:2px 2px 2px 2px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u97019_text {
  6833. border-width:0px;
  6834. word-wrap:break-word;
  6835. text-transform:none;
  6836. visibility:hidden;
  6837. }
  6838. #u97020_img {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:94px;
  6844. height:30px;
  6845. }
  6846. #u97020 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:190px;
  6850. top:401px;
  6851. width:94px;
  6852. height:30px;
  6853. display:flex;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:14px;
  6858. }
  6859. #u97020 .text {
  6860. position:absolute;
  6861. align-self:center;
  6862. padding:2px 2px 2px 2px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u97020_text {
  6867. border-width:0px;
  6868. word-wrap:break-word;
  6869. text-transform:none;
  6870. visibility:hidden;
  6871. }
  6872. #u97021_img {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:114px;
  6878. height:30px;
  6879. }
  6880. #u97021 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:284px;
  6884. top:401px;
  6885. width:114px;
  6886. height:30px;
  6887. display:flex;
  6888. font-size:14px;
  6889. }
  6890. #u97021 .text {
  6891. position:absolute;
  6892. align-self:center;
  6893. padding:2px 2px 2px 2px;
  6894. box-sizing:border-box;
  6895. width:100%;
  6896. }
  6897. #u97021_text {
  6898. border-width:0px;
  6899. word-wrap:break-word;
  6900. text-transform:none;
  6901. visibility:hidden;
  6902. }
  6903. #u97022_img {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:114px;
  6909. height:30px;
  6910. }
  6911. #u97022 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:398px;
  6915. top:401px;
  6916. width:114px;
  6917. height:30px;
  6918. display:flex;
  6919. font-size:14px;
  6920. }
  6921. #u97022 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:2px 2px 2px 2px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u97022_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u97023_img {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:102px;
  6940. height:30px;
  6941. }
  6942. #u97023 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:512px;
  6946. top:401px;
  6947. width:102px;
  6948. height:30px;
  6949. display:flex;
  6950. font-size:14px;
  6951. }
  6952. #u97023 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u97023_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u97024_img {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:101px;
  6971. height:30px;
  6972. }
  6973. #u97024 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:614px;
  6977. top:401px;
  6978. width:101px;
  6979. height:30px;
  6980. display:flex;
  6981. font-size:14px;
  6982. }
  6983. #u97024 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u97024_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u97025_img {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:101px;
  7002. height:30px;
  7003. }
  7004. #u97025 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:715px;
  7008. top:401px;
  7009. width:101px;
  7010. height:30px;
  7011. display:flex;
  7012. font-size:14px;
  7013. }
  7014. #u97025 .text {
  7015. position:absolute;
  7016. align-self:center;
  7017. padding:2px 2px 2px 2px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u97025_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. visibility:hidden;
  7026. }
  7027. #u97026_img {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:95px;
  7033. height:30px;
  7034. }
  7035. #u97026 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:816px;
  7039. top:401px;
  7040. width:95px;
  7041. height:30px;
  7042. display:flex;
  7043. font-size:14px;
  7044. }
  7045. #u97026 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u97026_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. visibility:hidden;
  7057. }
  7058. #u97027_img {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:102px;
  7064. height:30px;
  7065. }
  7066. #u97027 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:911px;
  7070. top:401px;
  7071. width:102px;
  7072. height:30px;
  7073. display:flex;
  7074. font-size:14px;
  7075. }
  7076. #u97027 .text {
  7077. position:absolute;
  7078. align-self:center;
  7079. padding:2px 2px 2px 2px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u97027_text {
  7084. border-width:0px;
  7085. word-wrap:break-word;
  7086. text-transform:none;
  7087. visibility:hidden;
  7088. }
  7089. #u97028_img {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:101px;
  7095. height:30px;
  7096. }
  7097. #u97028 {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:1013px;
  7101. top:401px;
  7102. width:101px;
  7103. height:30px;
  7104. display:flex;
  7105. font-size:14px;
  7106. }
  7107. #u97028 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u97028_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. visibility:hidden;
  7119. }
  7120. #u97029_img {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:104px;
  7126. height:30px;
  7127. }
  7128. #u97029 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:1114px;
  7132. top:401px;
  7133. width:104px;
  7134. height:30px;
  7135. display:flex;
  7136. font-size:14px;
  7137. }
  7138. #u97029 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:2px 2px 2px 2px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u97029_text {
  7146. border-width:0px;
  7147. word-wrap:break-word;
  7148. text-transform:none;
  7149. visibility:hidden;
  7150. }
  7151. #u97030_img {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:94px;
  7157. height:30px;
  7158. }
  7159. #u97030 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:431px;
  7164. width:94px;
  7165. height:30px;
  7166. display:flex;
  7167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:14px;
  7171. }
  7172. #u97030 .text {
  7173. position:absolute;
  7174. align-self:center;
  7175. padding:2px 2px 2px 2px;
  7176. box-sizing:border-box;
  7177. width:100%;
  7178. }
  7179. #u97030_text {
  7180. border-width:0px;
  7181. word-wrap:break-word;
  7182. text-transform:none;
  7183. visibility:hidden;
  7184. }
  7185. #u97031_img {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:96px;
  7191. height:30px;
  7192. }
  7193. #u97031 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:94px;
  7197. top:431px;
  7198. width:96px;
  7199. height:30px;
  7200. display:flex;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:14px;
  7205. }
  7206. #u97031 .text {
  7207. position:absolute;
  7208. align-self:center;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u97031_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. visibility:hidden;
  7218. }
  7219. #u97032_img {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:94px;
  7225. height:30px;
  7226. }
  7227. #u97032 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:190px;
  7231. top:431px;
  7232. width:94px;
  7233. height:30px;
  7234. display:flex;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:14px;
  7239. }
  7240. #u97032 .text {
  7241. position:absolute;
  7242. align-self:center;
  7243. padding:2px 2px 2px 2px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u97032_text {
  7248. border-width:0px;
  7249. word-wrap:break-word;
  7250. text-transform:none;
  7251. visibility:hidden;
  7252. }
  7253. #u97033_img {
  7254. border-width:0px;
  7255. position:absolute;
  7256. left:0px;
  7257. top:0px;
  7258. width:114px;
  7259. height:30px;
  7260. }
  7261. #u97033 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:284px;
  7265. top:431px;
  7266. width:114px;
  7267. height:30px;
  7268. display:flex;
  7269. font-size:14px;
  7270. }
  7271. #u97033 .text {
  7272. position:absolute;
  7273. align-self:center;
  7274. padding:2px 2px 2px 2px;
  7275. box-sizing:border-box;
  7276. width:100%;
  7277. }
  7278. #u97033_text {
  7279. border-width:0px;
  7280. word-wrap:break-word;
  7281. text-transform:none;
  7282. visibility:hidden;
  7283. }
  7284. #u97034_img {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:114px;
  7290. height:30px;
  7291. }
  7292. #u97034 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:398px;
  7296. top:431px;
  7297. width:114px;
  7298. height:30px;
  7299. display:flex;
  7300. font-size:14px;
  7301. }
  7302. #u97034 .text {
  7303. position:absolute;
  7304. align-self:center;
  7305. padding:2px 2px 2px 2px;
  7306. box-sizing:border-box;
  7307. width:100%;
  7308. }
  7309. #u97034_text {
  7310. border-width:0px;
  7311. word-wrap:break-word;
  7312. text-transform:none;
  7313. visibility:hidden;
  7314. }
  7315. #u97035_img {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:102px;
  7321. height:30px;
  7322. }
  7323. #u97035 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:512px;
  7327. top:431px;
  7328. width:102px;
  7329. height:30px;
  7330. display:flex;
  7331. font-size:14px;
  7332. }
  7333. #u97035 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 2px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u97035_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. visibility:hidden;
  7345. }
  7346. #u97036_img {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:101px;
  7352. height:30px;
  7353. }
  7354. #u97036 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:614px;
  7358. top:431px;
  7359. width:101px;
  7360. height:30px;
  7361. display:flex;
  7362. font-size:14px;
  7363. }
  7364. #u97036 .text {
  7365. position:absolute;
  7366. align-self:center;
  7367. padding:2px 2px 2px 2px;
  7368. box-sizing:border-box;
  7369. width:100%;
  7370. }
  7371. #u97036_text {
  7372. border-width:0px;
  7373. word-wrap:break-word;
  7374. text-transform:none;
  7375. visibility:hidden;
  7376. }
  7377. #u97037_img {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:101px;
  7383. height:30px;
  7384. }
  7385. #u97037 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:715px;
  7389. top:431px;
  7390. width:101px;
  7391. height:30px;
  7392. display:flex;
  7393. font-size:14px;
  7394. }
  7395. #u97037 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:2px 2px 2px 2px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u97037_text {
  7403. border-width:0px;
  7404. word-wrap:break-word;
  7405. text-transform:none;
  7406. visibility:hidden;
  7407. }
  7408. #u97038_img {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:95px;
  7414. height:30px;
  7415. }
  7416. #u97038 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:816px;
  7420. top:431px;
  7421. width:95px;
  7422. height:30px;
  7423. display:flex;
  7424. font-size:14px;
  7425. }
  7426. #u97038 .text {
  7427. position:absolute;
  7428. align-self:center;
  7429. padding:2px 2px 2px 2px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u97038_text {
  7434. border-width:0px;
  7435. word-wrap:break-word;
  7436. text-transform:none;
  7437. visibility:hidden;
  7438. }
  7439. #u97039_img {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:102px;
  7445. height:30px;
  7446. }
  7447. #u97039 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:911px;
  7451. top:431px;
  7452. width:102px;
  7453. height:30px;
  7454. display:flex;
  7455. font-size:14px;
  7456. }
  7457. #u97039 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:2px 2px 2px 2px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u97039_text {
  7465. border-width:0px;
  7466. word-wrap:break-word;
  7467. text-transform:none;
  7468. visibility:hidden;
  7469. }
  7470. #u97040_img {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:101px;
  7476. height:30px;
  7477. }
  7478. #u97040 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:1013px;
  7482. top:431px;
  7483. width:101px;
  7484. height:30px;
  7485. display:flex;
  7486. font-size:14px;
  7487. }
  7488. #u97040 .text {
  7489. position:absolute;
  7490. align-self:center;
  7491. padding:2px 2px 2px 2px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u97040_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. visibility:hidden;
  7500. }
  7501. #u97041_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:104px;
  7507. height:30px;
  7508. }
  7509. #u97041 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:1114px;
  7513. top:431px;
  7514. width:104px;
  7515. height:30px;
  7516. display:flex;
  7517. font-size:14px;
  7518. }
  7519. #u97041 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 2px 2px 2px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u97041_text {
  7527. border-width:0px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. visibility:hidden;
  7531. }
  7532. #u97042_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:80px;
  7538. height:30px;
  7539. background:inherit;
  7540. background-color:rgba(24, 144, 255, 1);
  7541. border:none;
  7542. border-radius:4px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:14px;
  7550. color:#FFFFFF;
  7551. }
  7552. #u97042 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:353px;
  7556. top:173px;
  7557. width:80px;
  7558. height:30px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:14px;
  7564. color:#FFFFFF;
  7565. }
  7566. #u97042 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:2px 2px 2px 2px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u97042_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. }
  7578. #u97043 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:0px;
  7584. height:0px;
  7585. }
  7586. #u97044_div {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:140px;
  7592. height:30px;
  7593. background:inherit;
  7594. background-color:rgba(255, 255, 255, 1);
  7595. box-sizing:border-box;
  7596. border-width:1px;
  7597. border-style:solid;
  7598. border-color:rgba(215, 215, 215, 1);
  7599. border-radius:4px;
  7600. -moz-box-shadow:none;
  7601. -webkit-box-shadow:none;
  7602. box-shadow:none;
  7603. font-size:14px;
  7604. }
  7605. #u97044 {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:511px;
  7609. top:124px;
  7610. width:140px;
  7611. height:30px;
  7612. display:flex;
  7613. font-size:14px;
  7614. }
  7615. #u97044 .text {
  7616. position:absolute;
  7617. align-self:center;
  7618. padding:2px 2px 2px 2px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u97044_text {
  7623. border-width:0px;
  7624. word-wrap:break-word;
  7625. text-transform:none;
  7626. visibility:hidden;
  7627. }
  7628. #u97045_input {
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:134px;
  7633. height:23px;
  7634. padding:2px 2px 2px 2px;
  7635. font-family:'ArialMT', 'Arial', sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:14px;
  7639. letter-spacing:normal;
  7640. color:#AAAAAA;
  7641. vertical-align:none;
  7642. text-align:left;
  7643. text-transform:none;
  7644. background-color:transparent;
  7645. border-color:transparent;
  7646. }
  7647. #u97045_input.disabled {
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:134px;
  7652. height:23px;
  7653. padding:2px 2px 2px 2px;
  7654. font-family:'ArialMT', 'Arial', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:14px;
  7658. letter-spacing:normal;
  7659. color:#AAAAAA;
  7660. vertical-align:none;
  7661. text-align:left;
  7662. text-transform:none;
  7663. background-color:transparent;
  7664. border-color:transparent;
  7665. }
  7666. #u97045_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:134px;
  7672. height:23px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 1);
  7675. border:none;
  7676. border-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. font-size:14px;
  7681. color:#AAAAAA;
  7682. }
  7683. #u97045 {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:515px;
  7687. top:126px;
  7688. width:134px;
  7689. height:23px;
  7690. display:flex;
  7691. font-size:14px;
  7692. color:#AAAAAA;
  7693. }
  7694. #u97045 .text {
  7695. position:absolute;
  7696. align-self:flex-start;
  7697. padding:2px 2px 2px 2px;
  7698. box-sizing:border-box;
  7699. width:100%;
  7700. }
  7701. #u97045_div.disabled {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:134px;
  7707. height:23px;
  7708. background:inherit;
  7709. background-color:rgba(240, 240, 240, 1);
  7710. border:none;
  7711. border-radius:0px;
  7712. -moz-box-shadow:none;
  7713. -webkit-box-shadow:none;
  7714. box-shadow:none;
  7715. font-size:14px;
  7716. color:#AAAAAA;
  7717. }
  7718. #u97045.disabled {
  7719. }
  7720. .u97045_input_option {
  7721. font-size:14px;
  7722. }
  7723. #u97046 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:0px;
  7729. height:0px;
  7730. }
  7731. #u97047_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:140px;
  7737. height:30px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 1);
  7740. box-sizing:border-box;
  7741. border-width:1px;
  7742. border-style:solid;
  7743. border-color:rgba(215, 215, 215, 1);
  7744. border-radius:4px;
  7745. -moz-box-shadow:none;
  7746. -webkit-box-shadow:none;
  7747. box-shadow:none;
  7748. font-size:14px;
  7749. }
  7750. #u97047 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:811px;
  7754. top:124px;
  7755. width:140px;
  7756. height:30px;
  7757. display:flex;
  7758. font-size:14px;
  7759. }
  7760. #u97047 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u97047_text {
  7768. border-width:0px;
  7769. word-wrap:break-word;
  7770. text-transform:none;
  7771. visibility:hidden;
  7772. }
  7773. #u97048_input {
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:134px;
  7778. height:23px;
  7779. padding:2px 2px 2px 2px;
  7780. font-family:'ArialMT', 'Arial', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. letter-spacing:normal;
  7785. color:#AAAAAA;
  7786. vertical-align:none;
  7787. text-align:left;
  7788. text-transform:none;
  7789. background-color:transparent;
  7790. border-color:transparent;
  7791. }
  7792. #u97048_input.disabled {
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:134px;
  7797. height:23px;
  7798. padding:2px 2px 2px 2px;
  7799. font-family:'ArialMT', 'Arial', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:14px;
  7803. letter-spacing:normal;
  7804. color:#AAAAAA;
  7805. vertical-align:none;
  7806. text-align:left;
  7807. text-transform:none;
  7808. background-color:transparent;
  7809. border-color:transparent;
  7810. }
  7811. #u97048_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:134px;
  7817. height:23px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 1);
  7820. border:none;
  7821. border-radius:0px;
  7822. -moz-box-shadow:none;
  7823. -webkit-box-shadow:none;
  7824. box-shadow:none;
  7825. font-size:14px;
  7826. color:#AAAAAA;
  7827. }
  7828. #u97048 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:815px;
  7832. top:126px;
  7833. width:134px;
  7834. height:23px;
  7835. display:flex;
  7836. font-size:14px;
  7837. color:#AAAAAA;
  7838. }
  7839. #u97048 .text {
  7840. position:absolute;
  7841. align-self:flex-start;
  7842. padding:2px 2px 2px 2px;
  7843. box-sizing:border-box;
  7844. width:100%;
  7845. }
  7846. #u97048_div.disabled {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:134px;
  7852. height:23px;
  7853. background:inherit;
  7854. background-color:rgba(240, 240, 240, 1);
  7855. border:none;
  7856. border-radius:0px;
  7857. -moz-box-shadow:none;
  7858. -webkit-box-shadow:none;
  7859. box-shadow:none;
  7860. font-size:14px;
  7861. color:#AAAAAA;
  7862. }
  7863. #u97048.disabled {
  7864. }
  7865. .u97048_input_option {
  7866. font-size:14px;
  7867. }
  7868. #u97049 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:0px;
  7872. top:0px;
  7873. width:0px;
  7874. height:0px;
  7875. }
  7876. #u97050_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:60px;
  7882. height:30px;
  7883. background:inherit;
  7884. background-color:rgba(24, 144, 255, 1);
  7885. border:none;
  7886. border-radius:4px;
  7887. -moz-box-shadow:none;
  7888. -webkit-box-shadow:none;
  7889. box-shadow:none;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:14px;
  7894. color:#FFFFFF;
  7895. }
  7896. #u97050 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:961px;
  7900. top:124px;
  7901. width:60px;
  7902. height:30px;
  7903. display:flex;
  7904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7905. font-weight:400;
  7906. font-style:normal;
  7907. font-size:14px;
  7908. color:#FFFFFF;
  7909. }
  7910. #u97050 .text {
  7911. position:absolute;
  7912. align-self:center;
  7913. padding:2px 2px 2px 2px;
  7914. box-sizing:border-box;
  7915. width:100%;
  7916. }
  7917. #u97050_text {
  7918. border-width:0px;
  7919. word-wrap:break-word;
  7920. text-transform:none;
  7921. }
  7922. #u97051_div {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:60px;
  7928. height:30px;
  7929. background:inherit;
  7930. background-color:rgba(255, 255, 255, 1);
  7931. box-sizing:border-box;
  7932. border-width:1px;
  7933. border-style:solid;
  7934. border-color:rgba(170, 170, 170, 1);
  7935. border-radius:4px;
  7936. -moz-box-shadow:none;
  7937. -webkit-box-shadow:none;
  7938. box-shadow:none;
  7939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. }
  7944. #u97051 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:1031px;
  7948. top:124px;
  7949. width:60px;
  7950. height:30px;
  7951. display:flex;
  7952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7953. font-weight:400;
  7954. font-style:normal;
  7955. font-size:14px;
  7956. }
  7957. #u97051 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 2px 2px 2px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u97051_text {
  7965. border-width:0px;
  7966. word-wrap:break-word;
  7967. text-transform:none;
  7968. }
  7969. #u97052 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:0px;
  7975. height:0px;
  7976. }
  7977. #u97053_div {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:140px;
  7983. height:30px;
  7984. background:inherit;
  7985. background-color:rgba(255, 255, 255, 1);
  7986. box-sizing:border-box;
  7987. border-width:1px;
  7988. border-style:solid;
  7989. border-color:rgba(201, 201, 201, 1);
  7990. border-radius:4px;
  7991. -moz-box-shadow:none;
  7992. -webkit-box-shadow:none;
  7993. box-shadow:none;
  7994. font-family:'Microsoft YaHei', sans-serif;
  7995. font-weight:400;
  7996. font-style:normal;
  7997. font-size:14px;
  7998. color:#CCCCCC;
  7999. text-align:left;
  8000. }
  8001. #u97053 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:661px;
  8005. top:124px;
  8006. width:140px;
  8007. height:30px;
  8008. display:flex;
  8009. font-family:'Microsoft YaHei', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:14px;
  8013. color:#CCCCCC;
  8014. text-align:left;
  8015. }
  8016. #u97053 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:2px 8px 2px 8px;
  8020. box-sizing:border-box;
  8021. width:100%;
  8022. }
  8023. #u97053_text {
  8024. border-width:0px;
  8025. word-wrap:break-word;
  8026. text-transform:none;
  8027. visibility:hidden;
  8028. }
  8029. #u97054_input {
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:127px;
  8034. height:25px;
  8035. padding:2px 2px 2px 2px;
  8036. font-family:'Microsoft YaHei', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:10px;
  8040. letter-spacing:normal;
  8041. color:#000000;
  8042. vertical-align:none;
  8043. text-align:left;
  8044. text-transform:none;
  8045. background-color:transparent;
  8046. border-color:transparent;
  8047. }
  8048. #u97054_input.disabled {
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:127px;
  8053. height:25px;
  8054. padding:2px 2px 2px 2px;
  8055. font-family:'Microsoft YaHei', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:10px;
  8059. letter-spacing:normal;
  8060. color:#000000;
  8061. vertical-align:none;
  8062. text-align:left;
  8063. text-transform:none;
  8064. background-color:transparent;
  8065. border-color:transparent;
  8066. }
  8067. #u97054_div {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:127px;
  8073. height:25px;
  8074. background:inherit;
  8075. background-color:rgba(255, 255, 255, 1);
  8076. border:none;
  8077. border-radius:0px;
  8078. -moz-box-shadow:none;
  8079. -webkit-box-shadow:none;
  8080. box-shadow:none;
  8081. font-family:'Microsoft YaHei', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:10px;
  8085. }
  8086. #u97054 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:669px;
  8090. top:125px;
  8091. width:127px;
  8092. height:25px;
  8093. display:flex;
  8094. font-family:'Microsoft YaHei', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:10px;
  8098. }
  8099. #u97054 .text {
  8100. position:absolute;
  8101. align-self:center;
  8102. padding:2px 2px 2px 2px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u97054_div.disabled {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:127px;
  8112. height:25px;
  8113. background:inherit;
  8114. background-color:rgba(240, 240, 240, 1);
  8115. border:none;
  8116. border-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'Microsoft YaHei', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:10px;
  8124. }
  8125. #u97054.disabled {
  8126. }
  8127. #u97055 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:0px;
  8131. top:0px;
  8132. width:0px;
  8133. height:0px;
  8134. }
  8135. #u97056_div {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:140px;
  8141. height:30px;
  8142. background:inherit;
  8143. background-color:rgba(255, 255, 255, 1);
  8144. box-sizing:border-box;
  8145. border-width:1px;
  8146. border-style:solid;
  8147. border-color:rgba(215, 215, 215, 1);
  8148. border-radius:4px;
  8149. -moz-box-shadow:none;
  8150. -webkit-box-shadow:none;
  8151. box-shadow:none;
  8152. font-size:14px;
  8153. }
  8154. #u97056 {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:353px;
  8158. top:120px;
  8159. width:140px;
  8160. height:30px;
  8161. display:flex;
  8162. font-size:14px;
  8163. }
  8164. #u97056 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:2px 2px 2px 2px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u97056_text {
  8172. border-width:0px;
  8173. word-wrap:break-word;
  8174. text-transform:none;
  8175. visibility:hidden;
  8176. }
  8177. #u97057_input {
  8178. position:absolute;
  8179. left:0px;
  8180. top:0px;
  8181. width:134px;
  8182. height:23px;
  8183. padding:2px 2px 2px 2px;
  8184. font-family:'ArialMT', 'Arial', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:14px;
  8188. letter-spacing:normal;
  8189. color:#AAAAAA;
  8190. vertical-align:none;
  8191. text-align:left;
  8192. text-transform:none;
  8193. background-color:transparent;
  8194. border-color:transparent;
  8195. }
  8196. #u97057_input.disabled {
  8197. position:absolute;
  8198. left:0px;
  8199. top:0px;
  8200. width:134px;
  8201. height:23px;
  8202. padding:2px 2px 2px 2px;
  8203. font-family:'ArialMT', 'Arial', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:14px;
  8207. letter-spacing:normal;
  8208. color:#AAAAAA;
  8209. vertical-align:none;
  8210. text-align:left;
  8211. text-transform:none;
  8212. background-color:transparent;
  8213. border-color:transparent;
  8214. }
  8215. #u97057_div {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:0px;
  8219. top:0px;
  8220. width:134px;
  8221. height:23px;
  8222. background:inherit;
  8223. background-color:rgba(255, 255, 255, 1);
  8224. border:none;
  8225. border-radius:0px;
  8226. -moz-box-shadow:none;
  8227. -webkit-box-shadow:none;
  8228. box-shadow:none;
  8229. font-size:14px;
  8230. color:#AAAAAA;
  8231. }
  8232. #u97057 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:357px;
  8236. top:122px;
  8237. width:134px;
  8238. height:23px;
  8239. display:flex;
  8240. font-size:14px;
  8241. color:#AAAAAA;
  8242. }
  8243. #u97057 .text {
  8244. position:absolute;
  8245. align-self:flex-start;
  8246. padding:2px 2px 2px 2px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u97057_div.disabled {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:134px;
  8256. height:23px;
  8257. background:inherit;
  8258. background-color:rgba(240, 240, 240, 1);
  8259. border:none;
  8260. border-radius:0px;
  8261. -moz-box-shadow:none;
  8262. -webkit-box-shadow:none;
  8263. box-shadow:none;
  8264. font-size:14px;
  8265. color:#AAAAAA;
  8266. }
  8267. #u97057.disabled {
  8268. }
  8269. .u97057_input_option {
  8270. font-size:14px;
  8271. }
  8272. #u97058_div {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:1178px;
  8278. height:200px;
  8279. background:inherit;
  8280. background-color:rgba(255, 255, 255, 0);
  8281. border:none;
  8282. border-radius:0px;
  8283. -moz-box-shadow:none;
  8284. -webkit-box-shadow:none;
  8285. box-shadow:none;
  8286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:18px;
  8290. color:#D9001B;
  8291. line-height:40px;
  8292. }
  8293. #u97058 {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:373px;
  8297. top:712px;
  8298. width:1178px;
  8299. height:200px;
  8300. display:flex;
  8301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:18px;
  8305. color:#D9001B;
  8306. line-height:40px;
  8307. }
  8308. #u97058 .text {
  8309. position:absolute;
  8310. align-self:flex-start;
  8311. padding:0px 0px 0px 0px;
  8312. box-sizing:border-box;
  8313. width:100%;
  8314. }
  8315. #u97058_text {
  8316. border-width:0px;
  8317. white-space:nowrap;
  8318. text-transform:none;
  8319. }
  8320. #u97059 {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:0px;
  8326. height:0px;
  8327. }
  8328. #u97060_div {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:200px;
  8334. height:1180px;
  8335. background:inherit;
  8336. background-color:rgba(255, 255, 255, 1);
  8337. border:none;
  8338. border-radius:0px;
  8339. -moz-box-shadow:none;
  8340. -webkit-box-shadow:none;
  8341. box-shadow:none;
  8342. }
  8343. #u97060 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:120px;
  8347. top:50px;
  8348. width:200px;
  8349. height:1180px;
  8350. display:flex;
  8351. }
  8352. #u97060 .text {
  8353. position:absolute;
  8354. align-self:center;
  8355. padding:2px 2px 2px 2px;
  8356. box-sizing:border-box;
  8357. width:100%;
  8358. }
  8359. #u97060_text {
  8360. border-width:0px;
  8361. word-wrap:break-word;
  8362. text-transform:none;
  8363. visibility:hidden;
  8364. }
  8365. #u97061_div {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:200px;
  8371. height:60px;
  8372. background:inherit;
  8373. background-color:rgba(224, 231, 247, 1);
  8374. border:none;
  8375. border-radius:0px;
  8376. -moz-box-shadow:none;
  8377. -webkit-box-shadow:none;
  8378. box-shadow:none;
  8379. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8380. font-weight:500;
  8381. font-style:normal;
  8382. font-size:18px;
  8383. }
  8384. #u97061 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:120px;
  8388. top:50px;
  8389. width:200px;
  8390. height:60px;
  8391. display:flex;
  8392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8393. font-weight:500;
  8394. font-style:normal;
  8395. font-size:18px;
  8396. }
  8397. #u97061 .text {
  8398. position:absolute;
  8399. align-self:center;
  8400. padding:0px 0px 0px 20px;
  8401. box-sizing:border-box;
  8402. width:100%;
  8403. }
  8404. #u97061_text {
  8405. border-width:0px;
  8406. word-wrap:break-word;
  8407. text-transform:none;
  8408. }
  8409. #u97062_div {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:0px;
  8413. top:0px;
  8414. width:65px;
  8415. height:22px;
  8416. background:inherit;
  8417. background-color:rgba(255, 255, 255, 0);
  8418. border:none;
  8419. border-radius:0px;
  8420. -moz-box-shadow:none;
  8421. -webkit-box-shadow:none;
  8422. box-shadow:none;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:16px;
  8427. }
  8428. #u97062 {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:143px;
  8432. top:163px;
  8433. width:65px;
  8434. height:22px;
  8435. display:flex;
  8436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8437. font-weight:400;
  8438. font-style:normal;
  8439. font-size:16px;
  8440. }
  8441. #u97062 .text {
  8442. position:absolute;
  8443. align-self:flex-start;
  8444. padding:0px 0px 0px 0px;
  8445. box-sizing:border-box;
  8446. width:100%;
  8447. }
  8448. #u97062_text {
  8449. border-width:0px;
  8450. white-space:nowrap;
  8451. text-transform:none;
  8452. }
  8453. #u97063_div {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:49px;
  8459. height:17px;
  8460. background:inherit;
  8461. background-color:rgba(255, 255, 255, 0);
  8462. border:none;
  8463. border-radius:0px;
  8464. -moz-box-shadow:none;
  8465. -webkit-box-shadow:none;
  8466. box-shadow:none;
  8467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8468. font-weight:400;
  8469. font-style:normal;
  8470. font-size:12px;
  8471. color:#AAAAAA;
  8472. }
  8473. #u97063 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:143px;
  8477. top:130px;
  8478. width:49px;
  8479. height:17px;
  8480. display:flex;
  8481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. font-size:12px;
  8485. color:#AAAAAA;
  8486. }
  8487. #u97063 .text {
  8488. position:absolute;
  8489. align-self:flex-start;
  8490. padding:0px 0px 0px 0px;
  8491. box-sizing:border-box;
  8492. width:100%;
  8493. }
  8494. #u97063_text {
  8495. border-width:0px;
  8496. white-space:nowrap;
  8497. text-transform:none;
  8498. }
  8499. #u97064_div {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:0px;
  8503. top:0px;
  8504. width:65px;
  8505. height:22px;
  8506. background:inherit;
  8507. background-color:rgba(255, 255, 255, 0);
  8508. border:none;
  8509. border-radius:0px;
  8510. -moz-box-shadow:none;
  8511. -webkit-box-shadow:none;
  8512. box-shadow:none;
  8513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8514. font-weight:400;
  8515. font-style:normal;
  8516. font-size:16px;
  8517. }
  8518. #u97064 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:143px;
  8522. top:205px;
  8523. width:65px;
  8524. height:22px;
  8525. display:flex;
  8526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:16px;
  8530. }
  8531. #u97064 .text {
  8532. position:absolute;
  8533. align-self:flex-start;
  8534. padding:0px 0px 0px 0px;
  8535. box-sizing:border-box;
  8536. width:100%;
  8537. }
  8538. #u97064_text {
  8539. border-width:0px;
  8540. white-space:nowrap;
  8541. text-transform:none;
  8542. }
  8543. #u97065_div {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:65px;
  8549. height:22px;
  8550. background:inherit;
  8551. background-color:rgba(255, 255, 255, 0);
  8552. border:none;
  8553. border-radius:0px;
  8554. -moz-box-shadow:none;
  8555. -webkit-box-shadow:none;
  8556. box-shadow:none;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:16px;
  8561. }
  8562. #u97065 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:143px;
  8566. top:247px;
  8567. width:65px;
  8568. height:22px;
  8569. display:flex;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:16px;
  8574. }
  8575. #u97065 .text {
  8576. position:absolute;
  8577. align-self:flex-start;
  8578. padding:0px 0px 0px 0px;
  8579. box-sizing:border-box;
  8580. width:100%;
  8581. }
  8582. #u97065_text {
  8583. border-width:0px;
  8584. white-space:nowrap;
  8585. text-transform:none;
  8586. }
  8587. #u97066_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:65px;
  8593. height:22px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 0);
  8596. border:none;
  8597. border-radius:0px;
  8598. -moz-box-shadow:none;
  8599. -webkit-box-shadow:none;
  8600. box-shadow:none;
  8601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8602. font-weight:400;
  8603. font-style:normal;
  8604. font-size:16px;
  8605. }
  8606. #u97066 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:143px;
  8610. top:342px;
  8611. width:65px;
  8612. height:22px;
  8613. display:flex;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. font-size:16px;
  8618. }
  8619. #u97066 .text {
  8620. position:absolute;
  8621. align-self:flex-start;
  8622. padding:0px 0px 0px 0px;
  8623. box-sizing:border-box;
  8624. width:100%;
  8625. }
  8626. #u97066_text {
  8627. border-width:0px;
  8628. white-space:nowrap;
  8629. text-transform:none;
  8630. }
  8631. #u97067_img {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:201px;
  8637. height:2px;
  8638. }
  8639. #u97067 {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:120px;
  8643. top:289px;
  8644. width:200px;
  8645. height:1px;
  8646. display:flex;
  8647. }
  8648. #u97067 .text {
  8649. position:absolute;
  8650. align-self:center;
  8651. padding:2px 2px 2px 2px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u97067_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. visibility:hidden;
  8660. }
  8661. #u97068_div {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:49px;
  8667. height:17px;
  8668. background:inherit;
  8669. background-color:rgba(255, 255, 255, 0);
  8670. border:none;
  8671. border-radius:0px;
  8672. -moz-box-shadow:none;
  8673. -webkit-box-shadow:none;
  8674. box-shadow:none;
  8675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8676. font-weight:400;
  8677. font-style:normal;
  8678. font-size:12px;
  8679. color:#AAAAAA;
  8680. }
  8681. #u97068 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:143px;
  8685. top:309px;
  8686. width:49px;
  8687. height:17px;
  8688. display:flex;
  8689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:12px;
  8693. color:#AAAAAA;
  8694. }
  8695. #u97068 .text {
  8696. position:absolute;
  8697. align-self:flex-start;
  8698. padding:0px 0px 0px 0px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u97068_text {
  8703. border-width:0px;
  8704. white-space:nowrap;
  8705. text-transform:none;
  8706. }
  8707. #u97069_div {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:65px;
  8713. height:22px;
  8714. background:inherit;
  8715. background-color:rgba(255, 255, 255, 0);
  8716. border:none;
  8717. border-radius:0px;
  8718. -moz-box-shadow:none;
  8719. -webkit-box-shadow:none;
  8720. box-shadow:none;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. font-size:16px;
  8725. }
  8726. #u97069 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:143px;
  8730. top:384px;
  8731. width:65px;
  8732. height:22px;
  8733. display:flex;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:16px;
  8738. }
  8739. #u97069 .text {
  8740. position:absolute;
  8741. align-self:flex-start;
  8742. padding:0px 0px 0px 0px;
  8743. box-sizing:border-box;
  8744. width:100%;
  8745. }
  8746. #u97069_text {
  8747. border-width:0px;
  8748. white-space:nowrap;
  8749. text-transform:none;
  8750. }