styles.css 169 KB

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