styles.css 204 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-111px;
  6. width:2495px;
  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. #u98929 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u98930_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 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. #u98930 {
  53. border-width:0px;
  54. position:absolute;
  55. left:111px;
  56. top:46px;
  57. width:800px;
  58. height:60px;
  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. #u98930 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u98930_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u98931_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:119px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u98931 {
  106. border-width:0px;
  107. position:absolute;
  108. left:142px;
  109. top:59px;
  110. width:119px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u98931 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u98931_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u98932_div {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:800px;
  136. height:1142px;
  137. background:inherit;
  138. background-color:rgba(255, 255, 255, 1);
  139. box-sizing:border-box;
  140. border-width:1px;
  141. border-style:solid;
  142. border-color:rgba(242, 242, 242, 1);
  143. border-radius:0px;
  144. -moz-box-shadow:none;
  145. -webkit-box-shadow:none;
  146. box-shadow:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u98932 {
  156. border-width:0px;
  157. position:absolute;
  158. left:111px;
  159. top:106px;
  160. width:800px;
  161. height:1142px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. color:#AAAAAA;
  168. text-align:center;
  169. line-height:30px;
  170. }
  171. #u98932 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:5px 10px 5px 10px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u98932_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u98933 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u98934_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:800px;
  198. height:60px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 1);
  201. box-sizing:border-box;
  202. border-width:1px;
  203. border-style:solid;
  204. border-color:rgba(215, 215, 215, 1);
  205. border-radius:0px;
  206. -moz-box-shadow:none;
  207. -webkit-box-shadow:none;
  208. box-shadow:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:14px;
  213. color:#AAAAAA;
  214. text-align:center;
  215. line-height:30px;
  216. }
  217. #u98934 {
  218. border-width:0px;
  219. position:absolute;
  220. left:111px;
  221. top:1187px;
  222. width:800px;
  223. height:60px;
  224. display:flex;
  225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  226. font-weight:400;
  227. font-style:normal;
  228. font-size:14px;
  229. color:#AAAAAA;
  230. text-align:center;
  231. line-height:30px;
  232. }
  233. #u98934 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 10px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u98934_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. visibility:hidden;
  245. }
  246. #u98935_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:80px;
  252. height:30px;
  253. }
  254. #u98935 {
  255. border-width:0px;
  256. position:absolute;
  257. left:791px;
  258. top:1202px;
  259. width:80px;
  260. height:30px;
  261. display:flex;
  262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  263. font-weight:400;
  264. font-style:normal;
  265. font-size:14px;
  266. color:#FFFFFF;
  267. }
  268. #u98935 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:2px 2px 2px 2px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u98935_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u98936_div {
  281. border-width:0px;
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:80px;
  286. height:30px;
  287. background:inherit;
  288. background-color:rgba(255, 255, 255, 1);
  289. box-sizing:border-box;
  290. border-width:1px;
  291. border-style:solid;
  292. border-color:rgba(170, 170, 170, 1);
  293. border-radius:4px;
  294. -moz-box-shadow:none;
  295. -webkit-box-shadow:none;
  296. box-shadow:none;
  297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:14px;
  301. }
  302. #u98936 {
  303. border-width:0px;
  304. position:absolute;
  305. left:701px;
  306. top:1202px;
  307. width:80px;
  308. height:30px;
  309. display:flex;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. }
  315. #u98936 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u98936_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u98937_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:40px;
  333. height:40px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 0);
  336. border:none;
  337. border-top:0px;
  338. border-right:0px;
  339. border-bottom:0px;
  340. border-radius:0px;
  341. border-top-left-radius:0px;
  342. border-bottom-left-radius:0px;
  343. -moz-box-shadow:none;
  344. -webkit-box-shadow:none;
  345. box-shadow:none;
  346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  347. font-weight:500;
  348. font-style:normal;
  349. font-size:24px;
  350. text-align:center;
  351. }
  352. #u98937 {
  353. border-width:0px;
  354. position:absolute;
  355. left:871px;
  356. top:46px;
  357. width:40px;
  358. height:40px;
  359. display:flex;
  360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  361. font-weight:500;
  362. font-style:normal;
  363. font-size:24px;
  364. text-align:center;
  365. }
  366. #u98937 .text {
  367. position:absolute;
  368. align-self:center;
  369. padding:5px 10px 5px 0px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u98937_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. }
  378. #u98938 {
  379. border-width:0px;
  380. position:absolute;
  381. left:0px;
  382. top:0px;
  383. width:0px;
  384. height:0px;
  385. }
  386. #u98939_img {
  387. border-width:0px;
  388. position:absolute;
  389. left:0px;
  390. top:0px;
  391. width:638px;
  392. height:2px;
  393. }
  394. #u98939 {
  395. border-width:0px;
  396. position:absolute;
  397. left:198px;
  398. top:162px;
  399. width:637px;
  400. height:1px;
  401. display:flex;
  402. }
  403. #u98939 .text {
  404. position:absolute;
  405. align-self:center;
  406. padding:2px 2px 2px 2px;
  407. box-sizing:border-box;
  408. width:100%;
  409. }
  410. #u98939_text {
  411. border-width:0px;
  412. word-wrap:break-word;
  413. text-transform:none;
  414. visibility:hidden;
  415. }
  416. #u98940 {
  417. border-width:0px;
  418. position:absolute;
  419. left:0px;
  420. top:0px;
  421. width:0px;
  422. height:0px;
  423. }
  424. #u98941_div {
  425. border-width:0px;
  426. position:absolute;
  427. left:0px;
  428. top:0px;
  429. width:73px;
  430. height:40px;
  431. background:inherit;
  432. background-color:rgba(255, 255, 255, 0);
  433. border:none;
  434. border-left:0px;
  435. border-top:0px;
  436. border-right:0px;
  437. border-radius:0px;
  438. border-bottom-right-radius:0px;
  439. border-bottom-left-radius:0px;
  440. -moz-box-shadow:none;
  441. -webkit-box-shadow:none;
  442. box-shadow:none;
  443. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  444. font-weight:500;
  445. font-style:normal;
  446. font-size:18px;
  447. }
  448. #u98941 {
  449. border-width:0px;
  450. position:absolute;
  451. left:161px;
  452. top:186px;
  453. width:73px;
  454. height:40px;
  455. display:flex;
  456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  457. font-weight:500;
  458. font-style:normal;
  459. font-size:18px;
  460. }
  461. #u98941 .text {
  462. position:absolute;
  463. align-self:center;
  464. padding:0px 0px 0px 0px;
  465. box-sizing:border-box;
  466. width:100%;
  467. }
  468. #u98941_text {
  469. border-width:0px;
  470. white-space:nowrap;
  471. text-transform:none;
  472. }
  473. #u98942_img {
  474. border-width:0px;
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:33px;
  479. height:33px;
  480. }
  481. #u98942 {
  482. border-width:0px;
  483. position:absolute;
  484. left:181px;
  485. top:145px;
  486. width:33px;
  487. height:33px;
  488. display:flex;
  489. font-size:14px;
  490. color:#FFFFFF;
  491. }
  492. #u98942 .text {
  493. position:absolute;
  494. align-self:center;
  495. padding:2px 2px 2px 2px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u98942_text {
  500. border-width:0px;
  501. word-wrap:break-word;
  502. text-transform:none;
  503. }
  504. #u98943 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u98944_div {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:73px;
  518. height:40px;
  519. background:inherit;
  520. background-color:rgba(255, 255, 255, 0);
  521. border:none;
  522. border-left:0px;
  523. border-top:0px;
  524. border-right:0px;
  525. border-radius:0px;
  526. border-bottom-right-radius:0px;
  527. border-bottom-left-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  532. font-weight:500;
  533. font-style:normal;
  534. font-size:18px;
  535. }
  536. #u98944 {
  537. border-width:0px;
  538. position:absolute;
  539. left:480px;
  540. top:186px;
  541. width:73px;
  542. height:40px;
  543. display:flex;
  544. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  545. font-weight:500;
  546. font-style:normal;
  547. font-size:18px;
  548. }
  549. #u98944 .text {
  550. position:absolute;
  551. align-self:center;
  552. padding:0px 0px 0px 0px;
  553. box-sizing:border-box;
  554. width:100%;
  555. }
  556. #u98944_text {
  557. border-width:0px;
  558. white-space:nowrap;
  559. text-transform:none;
  560. }
  561. #u98945_img {
  562. border-width:0px;
  563. position:absolute;
  564. left:0px;
  565. top:0px;
  566. width:33px;
  567. height:33px;
  568. }
  569. #u98945 {
  570. border-width:0px;
  571. position:absolute;
  572. left:500px;
  573. top:145px;
  574. width:33px;
  575. height:33px;
  576. display:flex;
  577. font-size:14px;
  578. }
  579. #u98945 .text {
  580. position:absolute;
  581. align-self:center;
  582. padding:2px 2px 2px 2px;
  583. box-sizing:border-box;
  584. width:100%;
  585. }
  586. #u98945_text {
  587. border-width:0px;
  588. word-wrap:break-word;
  589. text-transform:none;
  590. }
  591. #u98946 {
  592. border-width:0px;
  593. position:absolute;
  594. left:0px;
  595. top:0px;
  596. width:0px;
  597. height:0px;
  598. }
  599. #u98947_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:73px;
  605. height:40px;
  606. background:inherit;
  607. background-color:rgba(255, 255, 255, 0);
  608. border:none;
  609. border-left:0px;
  610. border-top:0px;
  611. border-right:0px;
  612. border-radius:0px;
  613. border-bottom-right-radius:0px;
  614. border-bottom-left-radius:0px;
  615. -moz-box-shadow:none;
  616. -webkit-box-shadow:none;
  617. box-shadow:none;
  618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  619. font-weight:500;
  620. font-style:normal;
  621. font-size:18px;
  622. }
  623. #u98947 {
  624. border-width:0px;
  625. position:absolute;
  626. left:798px;
  627. top:186px;
  628. width:73px;
  629. height:40px;
  630. display:flex;
  631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  632. font-weight:500;
  633. font-style:normal;
  634. font-size:18px;
  635. }
  636. #u98947 .text {
  637. position:absolute;
  638. align-self:center;
  639. padding:0px 0px 0px 0px;
  640. box-sizing:border-box;
  641. width:100%;
  642. }
  643. #u98947_text {
  644. border-width:0px;
  645. white-space:nowrap;
  646. text-transform:none;
  647. }
  648. #u98948_img {
  649. border-width:0px;
  650. position:absolute;
  651. left:0px;
  652. top:0px;
  653. width:33px;
  654. height:33px;
  655. }
  656. #u98948 {
  657. border-width:0px;
  658. position:absolute;
  659. left:818px;
  660. top:145px;
  661. width:33px;
  662. height:33px;
  663. display:flex;
  664. font-size:14px;
  665. }
  666. #u98948 .text {
  667. position:absolute;
  668. align-self:center;
  669. padding:2px 2px 2px 2px;
  670. box-sizing:border-box;
  671. width:100%;
  672. }
  673. #u98948_text {
  674. border-width:0px;
  675. word-wrap:break-word;
  676. text-transform:none;
  677. }
  678. #u98949_div {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:0px;
  683. width:71px;
  684. height:40px;
  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. }
  702. #u98949 {
  703. border-width:0px;
  704. position:absolute;
  705. left:161px;
  706. top:370px;
  707. width:71px;
  708. height:40px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:14px;
  714. }
  715. #u98949 .text {
  716. position:absolute;
  717. align-self:center;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u98949_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u98950_div {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:78px;
  733. height:40px;
  734. background:inherit;
  735. background-color:rgba(255, 255, 255, 0);
  736. border:none;
  737. border-left:0px;
  738. border-top:0px;
  739. border-right:0px;
  740. border-radius:0px;
  741. border-bottom-right-radius:0px;
  742. border-bottom-left-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:14px;
  750. }
  751. #u98950 {
  752. border-width:0px;
  753. position:absolute;
  754. left:161px;
  755. top:318px;
  756. width:78px;
  757. height:40px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:14px;
  763. }
  764. #u98950 .text {
  765. position:absolute;
  766. align-self:center;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u98950_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u98951 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u98952_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:443px;
  790. height:40px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 1);
  793. box-sizing:border-box;
  794. border-width:1px;
  795. border-style:solid;
  796. border-color:rgba(215, 215, 215, 1);
  797. border-radius:4px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. font-size:14px;
  802. }
  803. #u98952 {
  804. border-width:0px;
  805. position:absolute;
  806. left:250px;
  807. top:270px;
  808. width:443px;
  809. height:40px;
  810. display:flex;
  811. font-size:14px;
  812. }
  813. #u98952 .text {
  814. position:absolute;
  815. align-self:center;
  816. padding:2px 2px 2px 2px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u98952_text {
  821. border-width:0px;
  822. word-wrap:break-word;
  823. text-transform:none;
  824. visibility:hidden;
  825. }
  826. #u98953_input {
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:423px;
  831. height:31px;
  832. padding:2px 2px 2px 2px;
  833. font-family:'ArialMT', 'Arial', sans-serif;
  834. font-weight:400;
  835. font-style:normal;
  836. font-size:14px;
  837. letter-spacing:normal;
  838. color:#AAAAAA;
  839. vertical-align:none;
  840. text-align:left;
  841. text-transform:none;
  842. background-color:transparent;
  843. border-color:transparent;
  844. }
  845. #u98953_input.disabled {
  846. position:absolute;
  847. left:0px;
  848. top:0px;
  849. width:423px;
  850. height:31px;
  851. padding:2px 2px 2px 2px;
  852. font-family:'ArialMT', 'Arial', sans-serif;
  853. font-weight:400;
  854. font-style:normal;
  855. font-size:14px;
  856. letter-spacing:normal;
  857. color:#AAAAAA;
  858. vertical-align:none;
  859. text-align:left;
  860. text-transform:none;
  861. background-color:transparent;
  862. border-color:transparent;
  863. }
  864. #u98953_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:423px;
  870. height:31px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 1);
  873. border:none;
  874. border-radius:0px;
  875. -moz-box-shadow:none;
  876. -webkit-box-shadow:none;
  877. box-shadow:none;
  878. font-size:14px;
  879. color:#AAAAAA;
  880. }
  881. #u98953 {
  882. border-width:0px;
  883. position:absolute;
  884. left:263px;
  885. top:273px;
  886. width:423px;
  887. height:31px;
  888. display:flex;
  889. font-size:14px;
  890. color:#AAAAAA;
  891. }
  892. #u98953 .text {
  893. position:absolute;
  894. align-self:flex-start;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u98953_div.disabled {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:423px;
  905. height:31px;
  906. background:inherit;
  907. background-color:rgba(240, 240, 240, 1);
  908. border:none;
  909. border-radius:0px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. font-size:14px;
  914. color:#AAAAAA;
  915. }
  916. #u98953.disabled {
  917. }
  918. .u98953_input_option {
  919. font-size:14px;
  920. }
  921. #u98954 {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:0px;
  927. height:0px;
  928. }
  929. #u98955_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:443px;
  935. height:40px;
  936. background:inherit;
  937. background-color:rgba(255, 255, 255, 1);
  938. box-sizing:border-box;
  939. border-width:1px;
  940. border-style:solid;
  941. border-color:rgba(201, 201, 201, 1);
  942. border-radius:4px;
  943. -moz-box-shadow:none;
  944. -webkit-box-shadow:none;
  945. box-shadow:none;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:14px;
  950. text-align:right;
  951. }
  952. #u98955 {
  953. border-width:0px;
  954. position:absolute;
  955. left:250px;
  956. top:320px;
  957. width:443px;
  958. height:40px;
  959. display:flex;
  960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  961. font-weight:400;
  962. font-style:normal;
  963. font-size:14px;
  964. text-align:right;
  965. }
  966. #u98955 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 8px 2px 8px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u98955_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u98956_input {
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:357px;
  984. height:33px;
  985. padding:2px 2px 2px 2px;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. font-size:14px;
  990. letter-spacing:normal;
  991. color:#D7D7D7;
  992. vertical-align:none;
  993. text-align:left;
  994. text-transform:none;
  995. background-color:transparent;
  996. border-color:transparent;
  997. }
  998. #u98956_input.disabled {
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:357px;
  1003. height:33px;
  1004. padding:2px 2px 2px 2px;
  1005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1006. font-weight:400;
  1007. font-style:normal;
  1008. font-size:14px;
  1009. letter-spacing:normal;
  1010. color:#D7D7D7;
  1011. vertical-align:none;
  1012. text-align:left;
  1013. text-transform:none;
  1014. background-color:transparent;
  1015. border-color:transparent;
  1016. }
  1017. #u98956_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:357px;
  1023. height:33px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:14px;
  1035. color:#D7D7D7;
  1036. }
  1037. #u98956 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:268px;
  1041. top:323px;
  1042. width:357px;
  1043. height:33px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:14px;
  1049. color:#D7D7D7;
  1050. }
  1051. #u98956 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:2px 2px 2px 2px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u98956_div.disabled {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:357px;
  1064. height:33px;
  1065. background:inherit;
  1066. background-color:rgba(240, 240, 240, 1);
  1067. border:none;
  1068. border-radius:0px;
  1069. -moz-box-shadow:none;
  1070. -webkit-box-shadow:none;
  1071. box-shadow:none;
  1072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1073. font-weight:400;
  1074. font-style:normal;
  1075. font-size:14px;
  1076. color:#D7D7D7;
  1077. }
  1078. #u98956.disabled {
  1079. }
  1080. #u98957 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:0px;
  1086. height:0px;
  1087. }
  1088. #u98958_div {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:443px;
  1094. height:40px;
  1095. background:inherit;
  1096. background-color:rgba(255, 255, 255, 1);
  1097. box-sizing:border-box;
  1098. border-width:1px;
  1099. border-style:solid;
  1100. border-color:rgba(201, 201, 201, 1);
  1101. border-radius:4px;
  1102. -moz-box-shadow:none;
  1103. -webkit-box-shadow:none;
  1104. box-shadow:none;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:14px;
  1109. text-align:right;
  1110. }
  1111. #u98958 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:250px;
  1115. top:370px;
  1116. width:443px;
  1117. height:40px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. text-align:right;
  1124. }
  1125. #u98958 .text {
  1126. position:absolute;
  1127. align-self:center;
  1128. padding:2px 8px 2px 8px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u98958_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u98959_input {
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:357px;
  1143. height:33px;
  1144. padding:2px 2px 2px 2px;
  1145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1146. font-weight:400;
  1147. font-style:normal;
  1148. font-size:14px;
  1149. letter-spacing:normal;
  1150. color:#D7D7D7;
  1151. vertical-align:none;
  1152. text-align:left;
  1153. text-transform:none;
  1154. background-color:transparent;
  1155. border-color:transparent;
  1156. }
  1157. #u98959_input.disabled {
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:357px;
  1162. height:33px;
  1163. padding:2px 2px 2px 2px;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:14px;
  1168. letter-spacing:normal;
  1169. color:#D7D7D7;
  1170. vertical-align:none;
  1171. text-align:left;
  1172. text-transform:none;
  1173. background-color:transparent;
  1174. border-color:transparent;
  1175. }
  1176. #u98959_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:357px;
  1182. height:33px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:14px;
  1194. color:#D7D7D7;
  1195. }
  1196. #u98959 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:268px;
  1200. top:373px;
  1201. width:357px;
  1202. height:33px;
  1203. display:flex;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:14px;
  1208. color:#D7D7D7;
  1209. }
  1210. #u98959 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u98959_div.disabled {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:357px;
  1223. height:33px;
  1224. background:inherit;
  1225. background-color:rgba(240, 240, 240, 1);
  1226. border:none;
  1227. border-radius:0px;
  1228. -moz-box-shadow:none;
  1229. -webkit-box-shadow:none;
  1230. box-shadow:none;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#D7D7D7;
  1236. }
  1237. #u98959.disabled {
  1238. }
  1239. #u98960_div {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:71px;
  1245. height:40px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 0);
  1248. border:none;
  1249. border-left:0px;
  1250. border-top:0px;
  1251. border-right:0px;
  1252. border-radius:0px;
  1253. border-bottom-right-radius:0px;
  1254. border-bottom-left-radius:0px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. font-size:14px;
  1262. }
  1263. #u98960 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:161px;
  1267. top:420px;
  1268. width:71px;
  1269. height:40px;
  1270. display:flex;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. }
  1276. #u98960 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:0px 0px 0px 0px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u98960_text {
  1284. border-width:0px;
  1285. white-space:nowrap;
  1286. text-transform:none;
  1287. }
  1288. #u98961 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:0px;
  1294. height:0px;
  1295. }
  1296. #u98962_div {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:443px;
  1302. height:40px;
  1303. background:inherit;
  1304. background-color:rgba(255, 255, 255, 1);
  1305. box-sizing:border-box;
  1306. border-width:1px;
  1307. border-style:solid;
  1308. border-color:rgba(201, 201, 201, 1);
  1309. border-radius:4px;
  1310. -moz-box-shadow:none;
  1311. -webkit-box-shadow:none;
  1312. box-shadow:none;
  1313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1314. font-weight:400;
  1315. font-style:normal;
  1316. font-size:14px;
  1317. text-align:right;
  1318. }
  1319. #u98962 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:250px;
  1323. top:420px;
  1324. width:443px;
  1325. height:40px;
  1326. display:flex;
  1327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1328. font-weight:400;
  1329. font-style:normal;
  1330. font-size:14px;
  1331. text-align:right;
  1332. }
  1333. #u98962 .text {
  1334. position:absolute;
  1335. align-self:center;
  1336. padding:2px 8px 2px 8px;
  1337. box-sizing:border-box;
  1338. width:100%;
  1339. }
  1340. #u98962_text {
  1341. border-width:0px;
  1342. word-wrap:break-word;
  1343. text-transform:none;
  1344. visibility:hidden;
  1345. }
  1346. #u98963_input {
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:357px;
  1351. height:33px;
  1352. padding:2px 2px 2px 2px;
  1353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. font-size:14px;
  1357. letter-spacing:normal;
  1358. color:#D7D7D7;
  1359. vertical-align:none;
  1360. text-align:left;
  1361. text-transform:none;
  1362. background-color:transparent;
  1363. border-color:transparent;
  1364. }
  1365. #u98963_input.disabled {
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:357px;
  1370. height:33px;
  1371. padding:2px 2px 2px 2px;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:14px;
  1376. letter-spacing:normal;
  1377. color:#D7D7D7;
  1378. vertical-align:none;
  1379. text-align:left;
  1380. text-transform:none;
  1381. background-color:transparent;
  1382. border-color:transparent;
  1383. }
  1384. #u98963_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:357px;
  1390. height:33px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 0);
  1393. border:none;
  1394. border-radius:0px;
  1395. -moz-box-shadow:none;
  1396. -webkit-box-shadow:none;
  1397. box-shadow:none;
  1398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1399. font-weight:400;
  1400. font-style:normal;
  1401. font-size:14px;
  1402. color:#D7D7D7;
  1403. }
  1404. #u98963 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:268px;
  1408. top:423px;
  1409. width:357px;
  1410. height:33px;
  1411. display:flex;
  1412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:14px;
  1416. color:#D7D7D7;
  1417. }
  1418. #u98963 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u98963_div.disabled {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:357px;
  1431. height:33px;
  1432. background:inherit;
  1433. background-color:rgba(240, 240, 240, 1);
  1434. border:none;
  1435. border-radius:0px;
  1436. -moz-box-shadow:none;
  1437. -webkit-box-shadow:none;
  1438. box-shadow:none;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:14px;
  1443. color:#D7D7D7;
  1444. }
  1445. #u98963.disabled {
  1446. }
  1447. #u98964_div {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:78px;
  1453. height:40px;
  1454. background:inherit;
  1455. background-color:rgba(255, 255, 255, 0);
  1456. border:none;
  1457. border-left:0px;
  1458. border-top:0px;
  1459. border-right:0px;
  1460. border-radius:0px;
  1461. border-bottom-right-radius:0px;
  1462. border-bottom-left-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:14px;
  1470. }
  1471. #u98964 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:161px;
  1475. top:269px;
  1476. width:78px;
  1477. height:40px;
  1478. display:flex;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. }
  1484. #u98964 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u98964_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u98965 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:0px;
  1502. height:0px;
  1503. }
  1504. #u98966_div {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:800px;
  1510. height:60px;
  1511. background:inherit;
  1512. background-color:rgba(255, 255, 255, 1);
  1513. box-sizing:border-box;
  1514. border-width:1px;
  1515. border-style:solid;
  1516. border-color:rgba(242, 242, 242, 1);
  1517. border-radius:0px;
  1518. -moz-box-shadow:none;
  1519. -webkit-box-shadow:none;
  1520. box-shadow:none;
  1521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1522. font-weight:400;
  1523. font-style:normal;
  1524. font-size:14px;
  1525. color:#AAAAAA;
  1526. text-align:center;
  1527. line-height:30px;
  1528. }
  1529. #u98966 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:955px;
  1533. top:46px;
  1534. width:800px;
  1535. height:60px;
  1536. display:flex;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:14px;
  1541. color:#AAAAAA;
  1542. text-align:center;
  1543. line-height:30px;
  1544. }
  1545. #u98966 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:5px 10px 5px 10px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u98966_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u98967_div {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:119px;
  1564. height:35px;
  1565. background:inherit;
  1566. background-color:rgba(255, 255, 255, 0);
  1567. border:none;
  1568. border-top:0px;
  1569. border-right:0px;
  1570. border-bottom:0px;
  1571. border-radius:0px;
  1572. border-top-left-radius:0px;
  1573. border-bottom-left-radius:0px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1578. font-weight:500;
  1579. font-style:normal;
  1580. font-size:18px;
  1581. }
  1582. #u98967 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:986px;
  1586. top:59px;
  1587. width:119px;
  1588. height:35px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1591. font-weight:500;
  1592. font-style:normal;
  1593. font-size:18px;
  1594. }
  1595. #u98967 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:5px 10px 5px 0px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u98967_text {
  1603. border-width:0px;
  1604. white-space:nowrap;
  1605. text-transform:none;
  1606. }
  1607. #u98968_div {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:800px;
  1613. height:1142px;
  1614. background:inherit;
  1615. background-color:rgba(255, 255, 255, 1);
  1616. box-sizing:border-box;
  1617. border-width:1px;
  1618. border-style:solid;
  1619. border-color:rgba(242, 242, 242, 1);
  1620. border-radius:0px;
  1621. -moz-box-shadow:none;
  1622. -webkit-box-shadow:none;
  1623. box-shadow:none;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. color:#AAAAAA;
  1629. text-align:center;
  1630. line-height:30px;
  1631. }
  1632. #u98968 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:955px;
  1636. top:106px;
  1637. width:800px;
  1638. height:1142px;
  1639. display:flex;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:14px;
  1644. color:#AAAAAA;
  1645. text-align:center;
  1646. line-height:30px;
  1647. }
  1648. #u98968 .text {
  1649. position:absolute;
  1650. align-self:center;
  1651. padding:5px 10px 5px 10px;
  1652. box-sizing:border-box;
  1653. width:100%;
  1654. }
  1655. #u98968_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. visibility:hidden;
  1660. }
  1661. #u98969 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u98970_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:800px;
  1675. height:60px;
  1676. background:inherit;
  1677. background-color:rgba(255, 255, 255, 1);
  1678. box-sizing:border-box;
  1679. border-width:1px;
  1680. border-style:solid;
  1681. border-color:rgba(215, 215, 215, 1);
  1682. border-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:14px;
  1690. color:#AAAAAA;
  1691. text-align:center;
  1692. line-height:30px;
  1693. }
  1694. #u98970 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:955px;
  1698. top:1187px;
  1699. width:800px;
  1700. height:60px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#AAAAAA;
  1707. text-align:center;
  1708. line-height:30px;
  1709. }
  1710. #u98970 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:5px 10px 5px 10px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u98970_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. visibility:hidden;
  1722. }
  1723. #u98971_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:80px;
  1729. height:30px;
  1730. }
  1731. #u98971 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:1635px;
  1735. top:1202px;
  1736. width:80px;
  1737. height:30px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:14px;
  1743. color:#FFFFFF;
  1744. }
  1745. #u98971 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 2px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u98971_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u98972_div {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:80px;
  1763. height:30px;
  1764. background:inherit;
  1765. background-color:rgba(255, 255, 255, 1);
  1766. box-sizing:border-box;
  1767. border-width:1px;
  1768. border-style:solid;
  1769. border-color:rgba(170, 170, 170, 1);
  1770. border-radius:4px;
  1771. -moz-box-shadow:none;
  1772. -webkit-box-shadow:none;
  1773. box-shadow:none;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. }
  1779. #u98972 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:1545px;
  1783. top:1202px;
  1784. width:80px;
  1785. height:30px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:14px;
  1791. }
  1792. #u98972 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u98972_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u98973_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:40px;
  1810. height:40px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 0);
  1813. border:none;
  1814. border-top:0px;
  1815. border-right:0px;
  1816. border-bottom:0px;
  1817. border-radius:0px;
  1818. border-top-left-radius:0px;
  1819. border-bottom-left-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1824. font-weight:500;
  1825. font-style:normal;
  1826. font-size:24px;
  1827. text-align:center;
  1828. }
  1829. #u98973 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:1715px;
  1833. top:46px;
  1834. width:40px;
  1835. height:40px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1838. font-weight:500;
  1839. font-style:normal;
  1840. font-size:24px;
  1841. text-align:center;
  1842. }
  1843. #u98973 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:5px 10px 5px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u98973_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u98974 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:0px;
  1861. height:0px;
  1862. }
  1863. #u98975_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:638px;
  1869. height:2px;
  1870. }
  1871. #u98975 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:1042px;
  1875. top:162px;
  1876. width:637px;
  1877. height:1px;
  1878. display:flex;
  1879. }
  1880. #u98975 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u98975_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u98976 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:0px;
  1899. height:0px;
  1900. }
  1901. #u98977_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:73px;
  1907. height:40px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border:none;
  1911. border-left:0px;
  1912. border-top:0px;
  1913. border-right:0px;
  1914. border-radius:0px;
  1915. border-bottom-right-radius:0px;
  1916. border-bottom-left-radius:0px;
  1917. -moz-box-shadow:none;
  1918. -webkit-box-shadow:none;
  1919. box-shadow:none;
  1920. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1921. font-weight:500;
  1922. font-style:normal;
  1923. font-size:18px;
  1924. }
  1925. #u98977 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:1005px;
  1929. top:186px;
  1930. width:73px;
  1931. height:40px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1934. font-weight:500;
  1935. font-style:normal;
  1936. font-size:18px;
  1937. }
  1938. #u98977 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:0px 0px 0px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u98977_text {
  1946. border-width:0px;
  1947. white-space:nowrap;
  1948. text-transform:none;
  1949. }
  1950. #u98978_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:33px;
  1956. height:33px;
  1957. }
  1958. #u98978 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:1025px;
  1962. top:145px;
  1963. width:33px;
  1964. height:33px;
  1965. display:flex;
  1966. font-size:14px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u98978 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 2px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u98978_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. }
  1981. #u98979 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:0px;
  1987. height:0px;
  1988. }
  1989. #u98980_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:73px;
  1995. height:40px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-left:0px;
  2000. border-top:0px;
  2001. border-right:0px;
  2002. border-radius:0px;
  2003. border-bottom-right-radius:0px;
  2004. border-bottom-left-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2009. font-weight:500;
  2010. font-style:normal;
  2011. font-size:18px;
  2012. }
  2013. #u98980 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:1324px;
  2017. top:186px;
  2018. width:73px;
  2019. height:40px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2022. font-weight:500;
  2023. font-style:normal;
  2024. font-size:18px;
  2025. }
  2026. #u98980 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:0px 0px 0px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u98980_text {
  2034. border-width:0px;
  2035. white-space:nowrap;
  2036. text-transform:none;
  2037. }
  2038. #u98981_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:33px;
  2044. height:33px;
  2045. }
  2046. #u98981 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:1344px;
  2050. top:145px;
  2051. width:33px;
  2052. height:33px;
  2053. display:flex;
  2054. font-size:14px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u98981 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u98981_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u98982 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u98983_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:73px;
  2083. height:40px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 0);
  2086. border:none;
  2087. border-left:0px;
  2088. border-top:0px;
  2089. border-right:0px;
  2090. border-radius:0px;
  2091. border-bottom-right-radius:0px;
  2092. border-bottom-left-radius:0px;
  2093. -moz-box-shadow:none;
  2094. -webkit-box-shadow:none;
  2095. box-shadow:none;
  2096. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2097. font-weight:500;
  2098. font-style:normal;
  2099. font-size:18px;
  2100. }
  2101. #u98983 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:1642px;
  2105. top:186px;
  2106. width:73px;
  2107. height:40px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2110. font-weight:500;
  2111. font-style:normal;
  2112. font-size:18px;
  2113. }
  2114. #u98983 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:0px 0px 0px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u98983_text {
  2122. border-width:0px;
  2123. white-space:nowrap;
  2124. text-transform:none;
  2125. }
  2126. #u98984_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:33px;
  2132. height:33px;
  2133. }
  2134. #u98984 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:1662px;
  2138. top:145px;
  2139. width:33px;
  2140. height:33px;
  2141. display:flex;
  2142. font-size:14px;
  2143. }
  2144. #u98984 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 2px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u98984_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. }
  2156. #u98985 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:0px;
  2162. height:0px;
  2163. }
  2164. #u98986_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:426px;
  2170. height:30px;
  2171. background:inherit;
  2172. background-color:rgba(255, 255, 255, 0);
  2173. border:none;
  2174. border-top:0px;
  2175. border-right:0px;
  2176. border-bottom:0px;
  2177. border-radius:0px;
  2178. border-top-left-radius:0px;
  2179. border-bottom-left-radius:0px;
  2180. -moz-box-shadow:none;
  2181. -webkit-box-shadow:none;
  2182. box-shadow:none;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. }
  2188. #u98986 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:1005px;
  2192. top:254px;
  2193. width:426px;
  2194. height:30px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. }
  2201. #u98986 .text {
  2202. position:absolute;
  2203. align-self:center;
  2204. padding:5px 10px 5px 0px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u98986_text {
  2209. border-width:0px;
  2210. white-space:nowrap;
  2211. text-transform:none;
  2212. }
  2213. #u98987_div {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:14px;
  2219. height:14px;
  2220. background:inherit;
  2221. background-color:rgba(0, 191, 191, 1);
  2222. border:none;
  2223. border-radius:0px;
  2224. -moz-box-shadow:none;
  2225. -webkit-box-shadow:none;
  2226. box-shadow:none;
  2227. }
  2228. #u98987 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:1202px;
  2232. top:262px;
  2233. width:14px;
  2234. height:14px;
  2235. display:flex;
  2236. }
  2237. #u98987 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:2px 2px 2px 2px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u98987_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u98988_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:14px;
  2256. height:14px;
  2257. background:inherit;
  2258. background-color:rgba(215, 215, 215, 1);
  2259. border:none;
  2260. border-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. }
  2265. #u98988 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:1306px;
  2269. top:262px;
  2270. width:14px;
  2271. height:14px;
  2272. display:flex;
  2273. }
  2274. #u98988 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 2px 2px 2px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u98988_text {
  2282. border-width:0px;
  2283. word-wrap:break-word;
  2284. text-transform:none;
  2285. visibility:hidden;
  2286. }
  2287. #u98989 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:1005px;
  2291. top:294px;
  2292. width:710px;
  2293. height:520px;
  2294. }
  2295. #u98990_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:47px;
  2301. height:40px;
  2302. }
  2303. #u98990 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:47px;
  2309. height:40px;
  2310. display:flex;
  2311. font-size:14px;
  2312. color:#FFFFFF;
  2313. }
  2314. #u98990 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u98990_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u98991_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:108px;
  2333. height:40px;
  2334. }
  2335. #u98991 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:47px;
  2339. top:0px;
  2340. width:108px;
  2341. height:40px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:14px;
  2347. color:#FFFFFF;
  2348. }
  2349. #u98991 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:2px 2px 2px 2px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u98991_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. }
  2361. #u98992_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:111px;
  2367. height:40px;
  2368. }
  2369. #u98992 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:155px;
  2373. top:0px;
  2374. width:111px;
  2375. height:40px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:14px;
  2381. color:#FFFFFF;
  2382. }
  2383. #u98992 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u98992_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. }
  2395. #u98993_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:111px;
  2401. height:40px;
  2402. }
  2403. #u98993 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:266px;
  2407. top:0px;
  2408. width:111px;
  2409. height:40px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:14px;
  2415. color:#FFFFFF;
  2416. }
  2417. #u98993 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u98993_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. }
  2429. #u98994_img {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:111px;
  2435. height:40px;
  2436. }
  2437. #u98994 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:377px;
  2441. top:0px;
  2442. width:111px;
  2443. height:40px;
  2444. display:flex;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:14px;
  2449. color:#FFFFFF;
  2450. }
  2451. #u98994 .text {
  2452. position:absolute;
  2453. align-self:center;
  2454. padding:2px 2px 2px 2px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u98994_text {
  2459. border-width:0px;
  2460. word-wrap:break-word;
  2461. text-transform:none;
  2462. }
  2463. #u98995_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:111px;
  2469. height:40px;
  2470. }
  2471. #u98995 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:488px;
  2475. top:0px;
  2476. width:111px;
  2477. height:40px;
  2478. display:flex;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:14px;
  2483. color:#FFFFFF;
  2484. }
  2485. #u98995 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u98995_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. }
  2497. #u98996_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:111px;
  2503. height:40px;
  2504. }
  2505. #u98996 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:599px;
  2509. top:0px;
  2510. width:111px;
  2511. height:40px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. color:#FFFFFF;
  2518. }
  2519. #u98996 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 2px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u98996_text {
  2527. border-width:0px;
  2528. word-wrap:break-word;
  2529. text-transform:none;
  2530. }
  2531. #u98997_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:47px;
  2537. height:40px;
  2538. }
  2539. #u98997 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:40px;
  2544. width:47px;
  2545. height:40px;
  2546. display:flex;
  2547. font-size:14px;
  2548. }
  2549. #u98997 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u98997_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u98998_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:108px;
  2568. height:40px;
  2569. }
  2570. #u98998 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:47px;
  2574. top:40px;
  2575. width:108px;
  2576. height:40px;
  2577. display:flex;
  2578. font-size:14px;
  2579. }
  2580. #u98998 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u98998_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u98999_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:111px;
  2598. height:40px;
  2599. }
  2600. #u98999 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:155px;
  2604. top:40px;
  2605. width:111px;
  2606. height:40px;
  2607. display:flex;
  2608. font-size:14px;
  2609. }
  2610. #u98999 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 2px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u98999_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u99000_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:111px;
  2629. height:40px;
  2630. }
  2631. #u99000 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:266px;
  2635. top:40px;
  2636. width:111px;
  2637. height:40px;
  2638. display:flex;
  2639. font-size:14px;
  2640. }
  2641. #u99000 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 2px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u99000_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u99001_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:111px;
  2660. height:40px;
  2661. }
  2662. #u99001 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:377px;
  2666. top:40px;
  2667. width:111px;
  2668. height:40px;
  2669. display:flex;
  2670. font-size:14px;
  2671. }
  2672. #u99001 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 2px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u99001_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u99002_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:111px;
  2691. height:40px;
  2692. }
  2693. #u99002 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:488px;
  2697. top:40px;
  2698. width:111px;
  2699. height:40px;
  2700. display:flex;
  2701. font-size:14px;
  2702. }
  2703. #u99002 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u99002_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u99003_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:111px;
  2722. height:40px;
  2723. }
  2724. #u99003 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:599px;
  2728. top:40px;
  2729. width:111px;
  2730. height:40px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:14px;
  2736. color:#FFFFFF;
  2737. }
  2738. #u99003 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u99003_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. }
  2750. #u99004_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:47px;
  2756. height:40px;
  2757. }
  2758. #u99004 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:80px;
  2763. width:47px;
  2764. height:40px;
  2765. display:flex;
  2766. font-size:14px;
  2767. }
  2768. #u99004 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u99004_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u99005_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:108px;
  2787. height:40px;
  2788. }
  2789. #u99005 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:47px;
  2793. top:80px;
  2794. width:108px;
  2795. height:40px;
  2796. display:flex;
  2797. font-size:14px;
  2798. }
  2799. #u99005 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u99005_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. }
  2811. #u99006_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:111px;
  2817. height:40px;
  2818. }
  2819. #u99006 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:155px;
  2823. top:80px;
  2824. width:111px;
  2825. height:40px;
  2826. display:flex;
  2827. font-size:14px;
  2828. }
  2829. #u99006 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u99006_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u99007_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:111px;
  2848. height:40px;
  2849. }
  2850. #u99007 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:266px;
  2854. top:80px;
  2855. width:111px;
  2856. height:40px;
  2857. display:flex;
  2858. font-size:14px;
  2859. }
  2860. #u99007 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 2px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u99007_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. visibility:hidden;
  2872. }
  2873. #u99008_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:111px;
  2879. height:40px;
  2880. }
  2881. #u99008 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:377px;
  2885. top:80px;
  2886. width:111px;
  2887. height:40px;
  2888. display:flex;
  2889. font-size:14px;
  2890. }
  2891. #u99008 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u99008_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u99009_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:111px;
  2910. height:40px;
  2911. }
  2912. #u99009 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:488px;
  2916. top:80px;
  2917. width:111px;
  2918. height:40px;
  2919. display:flex;
  2920. font-size:14px;
  2921. }
  2922. #u99009 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u99009_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u99010_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:111px;
  2941. height:40px;
  2942. }
  2943. #u99010 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:599px;
  2947. top:80px;
  2948. width:111px;
  2949. height:40px;
  2950. display:flex;
  2951. font-size:14px;
  2952. }
  2953. #u99010 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u99010_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u99011_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:47px;
  2972. height:40px;
  2973. }
  2974. #u99011 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:120px;
  2979. width:47px;
  2980. height:40px;
  2981. display:flex;
  2982. font-size:14px;
  2983. }
  2984. #u99011 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u99011_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u99012_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:108px;
  3003. height:40px;
  3004. }
  3005. #u99012 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:47px;
  3009. top:120px;
  3010. width:108px;
  3011. height:40px;
  3012. display:flex;
  3013. font-size:14px;
  3014. }
  3015. #u99012 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u99012_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u99013_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:111px;
  3033. height:40px;
  3034. }
  3035. #u99013 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:155px;
  3039. top:120px;
  3040. width:111px;
  3041. height:40px;
  3042. display:flex;
  3043. font-size:14px;
  3044. }
  3045. #u99013 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u99013_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u99014_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:111px;
  3064. height:40px;
  3065. }
  3066. #u99014 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:266px;
  3070. top:120px;
  3071. width:111px;
  3072. height:40px;
  3073. display:flex;
  3074. font-size:14px;
  3075. }
  3076. #u99014 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u99014_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u99015_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:111px;
  3095. height:40px;
  3096. }
  3097. #u99015 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:377px;
  3101. top:120px;
  3102. width:111px;
  3103. height:40px;
  3104. display:flex;
  3105. font-size:14px;
  3106. }
  3107. #u99015 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 2px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u99015_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u99016_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:111px;
  3126. height:40px;
  3127. }
  3128. #u99016 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:488px;
  3132. top:120px;
  3133. width:111px;
  3134. height:40px;
  3135. display:flex;
  3136. font-size:14px;
  3137. }
  3138. #u99016 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u99016_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u99017_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:111px;
  3157. height:40px;
  3158. }
  3159. #u99017 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:599px;
  3163. top:120px;
  3164. width:111px;
  3165. height:40px;
  3166. display:flex;
  3167. font-size:14px;
  3168. }
  3169. #u99017 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u99017_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u99018_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:47px;
  3188. height:40px;
  3189. }
  3190. #u99018 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:160px;
  3195. width:47px;
  3196. height:40px;
  3197. display:flex;
  3198. font-size:14px;
  3199. }
  3200. #u99018 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 2px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u99018_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u99019_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:108px;
  3219. height:40px;
  3220. }
  3221. #u99019 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:47px;
  3225. top:160px;
  3226. width:108px;
  3227. height:40px;
  3228. display:flex;
  3229. font-size:14px;
  3230. }
  3231. #u99019 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u99019_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. }
  3243. #u99020_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:111px;
  3249. height:40px;
  3250. }
  3251. #u99020 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:155px;
  3255. top:160px;
  3256. width:111px;
  3257. height:40px;
  3258. display:flex;
  3259. font-size:14px;
  3260. }
  3261. #u99020 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 2px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u99020_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u99021_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:111px;
  3280. height:40px;
  3281. }
  3282. #u99021 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:266px;
  3286. top:160px;
  3287. width:111px;
  3288. height:40px;
  3289. display:flex;
  3290. font-size:14px;
  3291. }
  3292. #u99021 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u99021_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u99022_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:111px;
  3311. height:40px;
  3312. }
  3313. #u99022 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:377px;
  3317. top:160px;
  3318. width:111px;
  3319. height:40px;
  3320. display:flex;
  3321. font-size:14px;
  3322. }
  3323. #u99022 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u99022_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u99023_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:111px;
  3342. height:40px;
  3343. }
  3344. #u99023 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:488px;
  3348. top:160px;
  3349. width:111px;
  3350. height:40px;
  3351. display:flex;
  3352. font-size:14px;
  3353. }
  3354. #u99023 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u99023_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u99024_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:111px;
  3373. height:40px;
  3374. }
  3375. #u99024 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:599px;
  3379. top:160px;
  3380. width:111px;
  3381. height:40px;
  3382. display:flex;
  3383. font-size:14px;
  3384. }
  3385. #u99024 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u99024_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u99025_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:47px;
  3404. height:40px;
  3405. }
  3406. #u99025 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:200px;
  3411. width:47px;
  3412. height:40px;
  3413. display:flex;
  3414. font-size:14px;
  3415. }
  3416. #u99025 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u99025_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u99026_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:108px;
  3435. height:40px;
  3436. }
  3437. #u99026 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:47px;
  3441. top:200px;
  3442. width:108px;
  3443. height:40px;
  3444. display:flex;
  3445. font-size:14px;
  3446. }
  3447. #u99026 .text {
  3448. position:absolute;
  3449. align-self:center;
  3450. padding:2px 2px 2px 2px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u99026_text {
  3455. border-width:0px;
  3456. word-wrap:break-word;
  3457. text-transform:none;
  3458. }
  3459. #u99027_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:111px;
  3465. height:40px;
  3466. }
  3467. #u99027 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:155px;
  3471. top:200px;
  3472. width:111px;
  3473. height:40px;
  3474. display:flex;
  3475. font-size:14px;
  3476. }
  3477. #u99027 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 2px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u99027_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u99028_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:111px;
  3496. height:40px;
  3497. }
  3498. #u99028 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:266px;
  3502. top:200px;
  3503. width:111px;
  3504. height:40px;
  3505. display:flex;
  3506. font-size:14px;
  3507. }
  3508. #u99028 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 2px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u99028_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u99029_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:111px;
  3527. height:40px;
  3528. }
  3529. #u99029 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:377px;
  3533. top:200px;
  3534. width:111px;
  3535. height:40px;
  3536. display:flex;
  3537. font-size:14px;
  3538. }
  3539. #u99029 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u99029_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u99030_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:111px;
  3558. height:40px;
  3559. }
  3560. #u99030 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:488px;
  3564. top:200px;
  3565. width:111px;
  3566. height:40px;
  3567. display:flex;
  3568. font-size:14px;
  3569. }
  3570. #u99030 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 2px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u99030_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u99031_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:111px;
  3589. height:40px;
  3590. }
  3591. #u99031 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:599px;
  3595. top:200px;
  3596. width:111px;
  3597. height:40px;
  3598. display:flex;
  3599. font-size:14px;
  3600. }
  3601. #u99031 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u99031_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u99032_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:47px;
  3620. height:40px;
  3621. }
  3622. #u99032 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:240px;
  3627. width:47px;
  3628. height:40px;
  3629. display:flex;
  3630. font-size:14px;
  3631. }
  3632. #u99032 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 2px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u99032_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u99033_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:108px;
  3651. height:40px;
  3652. }
  3653. #u99033 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:47px;
  3657. top:240px;
  3658. width:108px;
  3659. height:40px;
  3660. display:flex;
  3661. font-size:14px;
  3662. }
  3663. #u99033 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 2px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u99033_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. }
  3675. #u99034_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:111px;
  3681. height:40px;
  3682. }
  3683. #u99034 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:155px;
  3687. top:240px;
  3688. width:111px;
  3689. height:40px;
  3690. display:flex;
  3691. font-size:14px;
  3692. }
  3693. #u99034 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 2px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u99034_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u99035_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:111px;
  3712. height:40px;
  3713. }
  3714. #u99035 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:266px;
  3718. top:240px;
  3719. width:111px;
  3720. height:40px;
  3721. display:flex;
  3722. font-size:14px;
  3723. }
  3724. #u99035 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 2px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u99035_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u99036_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:111px;
  3743. height:40px;
  3744. }
  3745. #u99036 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:377px;
  3749. top:240px;
  3750. width:111px;
  3751. height:40px;
  3752. display:flex;
  3753. font-size:14px;
  3754. }
  3755. #u99036 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u99036_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u99037_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:111px;
  3774. height:40px;
  3775. }
  3776. #u99037 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:488px;
  3780. top:240px;
  3781. width:111px;
  3782. height:40px;
  3783. display:flex;
  3784. font-size:14px;
  3785. }
  3786. #u99037 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u99037_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u99038_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:111px;
  3805. height:40px;
  3806. }
  3807. #u99038 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:599px;
  3811. top:240px;
  3812. width:111px;
  3813. height:40px;
  3814. display:flex;
  3815. font-size:14px;
  3816. }
  3817. #u99038 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u99038_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u99039_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:47px;
  3836. height:40px;
  3837. }
  3838. #u99039 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:280px;
  3843. width:47px;
  3844. height:40px;
  3845. display:flex;
  3846. font-size:14px;
  3847. }
  3848. #u99039 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 2px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u99039_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u99040_img {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:108px;
  3867. height:40px;
  3868. }
  3869. #u99040 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:47px;
  3873. top:280px;
  3874. width:108px;
  3875. height:40px;
  3876. display:flex;
  3877. font-size:14px;
  3878. }
  3879. #u99040 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 2px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u99040_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. }
  3891. #u99041_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:111px;
  3897. height:40px;
  3898. }
  3899. #u99041 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:155px;
  3903. top:280px;
  3904. width:111px;
  3905. height:40px;
  3906. display:flex;
  3907. font-size:14px;
  3908. }
  3909. #u99041 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 2px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u99041_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u99042_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:111px;
  3928. height:40px;
  3929. }
  3930. #u99042 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:266px;
  3934. top:280px;
  3935. width:111px;
  3936. height:40px;
  3937. display:flex;
  3938. font-size:14px;
  3939. }
  3940. #u99042 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u99042_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u99043_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:111px;
  3959. height:40px;
  3960. }
  3961. #u99043 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:377px;
  3965. top:280px;
  3966. width:111px;
  3967. height:40px;
  3968. display:flex;
  3969. font-size:14px;
  3970. }
  3971. #u99043 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 2px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u99043_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. visibility:hidden;
  3983. }
  3984. #u99044_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:111px;
  3990. height:40px;
  3991. }
  3992. #u99044 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:488px;
  3996. top:280px;
  3997. width:111px;
  3998. height:40px;
  3999. display:flex;
  4000. font-size:14px;
  4001. }
  4002. #u99044 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 2px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u99044_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u99045_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:111px;
  4021. height:40px;
  4022. }
  4023. #u99045 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:599px;
  4027. top:280px;
  4028. width:111px;
  4029. height:40px;
  4030. display:flex;
  4031. font-size:14px;
  4032. }
  4033. #u99045 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 2px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u99045_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u99046_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:47px;
  4052. height:40px;
  4053. }
  4054. #u99046 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:320px;
  4059. width:47px;
  4060. height:40px;
  4061. display:flex;
  4062. font-size:14px;
  4063. }
  4064. #u99046 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u99046_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u99047_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:108px;
  4083. height:40px;
  4084. }
  4085. #u99047 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:47px;
  4089. top:320px;
  4090. width:108px;
  4091. height:40px;
  4092. display:flex;
  4093. font-size:14px;
  4094. }
  4095. #u99047 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u99047_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. }
  4107. #u99048_img {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:111px;
  4113. height:40px;
  4114. }
  4115. #u99048 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:155px;
  4119. top:320px;
  4120. width:111px;
  4121. height:40px;
  4122. display:flex;
  4123. font-size:14px;
  4124. }
  4125. #u99048 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 2px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u99048_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }
  4138. #u99049_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:111px;
  4144. height:40px;
  4145. }
  4146. #u99049 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:266px;
  4150. top:320px;
  4151. width:111px;
  4152. height:40px;
  4153. display:flex;
  4154. font-size:14px;
  4155. }
  4156. #u99049 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u99049_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u99050_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:111px;
  4175. height:40px;
  4176. }
  4177. #u99050 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:377px;
  4181. top:320px;
  4182. width:111px;
  4183. height:40px;
  4184. display:flex;
  4185. font-size:14px;
  4186. }
  4187. #u99050 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 2px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u99050_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u99051_img {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:111px;
  4206. height:40px;
  4207. }
  4208. #u99051 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:488px;
  4212. top:320px;
  4213. width:111px;
  4214. height:40px;
  4215. display:flex;
  4216. font-size:14px;
  4217. }
  4218. #u99051 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u99051_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u99052_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:111px;
  4237. height:40px;
  4238. }
  4239. #u99052 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:599px;
  4243. top:320px;
  4244. width:111px;
  4245. height:40px;
  4246. display:flex;
  4247. font-size:14px;
  4248. }
  4249. #u99052 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u99052_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u99053_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:47px;
  4268. height:40px;
  4269. }
  4270. #u99053 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:360px;
  4275. width:47px;
  4276. height:40px;
  4277. display:flex;
  4278. font-size:14px;
  4279. }
  4280. #u99053 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 2px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u99053_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u99054_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:108px;
  4299. height:40px;
  4300. }
  4301. #u99054 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:47px;
  4305. top:360px;
  4306. width:108px;
  4307. height:40px;
  4308. display:flex;
  4309. font-size:14px;
  4310. }
  4311. #u99054 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 2px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u99054_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. }
  4323. #u99055_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:111px;
  4329. height:40px;
  4330. }
  4331. #u99055 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:155px;
  4335. top:360px;
  4336. width:111px;
  4337. height:40px;
  4338. display:flex;
  4339. font-size:14px;
  4340. }
  4341. #u99055 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 2px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u99055_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u99056_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:111px;
  4360. height:40px;
  4361. }
  4362. #u99056 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:266px;
  4366. top:360px;
  4367. width:111px;
  4368. height:40px;
  4369. display:flex;
  4370. font-size:14px;
  4371. }
  4372. #u99056 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u99056_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u99057_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:111px;
  4391. height:40px;
  4392. }
  4393. #u99057 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:377px;
  4397. top:360px;
  4398. width:111px;
  4399. height:40px;
  4400. display:flex;
  4401. font-size:14px;
  4402. }
  4403. #u99057 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u99057_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u99058_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:111px;
  4422. height:40px;
  4423. }
  4424. #u99058 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:488px;
  4428. top:360px;
  4429. width:111px;
  4430. height:40px;
  4431. display:flex;
  4432. font-size:14px;
  4433. }
  4434. #u99058 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 2px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u99058_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u99059_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:111px;
  4453. height:40px;
  4454. }
  4455. #u99059 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:599px;
  4459. top:360px;
  4460. width:111px;
  4461. height:40px;
  4462. display:flex;
  4463. font-size:14px;
  4464. }
  4465. #u99059 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:2px 2px 2px 2px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u99059_text {
  4473. border-width:0px;
  4474. word-wrap:break-word;
  4475. text-transform:none;
  4476. visibility:hidden;
  4477. }
  4478. #u99060_img {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:47px;
  4484. height:40px;
  4485. }
  4486. #u99060 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:400px;
  4491. width:47px;
  4492. height:40px;
  4493. display:flex;
  4494. font-size:14px;
  4495. }
  4496. #u99060 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u99060_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u99061_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:108px;
  4515. height:40px;
  4516. }
  4517. #u99061 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:47px;
  4521. top:400px;
  4522. width:108px;
  4523. height:40px;
  4524. display:flex;
  4525. font-size:14px;
  4526. }
  4527. #u99061 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 2px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u99061_text {
  4535. border-width:0px;
  4536. word-wrap:break-word;
  4537. text-transform:none;
  4538. }
  4539. #u99062_img {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:111px;
  4545. height:40px;
  4546. }
  4547. #u99062 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:155px;
  4551. top:400px;
  4552. width:111px;
  4553. height:40px;
  4554. display:flex;
  4555. font-size:14px;
  4556. }
  4557. #u99062 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 2px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u99062_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u99063_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:111px;
  4576. height:40px;
  4577. }
  4578. #u99063 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:266px;
  4582. top:400px;
  4583. width:111px;
  4584. height:40px;
  4585. display:flex;
  4586. font-size:14px;
  4587. }
  4588. #u99063 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 2px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u99063_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u99064_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:111px;
  4607. height:40px;
  4608. }
  4609. #u99064 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:377px;
  4613. top:400px;
  4614. width:111px;
  4615. height:40px;
  4616. display:flex;
  4617. font-size:14px;
  4618. }
  4619. #u99064 .text {
  4620. position:absolute;
  4621. align-self:center;
  4622. padding:2px 2px 2px 2px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u99064_text {
  4627. border-width:0px;
  4628. word-wrap:break-word;
  4629. text-transform:none;
  4630. visibility:hidden;
  4631. }
  4632. #u99065_img {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:111px;
  4638. height:40px;
  4639. }
  4640. #u99065 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:488px;
  4644. top:400px;
  4645. width:111px;
  4646. height:40px;
  4647. display:flex;
  4648. font-size:14px;
  4649. }
  4650. #u99065 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 2px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u99065_text {
  4658. border-width:0px;
  4659. word-wrap:break-word;
  4660. text-transform:none;
  4661. visibility:hidden;
  4662. }
  4663. #u99066_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:111px;
  4669. height:40px;
  4670. }
  4671. #u99066 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:599px;
  4675. top:400px;
  4676. width:111px;
  4677. height:40px;
  4678. display:flex;
  4679. font-size:14px;
  4680. }
  4681. #u99066 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 2px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u99066_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u99067_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:47px;
  4700. height:40px;
  4701. }
  4702. #u99067 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:440px;
  4707. width:47px;
  4708. height:40px;
  4709. display:flex;
  4710. font-size:14px;
  4711. }
  4712. #u99067 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 2px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u99067_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u99068_img {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:108px;
  4731. height:40px;
  4732. }
  4733. #u99068 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:47px;
  4737. top:440px;
  4738. width:108px;
  4739. height:40px;
  4740. display:flex;
  4741. font-size:14px;
  4742. }
  4743. #u99068 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u99068_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. }
  4755. #u99069_img {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:111px;
  4761. height:40px;
  4762. }
  4763. #u99069 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:155px;
  4767. top:440px;
  4768. width:111px;
  4769. height:40px;
  4770. display:flex;
  4771. font-size:14px;
  4772. }
  4773. #u99069 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u99069_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u99070_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:111px;
  4792. height:40px;
  4793. }
  4794. #u99070 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:266px;
  4798. top:440px;
  4799. width:111px;
  4800. height:40px;
  4801. display:flex;
  4802. font-size:14px;
  4803. }
  4804. #u99070 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u99070_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u99071_img {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:111px;
  4823. height:40px;
  4824. }
  4825. #u99071 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:377px;
  4829. top:440px;
  4830. width:111px;
  4831. height:40px;
  4832. display:flex;
  4833. font-size:14px;
  4834. }
  4835. #u99071 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 2px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u99071_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u99072_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:111px;
  4854. height:40px;
  4855. }
  4856. #u99072 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:488px;
  4860. top:440px;
  4861. width:111px;
  4862. height:40px;
  4863. display:flex;
  4864. font-size:14px;
  4865. }
  4866. #u99072 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 2px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u99072_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. visibility:hidden;
  4878. }
  4879. #u99073_img {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:111px;
  4885. height:40px;
  4886. }
  4887. #u99073 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:599px;
  4891. top:440px;
  4892. width:111px;
  4893. height:40px;
  4894. display:flex;
  4895. font-size:14px;
  4896. }
  4897. #u99073 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 2px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u99073_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u99074_img {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:47px;
  4916. height:40px;
  4917. }
  4918. #u99074 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:480px;
  4923. width:47px;
  4924. height:40px;
  4925. display:flex;
  4926. font-size:14px;
  4927. }
  4928. #u99074 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u99074_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. visibility:hidden;
  4940. }
  4941. #u99075_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:108px;
  4947. height:40px;
  4948. }
  4949. #u99075 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:47px;
  4953. top:480px;
  4954. width:108px;
  4955. height:40px;
  4956. display:flex;
  4957. font-size:14px;
  4958. }
  4959. #u99075 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 2px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u99075_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. }
  4971. #u99076_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:111px;
  4977. height:40px;
  4978. }
  4979. #u99076 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:155px;
  4983. top:480px;
  4984. width:111px;
  4985. height:40px;
  4986. display:flex;
  4987. font-size:14px;
  4988. }
  4989. #u99076 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 2px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u99076_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u99077_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:111px;
  5008. height:40px;
  5009. }
  5010. #u99077 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:266px;
  5014. top:480px;
  5015. width:111px;
  5016. height:40px;
  5017. display:flex;
  5018. font-size:14px;
  5019. }
  5020. #u99077 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 2px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u99077_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u99078_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:111px;
  5039. height:40px;
  5040. }
  5041. #u99078 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:377px;
  5045. top:480px;
  5046. width:111px;
  5047. height:40px;
  5048. display:flex;
  5049. font-size:14px;
  5050. }
  5051. #u99078 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 2px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u99078_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. visibility:hidden;
  5063. }
  5064. #u99079_img {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:111px;
  5070. height:40px;
  5071. }
  5072. #u99079 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:488px;
  5076. top:480px;
  5077. width:111px;
  5078. height:40px;
  5079. display:flex;
  5080. font-size:14px;
  5081. }
  5082. #u99079 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 2px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u99079_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u99080_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:111px;
  5101. height:40px;
  5102. }
  5103. #u99080 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:599px;
  5107. top:480px;
  5108. width:111px;
  5109. height:40px;
  5110. display:flex;
  5111. font-size:14px;
  5112. }
  5113. #u99080 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 2px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u99080_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u99081 label {
  5127. left:0px;
  5128. width:100%;
  5129. }
  5130. #u99081_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:12px;
  5136. height:12px;
  5137. }
  5138. #u99081 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1018px;
  5142. top:308px;
  5143. width:47px;
  5144. height:16px;
  5145. display:flex;
  5146. }
  5147. #u99081 .text {
  5148. position:absolute;
  5149. align-self:center;
  5150. padding:0px 2px 0px 2px;
  5151. box-sizing:border-box;
  5152. }
  5153. #u99081_img.selected {
  5154. }
  5155. #u99081.selected {
  5156. }
  5157. #u99081_img.disabled {
  5158. }
  5159. #u99081.disabled {
  5160. }
  5161. #u99081_img.selectedDisabled {
  5162. }
  5163. #u99081.selectedDisabled {
  5164. }
  5165. #u99081_text {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:14px;
  5169. top:0px;
  5170. width:31px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u99081_input {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:0px;
  5181. height:0px;
  5182. opacity:0;
  5183. }
  5184. #u99082 label {
  5185. left:0px;
  5186. width:100%;
  5187. }
  5188. #u99082_img {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:12px;
  5194. height:12px;
  5195. }
  5196. #u99082 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:1018px;
  5200. top:346px;
  5201. width:47px;
  5202. height:16px;
  5203. display:flex;
  5204. }
  5205. #u99082 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:0px 2px 0px 2px;
  5209. box-sizing:border-box;
  5210. }
  5211. #u99082_img.selected {
  5212. }
  5213. #u99082.selected {
  5214. }
  5215. #u99082_img.disabled {
  5216. }
  5217. #u99082.disabled {
  5218. }
  5219. #u99082_img.selectedDisabled {
  5220. }
  5221. #u99082.selectedDisabled {
  5222. }
  5223. #u99082_text {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:14px;
  5227. top:0px;
  5228. width:31px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u99082_input {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:0px;
  5239. height:0px;
  5240. opacity:0;
  5241. }
  5242. #u99083 label {
  5243. left:0px;
  5244. width:100%;
  5245. }
  5246. #u99083_img {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:12px;
  5252. height:12px;
  5253. }
  5254. #u99083 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:1018px;
  5258. top:383px;
  5259. width:47px;
  5260. height:16px;
  5261. display:flex;
  5262. }
  5263. #u99083 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:0px 2px 0px 2px;
  5267. box-sizing:border-box;
  5268. }
  5269. #u99083_img.selected {
  5270. }
  5271. #u99083.selected {
  5272. }
  5273. #u99083_img.disabled {
  5274. }
  5275. #u99083.disabled {
  5276. }
  5277. #u99083_img.selectedDisabled {
  5278. }
  5279. #u99083.selectedDisabled {
  5280. }
  5281. #u99083_text {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:14px;
  5285. top:0px;
  5286. width:31px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u99083_input {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:0px;
  5297. height:0px;
  5298. opacity:0;
  5299. }
  5300. #u99084_img {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:80px;
  5306. height:30px;
  5307. }
  5308. #u99084 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:1620px;
  5312. top:358px;
  5313. width:80px;
  5314. height:30px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#FFFFFF;
  5321. }
  5322. #u99084 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 2px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u99084_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. }
  5334. #u99085_img {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:707px;
  5340. height:2px;
  5341. }
  5342. #u99085 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:1009px;
  5346. top:413px;
  5347. width:706px;
  5348. height:1px;
  5349. display:flex;
  5350. }
  5351. #u99085 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u99085_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. visibility:hidden;
  5363. }
  5364. #u99086_img {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:707px;
  5370. height:2px;
  5371. }
  5372. #u99086 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:1009px;
  5376. top:534px;
  5377. width:706px;
  5378. height:1px;
  5379. display:flex;
  5380. }
  5381. #u99086 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u99086_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u99087_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:707px;
  5400. height:2px;
  5401. }
  5402. #u99087 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1009px;
  5406. top:613px;
  5407. width:706px;
  5408. height:1px;
  5409. display:flex;
  5410. }
  5411. #u99087 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u99087_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u99088_img {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:707px;
  5430. height:2px;
  5431. }
  5432. #u99088 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:1009px;
  5436. top:813px;
  5437. width:706px;
  5438. height:1px;
  5439. display:flex;
  5440. }
  5441. #u99088 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 2px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u99088_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u99089 label {
  5455. left:0px;
  5456. width:100%;
  5457. }
  5458. #u99089_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:12px;
  5464. height:12px;
  5465. }
  5466. #u99089 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1018px;
  5470. top:432px;
  5471. width:47px;
  5472. height:16px;
  5473. display:flex;
  5474. }
  5475. #u99089 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:0px 2px 0px 2px;
  5479. box-sizing:border-box;
  5480. }
  5481. #u99089_img.selected {
  5482. }
  5483. #u99089.selected {
  5484. }
  5485. #u99089_img.disabled {
  5486. }
  5487. #u99089.disabled {
  5488. }
  5489. #u99089_img.selectedDisabled {
  5490. }
  5491. #u99089.selectedDisabled {
  5492. }
  5493. #u99089_text {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:14px;
  5497. top:0px;
  5498. width:31px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. visibility:hidden;
  5502. }
  5503. #u99089_input {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:0px;
  5509. height:0px;
  5510. opacity:0;
  5511. }
  5512. #u99090 label {
  5513. left:0px;
  5514. width:100%;
  5515. }
  5516. #u99090_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:12px;
  5522. height:12px;
  5523. }
  5524. #u99090 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:1018px;
  5528. top:470px;
  5529. width:47px;
  5530. height:16px;
  5531. display:flex;
  5532. }
  5533. #u99090 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:0px 2px 0px 2px;
  5537. box-sizing:border-box;
  5538. }
  5539. #u99090_img.selected {
  5540. }
  5541. #u99090.selected {
  5542. }
  5543. #u99090_img.disabled {
  5544. }
  5545. #u99090.disabled {
  5546. }
  5547. #u99090_img.selectedDisabled {
  5548. }
  5549. #u99090.selectedDisabled {
  5550. }
  5551. #u99090_text {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:14px;
  5555. top:0px;
  5556. width:31px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u99090_input {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:0px;
  5567. height:0px;
  5568. opacity:0;
  5569. }
  5570. #u99091 label {
  5571. left:0px;
  5572. width:100%;
  5573. }
  5574. #u99091_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:12px;
  5580. height:12px;
  5581. }
  5582. #u99091 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:1018px;
  5586. top:508px;
  5587. width:47px;
  5588. height:16px;
  5589. display:flex;
  5590. }
  5591. #u99091 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:0px 2px 0px 2px;
  5595. box-sizing:border-box;
  5596. }
  5597. #u99091_img.selected {
  5598. }
  5599. #u99091.selected {
  5600. }
  5601. #u99091_img.disabled {
  5602. }
  5603. #u99091.disabled {
  5604. }
  5605. #u99091_img.selectedDisabled {
  5606. }
  5607. #u99091.selectedDisabled {
  5608. }
  5609. #u99091_text {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:14px;
  5613. top:0px;
  5614. width:31px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u99091_input {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:0px;
  5625. height:0px;
  5626. opacity:0;
  5627. }
  5628. #u99092 label {
  5629. left:0px;
  5630. width:100%;
  5631. }
  5632. #u99092_img {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:12px;
  5638. height:12px;
  5639. }
  5640. #u99092 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:1018px;
  5644. top:546px;
  5645. width:47px;
  5646. height:16px;
  5647. display:flex;
  5648. }
  5649. #u99092 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:0px 2px 0px 2px;
  5653. box-sizing:border-box;
  5654. }
  5655. #u99092_img.selected {
  5656. }
  5657. #u99092.selected {
  5658. }
  5659. #u99092_img.disabled {
  5660. }
  5661. #u99092.disabled {
  5662. }
  5663. #u99092_img.selectedDisabled {
  5664. }
  5665. #u99092.selectedDisabled {
  5666. }
  5667. #u99092_text {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:14px;
  5671. top:0px;
  5672. width:31px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. visibility:hidden;
  5676. }
  5677. #u99092_input {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:0px;
  5683. height:0px;
  5684. opacity:0;
  5685. }
  5686. #u99093 label {
  5687. left:0px;
  5688. width:100%;
  5689. }
  5690. #u99093_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:12px;
  5696. height:12px;
  5697. }
  5698. #u99093 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:1018px;
  5702. top:585px;
  5703. width:47px;
  5704. height:16px;
  5705. display:flex;
  5706. }
  5707. #u99093 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:0px 2px 0px 2px;
  5711. box-sizing:border-box;
  5712. }
  5713. #u99093_img.selected {
  5714. }
  5715. #u99093.selected {
  5716. }
  5717. #u99093_img.disabled {
  5718. }
  5719. #u99093.disabled {
  5720. }
  5721. #u99093_img.selectedDisabled {
  5722. }
  5723. #u99093.selectedDisabled {
  5724. }
  5725. #u99093_text {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:14px;
  5729. top:0px;
  5730. width:31px;
  5731. word-wrap:break-word;
  5732. text-transform:none;
  5733. visibility:hidden;
  5734. }
  5735. #u99093_input {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:0px;
  5741. height:0px;
  5742. opacity:0;
  5743. }
  5744. #u99094 label {
  5745. left:0px;
  5746. width:100%;
  5747. }
  5748. #u99094_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:12px;
  5754. height:12px;
  5755. }
  5756. #u99094 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:1018px;
  5760. top:629px;
  5761. width:47px;
  5762. height:16px;
  5763. display:flex;
  5764. }
  5765. #u99094 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:0px 2px 0px 2px;
  5769. box-sizing:border-box;
  5770. }
  5771. #u99094_img.selected {
  5772. }
  5773. #u99094.selected {
  5774. }
  5775. #u99094_img.disabled {
  5776. }
  5777. #u99094.disabled {
  5778. }
  5779. #u99094_img.selectedDisabled {
  5780. }
  5781. #u99094.selectedDisabled {
  5782. }
  5783. #u99094_text {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:14px;
  5787. top:0px;
  5788. width:31px;
  5789. word-wrap:break-word;
  5790. text-transform:none;
  5791. visibility:hidden;
  5792. }
  5793. #u99094_input {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. opacity:0;
  5801. }
  5802. #u99095 label {
  5803. left:0px;
  5804. width:100%;
  5805. }
  5806. #u99095_img {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:12px;
  5812. height:12px;
  5813. }
  5814. #u99095 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:1018px;
  5818. top:669px;
  5819. width:47px;
  5820. height:16px;
  5821. display:flex;
  5822. }
  5823. #u99095 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:0px 2px 0px 2px;
  5827. box-sizing:border-box;
  5828. }
  5829. #u99095_img.selected {
  5830. }
  5831. #u99095.selected {
  5832. }
  5833. #u99095_img.disabled {
  5834. }
  5835. #u99095.disabled {
  5836. }
  5837. #u99095_img.selectedDisabled {
  5838. }
  5839. #u99095.selectedDisabled {
  5840. }
  5841. #u99095_text {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:14px;
  5845. top:0px;
  5846. width:31px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u99095_input {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:0px;
  5857. height:0px;
  5858. opacity:0;
  5859. }
  5860. #u99096 label {
  5861. left:0px;
  5862. width:100%;
  5863. }
  5864. #u99096_img {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:12px;
  5870. height:12px;
  5871. }
  5872. #u99096 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:1018px;
  5876. top:710px;
  5877. width:47px;
  5878. height:16px;
  5879. display:flex;
  5880. }
  5881. #u99096 .text {
  5882. position:absolute;
  5883. align-self:center;
  5884. padding:0px 2px 0px 2px;
  5885. box-sizing:border-box;
  5886. }
  5887. #u99096_img.selected {
  5888. }
  5889. #u99096.selected {
  5890. }
  5891. #u99096_img.disabled {
  5892. }
  5893. #u99096.disabled {
  5894. }
  5895. #u99096_img.selectedDisabled {
  5896. }
  5897. #u99096.selectedDisabled {
  5898. }
  5899. #u99096_text {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:14px;
  5903. top:0px;
  5904. width:31px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u99096_input {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:0px;
  5915. height:0px;
  5916. opacity:0;
  5917. }
  5918. #u99097 label {
  5919. left:0px;
  5920. width:100%;
  5921. }
  5922. #u99097_img {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:12px;
  5928. height:12px;
  5929. }
  5930. #u99097 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:1018px;
  5934. top:750px;
  5935. width:47px;
  5936. height:16px;
  5937. display:flex;
  5938. }
  5939. #u99097 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:0px 2px 0px 2px;
  5943. box-sizing:border-box;
  5944. }
  5945. #u99097_img.selected {
  5946. }
  5947. #u99097.selected {
  5948. }
  5949. #u99097_img.disabled {
  5950. }
  5951. #u99097.disabled {
  5952. }
  5953. #u99097_img.selectedDisabled {
  5954. }
  5955. #u99097.selectedDisabled {
  5956. }
  5957. #u99097_text {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:14px;
  5961. top:0px;
  5962. width:31px;
  5963. word-wrap:break-word;
  5964. text-transform:none;
  5965. visibility:hidden;
  5966. }
  5967. #u99097_input {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:0px;
  5973. height:0px;
  5974. opacity:0;
  5975. }
  5976. #u99098 label {
  5977. left:0px;
  5978. width:100%;
  5979. }
  5980. #u99098_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:12px;
  5986. height:12px;
  5987. }
  5988. #u99098 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:1018px;
  5992. top:790px;
  5993. width:47px;
  5994. height:16px;
  5995. display:flex;
  5996. }
  5997. #u99098 .text {
  5998. position:absolute;
  5999. align-self:center;
  6000. padding:0px 2px 0px 2px;
  6001. box-sizing:border-box;
  6002. }
  6003. #u99098_img.selected {
  6004. }
  6005. #u99098.selected {
  6006. }
  6007. #u99098_img.disabled {
  6008. }
  6009. #u99098.disabled {
  6010. }
  6011. #u99098_img.selectedDisabled {
  6012. }
  6013. #u99098.selectedDisabled {
  6014. }
  6015. #u99098_text {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:14px;
  6019. top:0px;
  6020. width:31px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u99098_input {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:0px;
  6031. height:0px;
  6032. opacity:0;
  6033. }
  6034. #u99099_img {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:80px;
  6040. height:30px;
  6041. }
  6042. #u99099 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1620px;
  6046. top:456px;
  6047. width:80px;
  6048. height:30px;
  6049. display:flex;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:14px;
  6054. color:#FFFFFF;
  6055. }
  6056. #u99099 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:2px 2px 2px 2px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u99099_text {
  6064. border-width:0px;
  6065. word-wrap:break-word;
  6066. text-transform:none;
  6067. }
  6068. #u99100_img {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:80px;
  6074. height:30px;
  6075. }
  6076. #u99100 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:1620px;
  6080. top:563px;
  6081. width:80px;
  6082. height:30px;
  6083. display:flex;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:14px;
  6088. color:#FFFFFF;
  6089. }
  6090. #u99100 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u99100_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. }
  6102. #u99101_img {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:80px;
  6108. height:30px;
  6109. }
  6110. #u99101 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:1620px;
  6114. top:686px;
  6115. width:80px;
  6116. height:30px;
  6117. display:flex;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. color:#FFFFFF;
  6123. }
  6124. #u99101 .text {
  6125. position:absolute;
  6126. align-self:center;
  6127. padding:2px 2px 2px 2px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u99101_text {
  6132. border-width:0px;
  6133. word-wrap:break-word;
  6134. text-transform:none;
  6135. }
  6136. #u99102 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:0px;
  6142. height:0px;
  6143. }
  6144. #u99103 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:0px;
  6150. height:0px;
  6151. }
  6152. #u99104_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:31px;
  6158. height:30px;
  6159. background:inherit;
  6160. background-color:rgba(255, 255, 255, 1);
  6161. box-sizing:border-box;
  6162. border-width:1px;
  6163. border-style:solid;
  6164. border-color:rgba(228, 228, 228, 1);
  6165. border-radius:4px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'Microsoft YaHei', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. }
  6174. #u99104 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:1599px;
  6178. top:830px;
  6179. width:31px;
  6180. height:30px;
  6181. display:flex;
  6182. font-family:'Microsoft YaHei', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:12px;
  6186. }
  6187. #u99104 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:2px 2px 2px 2px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u99104_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. visibility:hidden;
  6199. }
  6200. #u99105_img {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:8px;
  6206. height:14px;
  6207. }
  6208. #u99105 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:1611px;
  6212. top:838px;
  6213. width:8px;
  6214. height:14px;
  6215. display:flex;
  6216. font-family:'Microsoft YaHei', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. }
  6221. #u99105 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:2px 2px 2px 2px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u99105_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. visibility:hidden;
  6233. }
  6234. #u99106 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:0px;
  6240. height:0px;
  6241. }
  6242. #u99107_div {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:31px;
  6248. height:30px;
  6249. background:inherit;
  6250. background-color:rgba(255, 255, 255, 1);
  6251. box-sizing:border-box;
  6252. border-width:1px;
  6253. border-style:solid;
  6254. border-color:rgba(228, 228, 228, 1);
  6255. border-radius:4px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'Microsoft YaHei', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. }
  6264. #u99107 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1684px;
  6268. top:830px;
  6269. width:31px;
  6270. height:30px;
  6271. display:flex;
  6272. font-family:'Microsoft YaHei', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. }
  6277. #u99107 .text {
  6278. position:absolute;
  6279. align-self:center;
  6280. padding:2px 2px 2px 2px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u99107_text {
  6285. border-width:0px;
  6286. word-wrap:break-word;
  6287. text-transform:none;
  6288. visibility:hidden;
  6289. }
  6290. #u99108_img {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:8px;
  6296. height:14px;
  6297. }
  6298. #u99108 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:1697px;
  6302. top:838px;
  6303. width:8px;
  6304. height:14px;
  6305. display:flex;
  6306. font-family:'Microsoft YaHei', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:12px;
  6310. }
  6311. #u99108 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:2px 2px 2px 2px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u99108_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. visibility:hidden;
  6323. }
  6324. #u99109_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:32px;
  6330. height:21px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 1);
  6333. border:none;
  6334. border-radius:15px;
  6335. -moz-box-shadow:none;
  6336. -webkit-box-shadow:none;
  6337. box-shadow:none;
  6338. font-family:'Microsoft YaHei', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. color:#1E1E1E;
  6343. }
  6344. #u99109 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:1640px;
  6348. top:835px;
  6349. width:32px;
  6350. height:21px;
  6351. display:flex;
  6352. font-family:'Microsoft YaHei', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:14px;
  6356. color:#1E1E1E;
  6357. }
  6358. #u99109 .text {
  6359. position:absolute;
  6360. align-self:center;
  6361. padding:2px 2px 2px 2px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u99109_text {
  6366. border-width:0px;
  6367. white-space:nowrap;
  6368. text-transform:none;
  6369. }
  6370. #u99110 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:0px;
  6376. height:0px;
  6377. }
  6378. #u99111_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:800px;
  6384. height:60px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 1);
  6387. box-sizing:border-box;
  6388. border-width:1px;
  6389. border-style:solid;
  6390. border-color:rgba(242, 242, 242, 1);
  6391. border-radius:0px;
  6392. -moz-box-shadow:none;
  6393. -webkit-box-shadow:none;
  6394. box-shadow:none;
  6395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:14px;
  6399. color:#AAAAAA;
  6400. text-align:center;
  6401. line-height:30px;
  6402. }
  6403. #u99111 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:1806px;
  6407. top:46px;
  6408. width:800px;
  6409. height:60px;
  6410. display:flex;
  6411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:14px;
  6415. color:#AAAAAA;
  6416. text-align:center;
  6417. line-height:30px;
  6418. }
  6419. #u99111 .text {
  6420. position:absolute;
  6421. align-self:center;
  6422. padding:5px 10px 5px 10px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u99111_text {
  6427. border-width:0px;
  6428. word-wrap:break-word;
  6429. text-transform:none;
  6430. visibility:hidden;
  6431. }
  6432. #u99112_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:119px;
  6438. height:35px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 0);
  6441. border:none;
  6442. border-top:0px;
  6443. border-right:0px;
  6444. border-bottom:0px;
  6445. border-radius:0px;
  6446. border-top-left-radius:0px;
  6447. border-bottom-left-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6452. font-weight:500;
  6453. font-style:normal;
  6454. font-size:18px;
  6455. }
  6456. #u99112 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:1837px;
  6460. top:59px;
  6461. width:119px;
  6462. height:35px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6465. font-weight:500;
  6466. font-style:normal;
  6467. font-size:18px;
  6468. }
  6469. #u99112 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:5px 10px 5px 0px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u99112_text {
  6477. border-width:0px;
  6478. white-space:nowrap;
  6479. text-transform:none;
  6480. }
  6481. #u99113_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:800px;
  6487. height:1142px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 1);
  6490. box-sizing:border-box;
  6491. border-width:1px;
  6492. border-style:solid;
  6493. border-color:rgba(242, 242, 242, 1);
  6494. border-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:14px;
  6502. color:#AAAAAA;
  6503. text-align:center;
  6504. line-height:30px;
  6505. }
  6506. #u99113 {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:1806px;
  6510. top:106px;
  6511. width:800px;
  6512. height:1142px;
  6513. display:flex;
  6514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:14px;
  6518. color:#AAAAAA;
  6519. text-align:center;
  6520. line-height:30px;
  6521. }
  6522. #u99113 .text {
  6523. position:absolute;
  6524. align-self:center;
  6525. padding:5px 10px 5px 10px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u99113_text {
  6530. border-width:0px;
  6531. word-wrap:break-word;
  6532. text-transform:none;
  6533. visibility:hidden;
  6534. }
  6535. #u99114 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:0px;
  6541. height:0px;
  6542. }
  6543. #u99115_div {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:800px;
  6549. height:60px;
  6550. background:inherit;
  6551. background-color:rgba(255, 255, 255, 1);
  6552. box-sizing:border-box;
  6553. border-width:1px;
  6554. border-style:solid;
  6555. border-color:rgba(215, 215, 215, 1);
  6556. border-radius:0px;
  6557. -moz-box-shadow:none;
  6558. -webkit-box-shadow:none;
  6559. box-shadow:none;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:14px;
  6564. color:#AAAAAA;
  6565. text-align:center;
  6566. line-height:30px;
  6567. }
  6568. #u99115 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:1806px;
  6572. top:1187px;
  6573. width:800px;
  6574. height:60px;
  6575. display:flex;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:14px;
  6580. color:#AAAAAA;
  6581. text-align:center;
  6582. line-height:30px;
  6583. }
  6584. #u99115 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:5px 10px 5px 10px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u99115_text {
  6592. border-width:0px;
  6593. word-wrap:break-word;
  6594. text-transform:none;
  6595. visibility:hidden;
  6596. }
  6597. #u99116_img {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:80px;
  6603. height:30px;
  6604. }
  6605. #u99116 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:2486px;
  6609. top:1202px;
  6610. width:80px;
  6611. height:30px;
  6612. display:flex;
  6613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:14px;
  6617. color:#FFFFFF;
  6618. }
  6619. #u99116 .text {
  6620. position:absolute;
  6621. align-self:center;
  6622. padding:2px 2px 2px 2px;
  6623. box-sizing:border-box;
  6624. width:100%;
  6625. }
  6626. #u99116_text {
  6627. border-width:0px;
  6628. word-wrap:break-word;
  6629. text-transform:none;
  6630. }
  6631. #u99117_div {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:80px;
  6637. height:30px;
  6638. background:inherit;
  6639. background-color:rgba(255, 255, 255, 1);
  6640. box-sizing:border-box;
  6641. border-width:1px;
  6642. border-style:solid;
  6643. border-color:rgba(170, 170, 170, 1);
  6644. border-radius:4px;
  6645. -moz-box-shadow:none;
  6646. -webkit-box-shadow:none;
  6647. box-shadow:none;
  6648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. }
  6653. #u99117 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:2396px;
  6657. top:1202px;
  6658. width:80px;
  6659. height:30px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:14px;
  6665. }
  6666. #u99117 .text {
  6667. position:absolute;
  6668. align-self:center;
  6669. padding:2px 2px 2px 2px;
  6670. box-sizing:border-box;
  6671. width:100%;
  6672. }
  6673. #u99117_text {
  6674. border-width:0px;
  6675. word-wrap:break-word;
  6676. text-transform:none;
  6677. }
  6678. #u99118_div {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:40px;
  6684. height:40px;
  6685. background:inherit;
  6686. background-color:rgba(255, 255, 255, 0);
  6687. border:none;
  6688. border-top:0px;
  6689. border-right:0px;
  6690. border-bottom:0px;
  6691. border-radius:0px;
  6692. border-top-left-radius:0px;
  6693. border-bottom-left-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6698. font-weight:500;
  6699. font-style:normal;
  6700. font-size:24px;
  6701. text-align:center;
  6702. }
  6703. #u99118 {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:2566px;
  6707. top:46px;
  6708. width:40px;
  6709. height:40px;
  6710. display:flex;
  6711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6712. font-weight:500;
  6713. font-style:normal;
  6714. font-size:24px;
  6715. text-align:center;
  6716. }
  6717. #u99118 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:5px 10px 5px 0px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u99118_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. }
  6729. #u99119 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:0px;
  6735. height:0px;
  6736. }
  6737. #u99120_img {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:638px;
  6743. height:2px;
  6744. }
  6745. #u99120 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:1893px;
  6749. top:162px;
  6750. width:637px;
  6751. height:1px;
  6752. display:flex;
  6753. }
  6754. #u99120 .text {
  6755. position:absolute;
  6756. align-self:center;
  6757. padding:2px 2px 2px 2px;
  6758. box-sizing:border-box;
  6759. width:100%;
  6760. }
  6761. #u99120_text {
  6762. border-width:0px;
  6763. word-wrap:break-word;
  6764. text-transform:none;
  6765. visibility:hidden;
  6766. }
  6767. #u99121 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:0px;
  6773. height:0px;
  6774. }
  6775. #u99122_div {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:73px;
  6781. height:40px;
  6782. background:inherit;
  6783. background-color:rgba(255, 255, 255, 0);
  6784. border:none;
  6785. border-left:0px;
  6786. border-top:0px;
  6787. border-right:0px;
  6788. border-radius:0px;
  6789. border-bottom-right-radius:0px;
  6790. border-bottom-left-radius:0px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6795. font-weight:500;
  6796. font-style:normal;
  6797. font-size:18px;
  6798. }
  6799. #u99122 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1856px;
  6803. top:186px;
  6804. width:73px;
  6805. height:40px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6808. font-weight:500;
  6809. font-style:normal;
  6810. font-size:18px;
  6811. }
  6812. #u99122 .text {
  6813. position:absolute;
  6814. align-self:center;
  6815. padding:0px 0px 0px 0px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u99122_text {
  6820. border-width:0px;
  6821. white-space:nowrap;
  6822. text-transform:none;
  6823. }
  6824. #u99123_img {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:33px;
  6830. height:33px;
  6831. }
  6832. #u99123 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:1876px;
  6836. top:145px;
  6837. width:33px;
  6838. height:33px;
  6839. display:flex;
  6840. font-size:14px;
  6841. color:#FFFFFF;
  6842. }
  6843. #u99123 .text {
  6844. position:absolute;
  6845. align-self:center;
  6846. padding:2px 2px 2px 2px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u99123_text {
  6851. border-width:0px;
  6852. word-wrap:break-word;
  6853. text-transform:none;
  6854. }
  6855. #u99124 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:0px;
  6861. height:0px;
  6862. }
  6863. #u99125_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:73px;
  6869. height:40px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 0);
  6872. border:none;
  6873. border-left:0px;
  6874. border-top:0px;
  6875. border-right:0px;
  6876. border-radius:0px;
  6877. border-bottom-right-radius:0px;
  6878. border-bottom-left-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6883. font-weight:500;
  6884. font-style:normal;
  6885. font-size:18px;
  6886. }
  6887. #u99125 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:2175px;
  6891. top:186px;
  6892. width:73px;
  6893. height:40px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6896. font-weight:500;
  6897. font-style:normal;
  6898. font-size:18px;
  6899. }
  6900. #u99125 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:0px 0px 0px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u99125_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u99126_img {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:33px;
  6918. height:33px;
  6919. }
  6920. #u99126 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:2195px;
  6924. top:145px;
  6925. width:33px;
  6926. height:33px;
  6927. display:flex;
  6928. font-size:14px;
  6929. color:#FFFFFF;
  6930. }
  6931. #u99126 .text {
  6932. position:absolute;
  6933. align-self:center;
  6934. padding:2px 2px 2px 2px;
  6935. box-sizing:border-box;
  6936. width:100%;
  6937. }
  6938. #u99126_text {
  6939. border-width:0px;
  6940. word-wrap:break-word;
  6941. text-transform:none;
  6942. }
  6943. #u99127 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:0px;
  6949. height:0px;
  6950. }
  6951. #u99128_div {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:73px;
  6957. height:40px;
  6958. background:inherit;
  6959. background-color:rgba(255, 255, 255, 0);
  6960. border:none;
  6961. border-left:0px;
  6962. border-top:0px;
  6963. border-right:0px;
  6964. border-radius:0px;
  6965. border-bottom-right-radius:0px;
  6966. border-bottom-left-radius:0px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6971. font-weight:500;
  6972. font-style:normal;
  6973. font-size:18px;
  6974. }
  6975. #u99128 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:2493px;
  6979. top:186px;
  6980. width:73px;
  6981. height:40px;
  6982. display:flex;
  6983. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6984. font-weight:500;
  6985. font-style:normal;
  6986. font-size:18px;
  6987. }
  6988. #u99128 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:0px 0px 0px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u99128_text {
  6996. border-width:0px;
  6997. white-space:nowrap;
  6998. text-transform:none;
  6999. }
  7000. #u99129_img {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:33px;
  7006. height:33px;
  7007. }
  7008. #u99129 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:2513px;
  7012. top:145px;
  7013. width:33px;
  7014. height:33px;
  7015. display:flex;
  7016. font-size:14px;
  7017. }
  7018. #u99129 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u99129_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. }
  7030. #u99130 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:0px;
  7036. height:0px;
  7037. }
  7038. #u99131_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:426px;
  7044. height:30px;
  7045. background:inherit;
  7046. background-color:rgba(255, 255, 255, 0);
  7047. border:none;
  7048. border-top:0px;
  7049. border-right:0px;
  7050. border-bottom:0px;
  7051. border-radius:0px;
  7052. border-top-left-radius:0px;
  7053. border-bottom-left-radius:0px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. }
  7062. #u99131 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:1856px;
  7066. top:254px;
  7067. width:426px;
  7068. height:30px;
  7069. display:flex;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:14px;
  7074. }
  7075. #u99131 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:5px 10px 5px 0px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u99131_text {
  7083. border-width:0px;
  7084. white-space:nowrap;
  7085. text-transform:none;
  7086. }
  7087. #u99132_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:14px;
  7093. height:14px;
  7094. background:inherit;
  7095. background-color:rgba(0, 191, 191, 1);
  7096. border:none;
  7097. border-radius:0px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u99132 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:2053px;
  7106. top:262px;
  7107. width:14px;
  7108. height:14px;
  7109. display:flex;
  7110. }
  7111. #u99132 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u99132_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u99133_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:14px;
  7130. height:14px;
  7131. background:inherit;
  7132. background-color:rgba(215, 215, 215, 1);
  7133. border:none;
  7134. border-radius:0px;
  7135. -moz-box-shadow:none;
  7136. -webkit-box-shadow:none;
  7137. box-shadow:none;
  7138. }
  7139. #u99133 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:2157px;
  7143. top:262px;
  7144. width:14px;
  7145. height:14px;
  7146. display:flex;
  7147. }
  7148. #u99133 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u99133_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u99134 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:1856px;
  7165. top:294px;
  7166. width:710px;
  7167. height:520px;
  7168. }
  7169. #u99135_img {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:44px;
  7175. height:40px;
  7176. }
  7177. #u99135 {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:44px;
  7183. height:40px;
  7184. display:flex;
  7185. font-size:14px;
  7186. color:#FFFFFF;
  7187. }
  7188. #u99135 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 2px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u99135_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. visibility:hidden;
  7200. }
  7201. #u99136_img {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:111px;
  7207. height:40px;
  7208. }
  7209. #u99136 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:44px;
  7213. top:0px;
  7214. width:111px;
  7215. height:40px;
  7216. display:flex;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. color:#FFFFFF;
  7222. }
  7223. #u99136 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u99136_text {
  7231. border-width:0px;
  7232. word-wrap:break-word;
  7233. text-transform:none;
  7234. }
  7235. #u99137_img {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:111px;
  7241. height:40px;
  7242. }
  7243. #u99137 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:155px;
  7247. top:0px;
  7248. width:111px;
  7249. height:40px;
  7250. display:flex;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:14px;
  7255. color:#FFFFFF;
  7256. }
  7257. #u99137 .text {
  7258. position:absolute;
  7259. align-self:center;
  7260. padding:2px 2px 2px 2px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u99137_text {
  7265. border-width:0px;
  7266. word-wrap:break-word;
  7267. text-transform:none;
  7268. }
  7269. #u99138_img {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:111px;
  7275. height:40px;
  7276. }
  7277. #u99138 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:266px;
  7281. top:0px;
  7282. width:111px;
  7283. height:40px;
  7284. display:flex;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#FFFFFF;
  7290. }
  7291. #u99138 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:2px 2px 2px 2px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u99138_text {
  7299. border-width:0px;
  7300. word-wrap:break-word;
  7301. text-transform:none;
  7302. }
  7303. #u99139_img {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:111px;
  7309. height:40px;
  7310. }
  7311. #u99139 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:377px;
  7315. top:0px;
  7316. width:111px;
  7317. height:40px;
  7318. display:flex;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:14px;
  7323. color:#FFFFFF;
  7324. }
  7325. #u99139 .text {
  7326. position:absolute;
  7327. align-self:center;
  7328. padding:2px 2px 2px 2px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u99139_text {
  7333. border-width:0px;
  7334. word-wrap:break-word;
  7335. text-transform:none;
  7336. }
  7337. #u99140_img {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:111px;
  7343. height:40px;
  7344. }
  7345. #u99140 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:488px;
  7349. top:0px;
  7350. width:111px;
  7351. height:40px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#FFFFFF;
  7358. }
  7359. #u99140 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:2px 2px 2px 2px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u99140_text {
  7367. border-width:0px;
  7368. word-wrap:break-word;
  7369. text-transform:none;
  7370. }
  7371. #u99141_img {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:111px;
  7377. height:40px;
  7378. }
  7379. #u99141 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:599px;
  7383. top:0px;
  7384. width:111px;
  7385. height:40px;
  7386. display:flex;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. color:#FFFFFF;
  7392. }
  7393. #u99141 .text {
  7394. position:absolute;
  7395. align-self:center;
  7396. padding:2px 2px 2px 2px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u99141_text {
  7401. border-width:0px;
  7402. word-wrap:break-word;
  7403. text-transform:none;
  7404. }
  7405. #u99142_img {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:44px;
  7411. height:40px;
  7412. }
  7413. #u99142 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:40px;
  7418. width:44px;
  7419. height:40px;
  7420. display:flex;
  7421. font-size:14px;
  7422. }
  7423. #u99142 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 2px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u99142_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u99143_img {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:111px;
  7442. height:40px;
  7443. }
  7444. #u99143 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:44px;
  7448. top:40px;
  7449. width:111px;
  7450. height:40px;
  7451. display:flex;
  7452. font-size:14px;
  7453. }
  7454. #u99143 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u99143_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u99144_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:111px;
  7472. height:40px;
  7473. }
  7474. #u99144 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:155px;
  7478. top:40px;
  7479. width:111px;
  7480. height:40px;
  7481. display:flex;
  7482. font-size:14px;
  7483. }
  7484. #u99144 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 2px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u99144_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. visibility:hidden;
  7496. }
  7497. #u99145_img {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:111px;
  7503. height:40px;
  7504. }
  7505. #u99145 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:266px;
  7509. top:40px;
  7510. width:111px;
  7511. height:40px;
  7512. display:flex;
  7513. font-size:14px;
  7514. }
  7515. #u99145 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 2px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u99145_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u99146_img {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:111px;
  7534. height:40px;
  7535. }
  7536. #u99146 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:377px;
  7540. top:40px;
  7541. width:111px;
  7542. height:40px;
  7543. display:flex;
  7544. font-size:14px;
  7545. }
  7546. #u99146 .text {
  7547. position:absolute;
  7548. align-self:center;
  7549. padding:2px 2px 2px 2px;
  7550. box-sizing:border-box;
  7551. width:100%;
  7552. }
  7553. #u99146_text {
  7554. border-width:0px;
  7555. word-wrap:break-word;
  7556. text-transform:none;
  7557. visibility:hidden;
  7558. }
  7559. #u99147_img {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:0px;
  7564. width:111px;
  7565. height:40px;
  7566. }
  7567. #u99147 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:488px;
  7571. top:40px;
  7572. width:111px;
  7573. height:40px;
  7574. display:flex;
  7575. font-size:14px;
  7576. }
  7577. #u99147 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:2px 2px 2px 2px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u99147_text {
  7585. border-width:0px;
  7586. word-wrap:break-word;
  7587. text-transform:none;
  7588. visibility:hidden;
  7589. }
  7590. #u99148_img {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:111px;
  7596. height:40px;
  7597. }
  7598. #u99148 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:599px;
  7602. top:40px;
  7603. width:111px;
  7604. height:40px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:14px;
  7610. color:#FFFFFF;
  7611. }
  7612. #u99148 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:2px 2px 2px 2px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u99148_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. }
  7624. #u99149_img {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:44px;
  7630. height:40px;
  7631. }
  7632. #u99149 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:80px;
  7637. width:44px;
  7638. height:40px;
  7639. display:flex;
  7640. font-size:14px;
  7641. }
  7642. #u99149 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:2px 2px 2px 2px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u99149_text {
  7650. border-width:0px;
  7651. word-wrap:break-word;
  7652. text-transform:none;
  7653. visibility:hidden;
  7654. }
  7655. #u99150_img {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:111px;
  7661. height:40px;
  7662. }
  7663. #u99150 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:44px;
  7667. top:80px;
  7668. width:111px;
  7669. height:40px;
  7670. display:flex;
  7671. font-size:14px;
  7672. }
  7673. #u99150 .text {
  7674. position:absolute;
  7675. align-self:center;
  7676. padding:2px 2px 2px 2px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u99150_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. }
  7685. #u99151_img {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:111px;
  7691. height:40px;
  7692. }
  7693. #u99151 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:155px;
  7697. top:80px;
  7698. width:111px;
  7699. height:40px;
  7700. display:flex;
  7701. font-size:14px;
  7702. }
  7703. #u99151 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:2px 2px 2px 2px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u99151_text {
  7711. border-width:0px;
  7712. word-wrap:break-word;
  7713. text-transform:none;
  7714. visibility:hidden;
  7715. }
  7716. #u99152_img {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:111px;
  7722. height:40px;
  7723. }
  7724. #u99152 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:266px;
  7728. top:80px;
  7729. width:111px;
  7730. height:40px;
  7731. display:flex;
  7732. font-size:14px;
  7733. }
  7734. #u99152 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 2px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u99152_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u99153_img {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:111px;
  7753. height:40px;
  7754. }
  7755. #u99153 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:377px;
  7759. top:80px;
  7760. width:111px;
  7761. height:40px;
  7762. display:flex;
  7763. font-size:14px;
  7764. }
  7765. #u99153 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 2px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u99153_text {
  7773. border-width:0px;
  7774. word-wrap:break-word;
  7775. text-transform:none;
  7776. visibility:hidden;
  7777. }
  7778. #u99154_img {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:111px;
  7784. height:40px;
  7785. }
  7786. #u99154 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:488px;
  7790. top:80px;
  7791. width:111px;
  7792. height:40px;
  7793. display:flex;
  7794. font-size:14px;
  7795. }
  7796. #u99154 .text {
  7797. position:absolute;
  7798. align-self:center;
  7799. padding:2px 2px 2px 2px;
  7800. box-sizing:border-box;
  7801. width:100%;
  7802. }
  7803. #u99154_text {
  7804. border-width:0px;
  7805. word-wrap:break-word;
  7806. text-transform:none;
  7807. visibility:hidden;
  7808. }
  7809. #u99155_img {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:111px;
  7815. height:40px;
  7816. }
  7817. #u99155 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:599px;
  7821. top:80px;
  7822. width:111px;
  7823. height:40px;
  7824. display:flex;
  7825. font-size:14px;
  7826. }
  7827. #u99155 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:2px 2px 2px 2px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u99155_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u99156_img {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:44px;
  7846. height:40px;
  7847. }
  7848. #u99156 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:0px;
  7852. top:120px;
  7853. width:44px;
  7854. height:40px;
  7855. display:flex;
  7856. font-size:14px;
  7857. }
  7858. #u99156 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 2px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u99156_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. visibility:hidden;
  7870. }
  7871. #u99157_img {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:111px;
  7877. height:40px;
  7878. }
  7879. #u99157 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:44px;
  7883. top:120px;
  7884. width:111px;
  7885. height:40px;
  7886. display:flex;
  7887. font-size:14px;
  7888. }
  7889. #u99157 .text {
  7890. position:absolute;
  7891. align-self:center;
  7892. padding:2px 2px 2px 2px;
  7893. box-sizing:border-box;
  7894. width:100%;
  7895. }
  7896. #u99157_text {
  7897. border-width:0px;
  7898. word-wrap:break-word;
  7899. text-transform:none;
  7900. }
  7901. #u99158_img {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:111px;
  7907. height:40px;
  7908. }
  7909. #u99158 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:155px;
  7913. top:120px;
  7914. width:111px;
  7915. height:40px;
  7916. display:flex;
  7917. font-size:14px;
  7918. }
  7919. #u99158 .text {
  7920. position:absolute;
  7921. align-self:center;
  7922. padding:2px 2px 2px 2px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u99158_text {
  7927. border-width:0px;
  7928. word-wrap:break-word;
  7929. text-transform:none;
  7930. visibility:hidden;
  7931. }
  7932. #u99159_img {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:111px;
  7938. height:40px;
  7939. }
  7940. #u99159 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:266px;
  7944. top:120px;
  7945. width:111px;
  7946. height:40px;
  7947. display:flex;
  7948. font-size:14px;
  7949. }
  7950. #u99159 .text {
  7951. position:absolute;
  7952. align-self:center;
  7953. padding:2px 2px 2px 2px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u99159_text {
  7958. border-width:0px;
  7959. word-wrap:break-word;
  7960. text-transform:none;
  7961. visibility:hidden;
  7962. }
  7963. #u99160_img {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:111px;
  7969. height:40px;
  7970. }
  7971. #u99160 {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:377px;
  7975. top:120px;
  7976. width:111px;
  7977. height:40px;
  7978. display:flex;
  7979. font-size:14px;
  7980. }
  7981. #u99160 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 2px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u99160_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u99161_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:111px;
  8000. height:40px;
  8001. }
  8002. #u99161 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:488px;
  8006. top:120px;
  8007. width:111px;
  8008. height:40px;
  8009. display:flex;
  8010. font-size:14px;
  8011. }
  8012. #u99161 .text {
  8013. position:absolute;
  8014. align-self:center;
  8015. padding:2px 2px 2px 2px;
  8016. box-sizing:border-box;
  8017. width:100%;
  8018. }
  8019. #u99161_text {
  8020. border-width:0px;
  8021. word-wrap:break-word;
  8022. text-transform:none;
  8023. visibility:hidden;
  8024. }
  8025. #u99162_img {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:0px;
  8029. top:0px;
  8030. width:111px;
  8031. height:40px;
  8032. }
  8033. #u99162 {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:599px;
  8037. top:120px;
  8038. width:111px;
  8039. height:40px;
  8040. display:flex;
  8041. font-size:14px;
  8042. }
  8043. #u99162 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:2px 2px 2px 2px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u99162_text {
  8051. border-width:0px;
  8052. word-wrap:break-word;
  8053. text-transform:none;
  8054. visibility:hidden;
  8055. }
  8056. #u99163_img {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:44px;
  8062. height:40px;
  8063. }
  8064. #u99163 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:160px;
  8069. width:44px;
  8070. height:40px;
  8071. display:flex;
  8072. font-size:14px;
  8073. }
  8074. #u99163 .text {
  8075. position:absolute;
  8076. align-self:center;
  8077. padding:2px 2px 2px 2px;
  8078. box-sizing:border-box;
  8079. width:100%;
  8080. }
  8081. #u99163_text {
  8082. border-width:0px;
  8083. word-wrap:break-word;
  8084. text-transform:none;
  8085. visibility:hidden;
  8086. }
  8087. #u99164_img {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:111px;
  8093. height:40px;
  8094. }
  8095. #u99164 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:44px;
  8099. top:160px;
  8100. width:111px;
  8101. height:40px;
  8102. display:flex;
  8103. font-size:14px;
  8104. }
  8105. #u99164 .text {
  8106. position:absolute;
  8107. align-self:center;
  8108. padding:2px 2px 2px 2px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u99164_text {
  8113. border-width:0px;
  8114. word-wrap:break-word;
  8115. text-transform:none;
  8116. }
  8117. #u99165_img {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:111px;
  8123. height:40px;
  8124. }
  8125. #u99165 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:155px;
  8129. top:160px;
  8130. width:111px;
  8131. height:40px;
  8132. display:flex;
  8133. font-size:14px;
  8134. }
  8135. #u99165 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 2px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u99165_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. visibility:hidden;
  8147. }
  8148. #u99166_img {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:111px;
  8154. height:40px;
  8155. }
  8156. #u99166 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:266px;
  8160. top:160px;
  8161. width:111px;
  8162. height:40px;
  8163. display:flex;
  8164. font-size:14px;
  8165. }
  8166. #u99166 .text {
  8167. position:absolute;
  8168. align-self:center;
  8169. padding:2px 2px 2px 2px;
  8170. box-sizing:border-box;
  8171. width:100%;
  8172. }
  8173. #u99166_text {
  8174. border-width:0px;
  8175. word-wrap:break-word;
  8176. text-transform:none;
  8177. visibility:hidden;
  8178. }
  8179. #u99167_img {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:111px;
  8185. height:40px;
  8186. }
  8187. #u99167 {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:377px;
  8191. top:160px;
  8192. width:111px;
  8193. height:40px;
  8194. display:flex;
  8195. font-size:14px;
  8196. }
  8197. #u99167 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 2px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u99167_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. visibility:hidden;
  8209. }
  8210. #u99168_img {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:111px;
  8216. height:40px;
  8217. }
  8218. #u99168 {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:488px;
  8222. top:160px;
  8223. width:111px;
  8224. height:40px;
  8225. display:flex;
  8226. font-size:14px;
  8227. }
  8228. #u99168 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 2px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u99168_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u99169_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:111px;
  8247. height:40px;
  8248. }
  8249. #u99169 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:599px;
  8253. top:160px;
  8254. width:111px;
  8255. height:40px;
  8256. display:flex;
  8257. font-size:14px;
  8258. }
  8259. #u99169 .text {
  8260. position:absolute;
  8261. align-self:center;
  8262. padding:2px 2px 2px 2px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u99169_text {
  8267. border-width:0px;
  8268. word-wrap:break-word;
  8269. text-transform:none;
  8270. visibility:hidden;
  8271. }
  8272. #u99170_img {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:44px;
  8278. height:40px;
  8279. }
  8280. #u99170 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:0px;
  8284. top:200px;
  8285. width:44px;
  8286. height:40px;
  8287. display:flex;
  8288. font-size:14px;
  8289. }
  8290. #u99170 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 2px 2px 2px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u99170_text {
  8298. border-width:0px;
  8299. word-wrap:break-word;
  8300. text-transform:none;
  8301. visibility:hidden;
  8302. }
  8303. #u99171_img {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:111px;
  8309. height:40px;
  8310. }
  8311. #u99171 {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:44px;
  8315. top:200px;
  8316. width:111px;
  8317. height:40px;
  8318. display:flex;
  8319. font-size:14px;
  8320. }
  8321. #u99171 .text {
  8322. position:absolute;
  8323. align-self:center;
  8324. padding:2px 2px 2px 2px;
  8325. box-sizing:border-box;
  8326. width:100%;
  8327. }
  8328. #u99171_text {
  8329. border-width:0px;
  8330. word-wrap:break-word;
  8331. text-transform:none;
  8332. }
  8333. #u99172_img {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:111px;
  8339. height:40px;
  8340. }
  8341. #u99172 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:155px;
  8345. top:200px;
  8346. width:111px;
  8347. height:40px;
  8348. display:flex;
  8349. font-size:14px;
  8350. }
  8351. #u99172 .text {
  8352. position:absolute;
  8353. align-self:center;
  8354. padding:2px 2px 2px 2px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u99172_text {
  8359. border-width:0px;
  8360. word-wrap:break-word;
  8361. text-transform:none;
  8362. visibility:hidden;
  8363. }
  8364. #u99173_img {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:111px;
  8370. height:40px;
  8371. }
  8372. #u99173 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:266px;
  8376. top:200px;
  8377. width:111px;
  8378. height:40px;
  8379. display:flex;
  8380. font-size:14px;
  8381. }
  8382. #u99173 .text {
  8383. position:absolute;
  8384. align-self:center;
  8385. padding:2px 2px 2px 2px;
  8386. box-sizing:border-box;
  8387. width:100%;
  8388. }
  8389. #u99173_text {
  8390. border-width:0px;
  8391. word-wrap:break-word;
  8392. text-transform:none;
  8393. visibility:hidden;
  8394. }
  8395. #u99174_img {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:0px;
  8399. top:0px;
  8400. width:111px;
  8401. height:40px;
  8402. }
  8403. #u99174 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:377px;
  8407. top:200px;
  8408. width:111px;
  8409. height:40px;
  8410. display:flex;
  8411. font-size:14px;
  8412. }
  8413. #u99174 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 2px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u99174_text {
  8421. border-width:0px;
  8422. word-wrap:break-word;
  8423. text-transform:none;
  8424. visibility:hidden;
  8425. }
  8426. #u99175_img {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:111px;
  8432. height:40px;
  8433. }
  8434. #u99175 {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:488px;
  8438. top:200px;
  8439. width:111px;
  8440. height:40px;
  8441. display:flex;
  8442. font-size:14px;
  8443. }
  8444. #u99175 .text {
  8445. position:absolute;
  8446. align-self:center;
  8447. padding:2px 2px 2px 2px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u99175_text {
  8452. border-width:0px;
  8453. word-wrap:break-word;
  8454. text-transform:none;
  8455. visibility:hidden;
  8456. }
  8457. #u99176_img {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:111px;
  8463. height:40px;
  8464. }
  8465. #u99176 {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:599px;
  8469. top:200px;
  8470. width:111px;
  8471. height:40px;
  8472. display:flex;
  8473. font-size:14px;
  8474. }
  8475. #u99176 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 2px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u99176_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. visibility:hidden;
  8487. }
  8488. #u99177_img {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:44px;
  8494. height:40px;
  8495. }
  8496. #u99177 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:240px;
  8501. width:44px;
  8502. height:40px;
  8503. display:flex;
  8504. font-size:14px;
  8505. }
  8506. #u99177 .text {
  8507. position:absolute;
  8508. align-self:center;
  8509. padding:2px 2px 2px 2px;
  8510. box-sizing:border-box;
  8511. width:100%;
  8512. }
  8513. #u99177_text {
  8514. border-width:0px;
  8515. word-wrap:break-word;
  8516. text-transform:none;
  8517. visibility:hidden;
  8518. }
  8519. #u99178_img {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:111px;
  8525. height:40px;
  8526. }
  8527. #u99178 {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:44px;
  8531. top:240px;
  8532. width:111px;
  8533. height:40px;
  8534. display:flex;
  8535. font-size:14px;
  8536. }
  8537. #u99178 .text {
  8538. position:absolute;
  8539. align-self:center;
  8540. padding:2px 2px 2px 2px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u99178_text {
  8545. border-width:0px;
  8546. word-wrap:break-word;
  8547. text-transform:none;
  8548. }
  8549. #u99179_img {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:111px;
  8555. height:40px;
  8556. }
  8557. #u99179 {
  8558. border-width:0px;
  8559. position:absolute;
  8560. left:155px;
  8561. top:240px;
  8562. width:111px;
  8563. height:40px;
  8564. display:flex;
  8565. font-size:14px;
  8566. }
  8567. #u99179 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 2px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u99179_text {
  8575. border-width:0px;
  8576. word-wrap:break-word;
  8577. text-transform:none;
  8578. visibility:hidden;
  8579. }
  8580. #u99180_img {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:111px;
  8586. height:40px;
  8587. }
  8588. #u99180 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:266px;
  8592. top:240px;
  8593. width:111px;
  8594. height:40px;
  8595. display:flex;
  8596. font-size:14px;
  8597. }
  8598. #u99180 .text {
  8599. position:absolute;
  8600. align-self:center;
  8601. padding:2px 2px 2px 2px;
  8602. box-sizing:border-box;
  8603. width:100%;
  8604. }
  8605. #u99180_text {
  8606. border-width:0px;
  8607. word-wrap:break-word;
  8608. text-transform:none;
  8609. visibility:hidden;
  8610. }
  8611. #u99181_img {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:111px;
  8617. height:40px;
  8618. }
  8619. #u99181 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:377px;
  8623. top:240px;
  8624. width:111px;
  8625. height:40px;
  8626. display:flex;
  8627. font-size:14px;
  8628. }
  8629. #u99181 .text {
  8630. position:absolute;
  8631. align-self:center;
  8632. padding:2px 2px 2px 2px;
  8633. box-sizing:border-box;
  8634. width:100%;
  8635. }
  8636. #u99181_text {
  8637. border-width:0px;
  8638. word-wrap:break-word;
  8639. text-transform:none;
  8640. visibility:hidden;
  8641. }
  8642. #u99182_img {
  8643. border-width:0px;
  8644. position:absolute;
  8645. left:0px;
  8646. top:0px;
  8647. width:111px;
  8648. height:40px;
  8649. }
  8650. #u99182 {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:488px;
  8654. top:240px;
  8655. width:111px;
  8656. height:40px;
  8657. display:flex;
  8658. font-size:14px;
  8659. }
  8660. #u99182 .text {
  8661. position:absolute;
  8662. align-self:center;
  8663. padding:2px 2px 2px 2px;
  8664. box-sizing:border-box;
  8665. width:100%;
  8666. }
  8667. #u99182_text {
  8668. border-width:0px;
  8669. word-wrap:break-word;
  8670. text-transform:none;
  8671. visibility:hidden;
  8672. }
  8673. #u99183_img {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:111px;
  8679. height:40px;
  8680. }
  8681. #u99183 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:599px;
  8685. top:240px;
  8686. width:111px;
  8687. height:40px;
  8688. display:flex;
  8689. font-size:14px;
  8690. }
  8691. #u99183 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:2px 2px 2px 2px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u99183_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. visibility:hidden;
  8703. }
  8704. #u99184_img {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:44px;
  8710. height:40px;
  8711. }
  8712. #u99184 {
  8713. border-width:0px;
  8714. position:absolute;
  8715. left:0px;
  8716. top:280px;
  8717. width:44px;
  8718. height:40px;
  8719. display:flex;
  8720. font-size:14px;
  8721. }
  8722. #u99184 .text {
  8723. position:absolute;
  8724. align-self:center;
  8725. padding:2px 2px 2px 2px;
  8726. box-sizing:border-box;
  8727. width:100%;
  8728. }
  8729. #u99184_text {
  8730. border-width:0px;
  8731. word-wrap:break-word;
  8732. text-transform:none;
  8733. visibility:hidden;
  8734. }
  8735. #u99185_img {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:111px;
  8741. height:40px;
  8742. }
  8743. #u99185 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:44px;
  8747. top:280px;
  8748. width:111px;
  8749. height:40px;
  8750. display:flex;
  8751. font-size:14px;
  8752. }
  8753. #u99185 .text {
  8754. position:absolute;
  8755. align-self:center;
  8756. padding:2px 2px 2px 2px;
  8757. box-sizing:border-box;
  8758. width:100%;
  8759. }
  8760. #u99185_text {
  8761. border-width:0px;
  8762. word-wrap:break-word;
  8763. text-transform:none;
  8764. }
  8765. #u99186_img {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:111px;
  8771. height:40px;
  8772. }
  8773. #u99186 {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:155px;
  8777. top:280px;
  8778. width:111px;
  8779. height:40px;
  8780. display:flex;
  8781. font-size:14px;
  8782. }
  8783. #u99186 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:2px 2px 2px 2px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u99186_text {
  8791. border-width:0px;
  8792. word-wrap:break-word;
  8793. text-transform:none;
  8794. visibility:hidden;
  8795. }
  8796. #u99187_img {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:111px;
  8802. height:40px;
  8803. }
  8804. #u99187 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:266px;
  8808. top:280px;
  8809. width:111px;
  8810. height:40px;
  8811. display:flex;
  8812. font-size:14px;
  8813. }
  8814. #u99187 .text {
  8815. position:absolute;
  8816. align-self:center;
  8817. padding:2px 2px 2px 2px;
  8818. box-sizing:border-box;
  8819. width:100%;
  8820. }
  8821. #u99187_text {
  8822. border-width:0px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. visibility:hidden;
  8826. }
  8827. #u99188_img {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:111px;
  8833. height:40px;
  8834. }
  8835. #u99188 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:377px;
  8839. top:280px;
  8840. width:111px;
  8841. height:40px;
  8842. display:flex;
  8843. font-size:14px;
  8844. }
  8845. #u99188 .text {
  8846. position:absolute;
  8847. align-self:center;
  8848. padding:2px 2px 2px 2px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u99188_text {
  8853. border-width:0px;
  8854. word-wrap:break-word;
  8855. text-transform:none;
  8856. visibility:hidden;
  8857. }
  8858. #u99189_img {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:111px;
  8864. height:40px;
  8865. }
  8866. #u99189 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:488px;
  8870. top:280px;
  8871. width:111px;
  8872. height:40px;
  8873. display:flex;
  8874. font-size:14px;
  8875. }
  8876. #u99189 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u99189_text {
  8884. border-width:0px;
  8885. word-wrap:break-word;
  8886. text-transform:none;
  8887. visibility:hidden;
  8888. }
  8889. #u99190_img {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:0px;
  8893. top:0px;
  8894. width:111px;
  8895. height:40px;
  8896. }
  8897. #u99190 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:599px;
  8901. top:280px;
  8902. width:111px;
  8903. height:40px;
  8904. display:flex;
  8905. font-size:14px;
  8906. }
  8907. #u99190 .text {
  8908. position:absolute;
  8909. align-self:center;
  8910. padding:2px 2px 2px 2px;
  8911. box-sizing:border-box;
  8912. width:100%;
  8913. }
  8914. #u99190_text {
  8915. border-width:0px;
  8916. word-wrap:break-word;
  8917. text-transform:none;
  8918. visibility:hidden;
  8919. }
  8920. #u99191_img {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:44px;
  8926. height:40px;
  8927. }
  8928. #u99191 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:0px;
  8932. top:320px;
  8933. width:44px;
  8934. height:40px;
  8935. display:flex;
  8936. font-size:14px;
  8937. }
  8938. #u99191 .text {
  8939. position:absolute;
  8940. align-self:center;
  8941. padding:2px 2px 2px 2px;
  8942. box-sizing:border-box;
  8943. width:100%;
  8944. }
  8945. #u99191_text {
  8946. border-width:0px;
  8947. word-wrap:break-word;
  8948. text-transform:none;
  8949. visibility:hidden;
  8950. }
  8951. #u99192_img {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:111px;
  8957. height:40px;
  8958. }
  8959. #u99192 {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:44px;
  8963. top:320px;
  8964. width:111px;
  8965. height:40px;
  8966. display:flex;
  8967. font-size:14px;
  8968. }
  8969. #u99192 .text {
  8970. position:absolute;
  8971. align-self:center;
  8972. padding:2px 2px 2px 2px;
  8973. box-sizing:border-box;
  8974. width:100%;
  8975. }
  8976. #u99192_text {
  8977. border-width:0px;
  8978. word-wrap:break-word;
  8979. text-transform:none;
  8980. }
  8981. #u99193_img {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:111px;
  8987. height:40px;
  8988. }
  8989. #u99193 {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:155px;
  8993. top:320px;
  8994. width:111px;
  8995. height:40px;
  8996. display:flex;
  8997. font-size:14px;
  8998. }
  8999. #u99193 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:2px 2px 2px 2px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u99193_text {
  9007. border-width:0px;
  9008. word-wrap:break-word;
  9009. text-transform:none;
  9010. visibility:hidden;
  9011. }
  9012. #u99194_img {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:0px;
  9016. top:0px;
  9017. width:111px;
  9018. height:40px;
  9019. }
  9020. #u99194 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:266px;
  9024. top:320px;
  9025. width:111px;
  9026. height:40px;
  9027. display:flex;
  9028. font-size:14px;
  9029. }
  9030. #u99194 .text {
  9031. position:absolute;
  9032. align-self:center;
  9033. padding:2px 2px 2px 2px;
  9034. box-sizing:border-box;
  9035. width:100%;
  9036. }
  9037. #u99194_text {
  9038. border-width:0px;
  9039. word-wrap:break-word;
  9040. text-transform:none;
  9041. visibility:hidden;
  9042. }
  9043. #u99195_img {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:111px;
  9049. height:40px;
  9050. }
  9051. #u99195 {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:377px;
  9055. top:320px;
  9056. width:111px;
  9057. height:40px;
  9058. display:flex;
  9059. font-size:14px;
  9060. }
  9061. #u99195 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 2px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u99195_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. visibility:hidden;
  9073. }
  9074. #u99196_img {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:111px;
  9080. height:40px;
  9081. }
  9082. #u99196 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:488px;
  9086. top:320px;
  9087. width:111px;
  9088. height:40px;
  9089. display:flex;
  9090. font-size:14px;
  9091. }
  9092. #u99196 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:2px 2px 2px 2px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u99196_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. visibility:hidden;
  9104. }
  9105. #u99197_img {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:111px;
  9111. height:40px;
  9112. }
  9113. #u99197 {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:599px;
  9117. top:320px;
  9118. width:111px;
  9119. height:40px;
  9120. display:flex;
  9121. font-size:14px;
  9122. }
  9123. #u99197 .text {
  9124. position:absolute;
  9125. align-self:center;
  9126. padding:2px 2px 2px 2px;
  9127. box-sizing:border-box;
  9128. width:100%;
  9129. }
  9130. #u99197_text {
  9131. border-width:0px;
  9132. word-wrap:break-word;
  9133. text-transform:none;
  9134. visibility:hidden;
  9135. }
  9136. #u99198_img {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:0px;
  9140. top:0px;
  9141. width:44px;
  9142. height:40px;
  9143. }
  9144. #u99198 {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:360px;
  9149. width:44px;
  9150. height:40px;
  9151. display:flex;
  9152. font-size:14px;
  9153. }
  9154. #u99198 .text {
  9155. position:absolute;
  9156. align-self:center;
  9157. padding:2px 2px 2px 2px;
  9158. box-sizing:border-box;
  9159. width:100%;
  9160. }
  9161. #u99198_text {
  9162. border-width:0px;
  9163. word-wrap:break-word;
  9164. text-transform:none;
  9165. visibility:hidden;
  9166. }
  9167. #u99199_img {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:111px;
  9173. height:40px;
  9174. }
  9175. #u99199 {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:44px;
  9179. top:360px;
  9180. width:111px;
  9181. height:40px;
  9182. display:flex;
  9183. font-size:14px;
  9184. }
  9185. #u99199 .text {
  9186. position:absolute;
  9187. align-self:center;
  9188. padding:2px 2px 2px 2px;
  9189. box-sizing:border-box;
  9190. width:100%;
  9191. }
  9192. #u99199_text {
  9193. border-width:0px;
  9194. word-wrap:break-word;
  9195. text-transform:none;
  9196. }
  9197. #u99200_img {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:0px;
  9201. top:0px;
  9202. width:111px;
  9203. height:40px;
  9204. }
  9205. #u99200 {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:155px;
  9209. top:360px;
  9210. width:111px;
  9211. height:40px;
  9212. display:flex;
  9213. font-size:14px;
  9214. }
  9215. #u99200 .text {
  9216. position:absolute;
  9217. align-self:center;
  9218. padding:2px 2px 2px 2px;
  9219. box-sizing:border-box;
  9220. width:100%;
  9221. }
  9222. #u99200_text {
  9223. border-width:0px;
  9224. word-wrap:break-word;
  9225. text-transform:none;
  9226. visibility:hidden;
  9227. }
  9228. #u99201_img {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:111px;
  9234. height:40px;
  9235. }
  9236. #u99201 {
  9237. border-width:0px;
  9238. position:absolute;
  9239. left:266px;
  9240. top:360px;
  9241. width:111px;
  9242. height:40px;
  9243. display:flex;
  9244. font-size:14px;
  9245. }
  9246. #u99201 .text {
  9247. position:absolute;
  9248. align-self:center;
  9249. padding:2px 2px 2px 2px;
  9250. box-sizing:border-box;
  9251. width:100%;
  9252. }
  9253. #u99201_text {
  9254. border-width:0px;
  9255. word-wrap:break-word;
  9256. text-transform:none;
  9257. visibility:hidden;
  9258. }
  9259. #u99202_img {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:111px;
  9265. height:40px;
  9266. }
  9267. #u99202 {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:377px;
  9271. top:360px;
  9272. width:111px;
  9273. height:40px;
  9274. display:flex;
  9275. font-size:14px;
  9276. }
  9277. #u99202 .text {
  9278. position:absolute;
  9279. align-self:center;
  9280. padding:2px 2px 2px 2px;
  9281. box-sizing:border-box;
  9282. width:100%;
  9283. }
  9284. #u99202_text {
  9285. border-width:0px;
  9286. word-wrap:break-word;
  9287. text-transform:none;
  9288. visibility:hidden;
  9289. }
  9290. #u99203_img {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:111px;
  9296. height:40px;
  9297. }
  9298. #u99203 {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:488px;
  9302. top:360px;
  9303. width:111px;
  9304. height:40px;
  9305. display:flex;
  9306. font-size:14px;
  9307. }
  9308. #u99203 .text {
  9309. position:absolute;
  9310. align-self:center;
  9311. padding:2px 2px 2px 2px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u99203_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. visibility:hidden;
  9320. }
  9321. #u99204_img {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:111px;
  9327. height:40px;
  9328. }
  9329. #u99204 {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:599px;
  9333. top:360px;
  9334. width:111px;
  9335. height:40px;
  9336. display:flex;
  9337. font-size:14px;
  9338. }
  9339. #u99204 .text {
  9340. position:absolute;
  9341. align-self:center;
  9342. padding:2px 2px 2px 2px;
  9343. box-sizing:border-box;
  9344. width:100%;
  9345. }
  9346. #u99204_text {
  9347. border-width:0px;
  9348. word-wrap:break-word;
  9349. text-transform:none;
  9350. visibility:hidden;
  9351. }
  9352. #u99205_img {
  9353. border-width:0px;
  9354. position:absolute;
  9355. left:0px;
  9356. top:0px;
  9357. width:44px;
  9358. height:40px;
  9359. }
  9360. #u99205 {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:400px;
  9365. width:44px;
  9366. height:40px;
  9367. display:flex;
  9368. font-size:14px;
  9369. }
  9370. #u99205 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 2px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u99205_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u99206_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:111px;
  9389. height:40px;
  9390. }
  9391. #u99206 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:44px;
  9395. top:400px;
  9396. width:111px;
  9397. height:40px;
  9398. display:flex;
  9399. font-size:14px;
  9400. }
  9401. #u99206 .text {
  9402. position:absolute;
  9403. align-self:center;
  9404. padding:2px 2px 2px 2px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u99206_text {
  9409. border-width:0px;
  9410. word-wrap:break-word;
  9411. text-transform:none;
  9412. }
  9413. #u99207_img {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:111px;
  9419. height:40px;
  9420. }
  9421. #u99207 {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:155px;
  9425. top:400px;
  9426. width:111px;
  9427. height:40px;
  9428. display:flex;
  9429. font-size:14px;
  9430. }
  9431. #u99207 .text {
  9432. position:absolute;
  9433. align-self:center;
  9434. padding:2px 2px 2px 2px;
  9435. box-sizing:border-box;
  9436. width:100%;
  9437. }
  9438. #u99207_text {
  9439. border-width:0px;
  9440. word-wrap:break-word;
  9441. text-transform:none;
  9442. visibility:hidden;
  9443. }
  9444. #u99208_img {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:111px;
  9450. height:40px;
  9451. }
  9452. #u99208 {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:266px;
  9456. top:400px;
  9457. width:111px;
  9458. height:40px;
  9459. display:flex;
  9460. font-size:14px;
  9461. }
  9462. #u99208 .text {
  9463. position:absolute;
  9464. align-self:center;
  9465. padding:2px 2px 2px 2px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u99208_text {
  9470. border-width:0px;
  9471. word-wrap:break-word;
  9472. text-transform:none;
  9473. visibility:hidden;
  9474. }
  9475. #u99209_img {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:0px;
  9479. top:0px;
  9480. width:111px;
  9481. height:40px;
  9482. }
  9483. #u99209 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:377px;
  9487. top:400px;
  9488. width:111px;
  9489. height:40px;
  9490. display:flex;
  9491. font-size:14px;
  9492. }
  9493. #u99209 .text {
  9494. position:absolute;
  9495. align-self:center;
  9496. padding:2px 2px 2px 2px;
  9497. box-sizing:border-box;
  9498. width:100%;
  9499. }
  9500. #u99209_text {
  9501. border-width:0px;
  9502. word-wrap:break-word;
  9503. text-transform:none;
  9504. visibility:hidden;
  9505. }
  9506. #u99210_img {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:0px;
  9510. top:0px;
  9511. width:111px;
  9512. height:40px;
  9513. }
  9514. #u99210 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:488px;
  9518. top:400px;
  9519. width:111px;
  9520. height:40px;
  9521. display:flex;
  9522. font-size:14px;
  9523. }
  9524. #u99210 .text {
  9525. position:absolute;
  9526. align-self:center;
  9527. padding:2px 2px 2px 2px;
  9528. box-sizing:border-box;
  9529. width:100%;
  9530. }
  9531. #u99210_text {
  9532. border-width:0px;
  9533. word-wrap:break-word;
  9534. text-transform:none;
  9535. visibility:hidden;
  9536. }
  9537. #u99211_img {
  9538. border-width:0px;
  9539. position:absolute;
  9540. left:0px;
  9541. top:0px;
  9542. width:111px;
  9543. height:40px;
  9544. }
  9545. #u99211 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:599px;
  9549. top:400px;
  9550. width:111px;
  9551. height:40px;
  9552. display:flex;
  9553. font-size:14px;
  9554. }
  9555. #u99211 .text {
  9556. position:absolute;
  9557. align-self:center;
  9558. padding:2px 2px 2px 2px;
  9559. box-sizing:border-box;
  9560. width:100%;
  9561. }
  9562. #u99211_text {
  9563. border-width:0px;
  9564. word-wrap:break-word;
  9565. text-transform:none;
  9566. visibility:hidden;
  9567. }
  9568. #u99212_img {
  9569. border-width:0px;
  9570. position:absolute;
  9571. left:0px;
  9572. top:0px;
  9573. width:44px;
  9574. height:40px;
  9575. }
  9576. #u99212 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:0px;
  9580. top:440px;
  9581. width:44px;
  9582. height:40px;
  9583. display:flex;
  9584. font-size:14px;
  9585. }
  9586. #u99212 .text {
  9587. position:absolute;
  9588. align-self:center;
  9589. padding:2px 2px 2px 2px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u99212_text {
  9594. border-width:0px;
  9595. word-wrap:break-word;
  9596. text-transform:none;
  9597. visibility:hidden;
  9598. }
  9599. #u99213_img {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:0px;
  9603. top:0px;
  9604. width:111px;
  9605. height:40px;
  9606. }
  9607. #u99213 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:44px;
  9611. top:440px;
  9612. width:111px;
  9613. height:40px;
  9614. display:flex;
  9615. font-size:14px;
  9616. }
  9617. #u99213 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:2px 2px 2px 2px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u99213_text {
  9625. border-width:0px;
  9626. word-wrap:break-word;
  9627. text-transform:none;
  9628. }
  9629. #u99214_img {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:111px;
  9635. height:40px;
  9636. }
  9637. #u99214 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:155px;
  9641. top:440px;
  9642. width:111px;
  9643. height:40px;
  9644. display:flex;
  9645. font-size:14px;
  9646. }
  9647. #u99214 .text {
  9648. position:absolute;
  9649. align-self:center;
  9650. padding:2px 2px 2px 2px;
  9651. box-sizing:border-box;
  9652. width:100%;
  9653. }
  9654. #u99214_text {
  9655. border-width:0px;
  9656. word-wrap:break-word;
  9657. text-transform:none;
  9658. visibility:hidden;
  9659. }
  9660. #u99215_img {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:111px;
  9666. height:40px;
  9667. }
  9668. #u99215 {
  9669. border-width:0px;
  9670. position:absolute;
  9671. left:266px;
  9672. top:440px;
  9673. width:111px;
  9674. height:40px;
  9675. display:flex;
  9676. font-size:14px;
  9677. }
  9678. #u99215 .text {
  9679. position:absolute;
  9680. align-self:center;
  9681. padding:2px 2px 2px 2px;
  9682. box-sizing:border-box;
  9683. width:100%;
  9684. }
  9685. #u99215_text {
  9686. border-width:0px;
  9687. word-wrap:break-word;
  9688. text-transform:none;
  9689. visibility:hidden;
  9690. }
  9691. #u99216_img {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:0px;
  9695. top:0px;
  9696. width:111px;
  9697. height:40px;
  9698. }
  9699. #u99216 {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:377px;
  9703. top:440px;
  9704. width:111px;
  9705. height:40px;
  9706. display:flex;
  9707. font-size:14px;
  9708. }
  9709. #u99216 .text {
  9710. position:absolute;
  9711. align-self:center;
  9712. padding:2px 2px 2px 2px;
  9713. box-sizing:border-box;
  9714. width:100%;
  9715. }
  9716. #u99216_text {
  9717. border-width:0px;
  9718. word-wrap:break-word;
  9719. text-transform:none;
  9720. visibility:hidden;
  9721. }
  9722. #u99217_img {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:0px;
  9726. top:0px;
  9727. width:111px;
  9728. height:40px;
  9729. }
  9730. #u99217 {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:488px;
  9734. top:440px;
  9735. width:111px;
  9736. height:40px;
  9737. display:flex;
  9738. font-size:14px;
  9739. }
  9740. #u99217 .text {
  9741. position:absolute;
  9742. align-self:center;
  9743. padding:2px 2px 2px 2px;
  9744. box-sizing:border-box;
  9745. width:100%;
  9746. }
  9747. #u99217_text {
  9748. border-width:0px;
  9749. word-wrap:break-word;
  9750. text-transform:none;
  9751. visibility:hidden;
  9752. }
  9753. #u99218_img {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:111px;
  9759. height:40px;
  9760. }
  9761. #u99218 {
  9762. border-width:0px;
  9763. position:absolute;
  9764. left:599px;
  9765. top:440px;
  9766. width:111px;
  9767. height:40px;
  9768. display:flex;
  9769. font-size:14px;
  9770. }
  9771. #u99218 .text {
  9772. position:absolute;
  9773. align-self:center;
  9774. padding:2px 2px 2px 2px;
  9775. box-sizing:border-box;
  9776. width:100%;
  9777. }
  9778. #u99218_text {
  9779. border-width:0px;
  9780. word-wrap:break-word;
  9781. text-transform:none;
  9782. visibility:hidden;
  9783. }
  9784. #u99219_img {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:0px;
  9788. top:0px;
  9789. width:44px;
  9790. height:40px;
  9791. }
  9792. #u99219 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:0px;
  9796. top:480px;
  9797. width:44px;
  9798. height:40px;
  9799. display:flex;
  9800. font-size:14px;
  9801. }
  9802. #u99219 .text {
  9803. position:absolute;
  9804. align-self:center;
  9805. padding:2px 2px 2px 2px;
  9806. box-sizing:border-box;
  9807. width:100%;
  9808. }
  9809. #u99219_text {
  9810. border-width:0px;
  9811. word-wrap:break-word;
  9812. text-transform:none;
  9813. visibility:hidden;
  9814. }
  9815. #u99220_img {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:0px;
  9819. top:0px;
  9820. width:111px;
  9821. height:40px;
  9822. }
  9823. #u99220 {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:44px;
  9827. top:480px;
  9828. width:111px;
  9829. height:40px;
  9830. display:flex;
  9831. font-size:14px;
  9832. }
  9833. #u99220 .text {
  9834. position:absolute;
  9835. align-self:center;
  9836. padding:2px 2px 2px 2px;
  9837. box-sizing:border-box;
  9838. width:100%;
  9839. }
  9840. #u99220_text {
  9841. border-width:0px;
  9842. word-wrap:break-word;
  9843. text-transform:none;
  9844. }
  9845. #u99221_img {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:0px;
  9849. top:0px;
  9850. width:111px;
  9851. height:40px;
  9852. }
  9853. #u99221 {
  9854. border-width:0px;
  9855. position:absolute;
  9856. left:155px;
  9857. top:480px;
  9858. width:111px;
  9859. height:40px;
  9860. display:flex;
  9861. font-size:14px;
  9862. }
  9863. #u99221 .text {
  9864. position:absolute;
  9865. align-self:center;
  9866. padding:2px 2px 2px 2px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u99221_text {
  9871. border-width:0px;
  9872. word-wrap:break-word;
  9873. text-transform:none;
  9874. visibility:hidden;
  9875. }
  9876. #u99222_img {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:111px;
  9882. height:40px;
  9883. }
  9884. #u99222 {
  9885. border-width:0px;
  9886. position:absolute;
  9887. left:266px;
  9888. top:480px;
  9889. width:111px;
  9890. height:40px;
  9891. display:flex;
  9892. font-size:14px;
  9893. }
  9894. #u99222 .text {
  9895. position:absolute;
  9896. align-self:center;
  9897. padding:2px 2px 2px 2px;
  9898. box-sizing:border-box;
  9899. width:100%;
  9900. }
  9901. #u99222_text {
  9902. border-width:0px;
  9903. word-wrap:break-word;
  9904. text-transform:none;
  9905. visibility:hidden;
  9906. }
  9907. #u99223_img {
  9908. border-width:0px;
  9909. position:absolute;
  9910. left:0px;
  9911. top:0px;
  9912. width:111px;
  9913. height:40px;
  9914. }
  9915. #u99223 {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:377px;
  9919. top:480px;
  9920. width:111px;
  9921. height:40px;
  9922. display:flex;
  9923. font-size:14px;
  9924. }
  9925. #u99223 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 2px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u99223_text {
  9933. border-width:0px;
  9934. word-wrap:break-word;
  9935. text-transform:none;
  9936. visibility:hidden;
  9937. }
  9938. #u99224_img {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:111px;
  9944. height:40px;
  9945. }
  9946. #u99224 {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:488px;
  9950. top:480px;
  9951. width:111px;
  9952. height:40px;
  9953. display:flex;
  9954. font-size:14px;
  9955. }
  9956. #u99224 .text {
  9957. position:absolute;
  9958. align-self:center;
  9959. padding:2px 2px 2px 2px;
  9960. box-sizing:border-box;
  9961. width:100%;
  9962. }
  9963. #u99224_text {
  9964. border-width:0px;
  9965. word-wrap:break-word;
  9966. text-transform:none;
  9967. visibility:hidden;
  9968. }
  9969. #u99225_img {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:111px;
  9975. height:40px;
  9976. }
  9977. #u99225 {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:599px;
  9981. top:480px;
  9982. width:111px;
  9983. height:40px;
  9984. display:flex;
  9985. font-size:14px;
  9986. }
  9987. #u99225 .text {
  9988. position:absolute;
  9989. align-self:center;
  9990. padding:2px 2px 2px 2px;
  9991. box-sizing:border-box;
  9992. width:100%;
  9993. }
  9994. #u99225_text {
  9995. border-width:0px;
  9996. word-wrap:break-word;
  9997. text-transform:none;
  9998. visibility:hidden;
  9999. }
  10000. #u99226 label {
  10001. left:0px;
  10002. width:100%;
  10003. }
  10004. #u99226_img {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:12px;
  10010. height:12px;
  10011. }
  10012. #u99226 {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:1869px;
  10016. top:308px;
  10017. width:47px;
  10018. height:16px;
  10019. display:flex;
  10020. }
  10021. #u99226 .text {
  10022. position:absolute;
  10023. align-self:center;
  10024. padding:0px 2px 0px 2px;
  10025. box-sizing:border-box;
  10026. }
  10027. #u99226_img.selected {
  10028. }
  10029. #u99226.selected {
  10030. }
  10031. #u99226_img.disabled {
  10032. }
  10033. #u99226.disabled {
  10034. }
  10035. #u99226_img.selectedDisabled {
  10036. }
  10037. #u99226.selectedDisabled {
  10038. }
  10039. #u99226_text {
  10040. border-width:0px;
  10041. position:absolute;
  10042. left:14px;
  10043. top:0px;
  10044. width:31px;
  10045. word-wrap:break-word;
  10046. text-transform:none;
  10047. visibility:hidden;
  10048. }
  10049. #u99226_input {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:0px;
  10055. height:0px;
  10056. opacity:0;
  10057. }
  10058. #u99227 label {
  10059. left:0px;
  10060. width:100%;
  10061. }
  10062. #u99227_img {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:12px;
  10068. height:12px;
  10069. }
  10070. #u99227 {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:1869px;
  10074. top:346px;
  10075. width:47px;
  10076. height:16px;
  10077. display:flex;
  10078. }
  10079. #u99227 .text {
  10080. position:absolute;
  10081. align-self:center;
  10082. padding:0px 2px 0px 2px;
  10083. box-sizing:border-box;
  10084. }
  10085. #u99227_img.selected {
  10086. }
  10087. #u99227.selected {
  10088. }
  10089. #u99227_img.disabled {
  10090. }
  10091. #u99227.disabled {
  10092. }
  10093. #u99227_img.selectedDisabled {
  10094. }
  10095. #u99227.selectedDisabled {
  10096. }
  10097. #u99227_text {
  10098. border-width:0px;
  10099. position:absolute;
  10100. left:14px;
  10101. top:0px;
  10102. width:31px;
  10103. word-wrap:break-word;
  10104. text-transform:none;
  10105. visibility:hidden;
  10106. }
  10107. #u99227_input {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:0px;
  10111. top:0px;
  10112. width:0px;
  10113. height:0px;
  10114. opacity:0;
  10115. }
  10116. #u99228 label {
  10117. left:0px;
  10118. width:100%;
  10119. }
  10120. #u99228_img {
  10121. border-width:0px;
  10122. position:absolute;
  10123. left:0px;
  10124. top:0px;
  10125. width:12px;
  10126. height:12px;
  10127. }
  10128. #u99228 {
  10129. border-width:0px;
  10130. position:absolute;
  10131. left:1869px;
  10132. top:383px;
  10133. width:47px;
  10134. height:16px;
  10135. display:flex;
  10136. }
  10137. #u99228 .text {
  10138. position:absolute;
  10139. align-self:center;
  10140. padding:0px 2px 0px 2px;
  10141. box-sizing:border-box;
  10142. }
  10143. #u99228_img.selected {
  10144. }
  10145. #u99228.selected {
  10146. }
  10147. #u99228_img.disabled {
  10148. }
  10149. #u99228.disabled {
  10150. }
  10151. #u99228_img.selectedDisabled {
  10152. }
  10153. #u99228.selectedDisabled {
  10154. }
  10155. #u99228_text {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:14px;
  10159. top:0px;
  10160. width:31px;
  10161. word-wrap:break-word;
  10162. text-transform:none;
  10163. visibility:hidden;
  10164. }
  10165. #u99228_input {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:0px;
  10171. height:0px;
  10172. opacity:0;
  10173. }
  10174. #u99229_img {
  10175. border-width:0px;
  10176. position:absolute;
  10177. left:0px;
  10178. top:0px;
  10179. width:80px;
  10180. height:30px;
  10181. }
  10182. #u99229 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:2471px;
  10186. top:358px;
  10187. width:80px;
  10188. height:30px;
  10189. display:flex;
  10190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10191. font-weight:400;
  10192. font-style:normal;
  10193. font-size:14px;
  10194. color:#FFFFFF;
  10195. }
  10196. #u99229 .text {
  10197. position:absolute;
  10198. align-self:center;
  10199. padding:2px 2px 2px 2px;
  10200. box-sizing:border-box;
  10201. width:100%;
  10202. }
  10203. #u99229_text {
  10204. border-width:0px;
  10205. word-wrap:break-word;
  10206. text-transform:none;
  10207. }
  10208. #u99230_img {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:0px;
  10212. top:0px;
  10213. width:707px;
  10214. height:2px;
  10215. }
  10216. #u99230 {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:1860px;
  10220. top:413px;
  10221. width:706px;
  10222. height:1px;
  10223. display:flex;
  10224. }
  10225. #u99230 .text {
  10226. position:absolute;
  10227. align-self:center;
  10228. padding:2px 2px 2px 2px;
  10229. box-sizing:border-box;
  10230. width:100%;
  10231. }
  10232. #u99230_text {
  10233. border-width:0px;
  10234. word-wrap:break-word;
  10235. text-transform:none;
  10236. visibility:hidden;
  10237. }
  10238. #u99231_img {
  10239. border-width:0px;
  10240. position:absolute;
  10241. left:0px;
  10242. top:0px;
  10243. width:707px;
  10244. height:2px;
  10245. }
  10246. #u99231 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:1860px;
  10250. top:534px;
  10251. width:706px;
  10252. height:1px;
  10253. display:flex;
  10254. }
  10255. #u99231 .text {
  10256. position:absolute;
  10257. align-self:center;
  10258. padding:2px 2px 2px 2px;
  10259. box-sizing:border-box;
  10260. width:100%;
  10261. }
  10262. #u99231_text {
  10263. border-width:0px;
  10264. word-wrap:break-word;
  10265. text-transform:none;
  10266. visibility:hidden;
  10267. }
  10268. #u99232_img {
  10269. border-width:0px;
  10270. position:absolute;
  10271. left:0px;
  10272. top:0px;
  10273. width:707px;
  10274. height:2px;
  10275. }
  10276. #u99232 {
  10277. border-width:0px;
  10278. position:absolute;
  10279. left:1860px;
  10280. top:613px;
  10281. width:706px;
  10282. height:1px;
  10283. display:flex;
  10284. }
  10285. #u99232 .text {
  10286. position:absolute;
  10287. align-self:center;
  10288. padding:2px 2px 2px 2px;
  10289. box-sizing:border-box;
  10290. width:100%;
  10291. }
  10292. #u99232_text {
  10293. border-width:0px;
  10294. word-wrap:break-word;
  10295. text-transform:none;
  10296. visibility:hidden;
  10297. }
  10298. #u99233_img {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:707px;
  10304. height:2px;
  10305. }
  10306. #u99233 {
  10307. border-width:0px;
  10308. position:absolute;
  10309. left:1860px;
  10310. top:813px;
  10311. width:706px;
  10312. height:1px;
  10313. display:flex;
  10314. }
  10315. #u99233 .text {
  10316. position:absolute;
  10317. align-self:center;
  10318. padding:2px 2px 2px 2px;
  10319. box-sizing:border-box;
  10320. width:100%;
  10321. }
  10322. #u99233_text {
  10323. border-width:0px;
  10324. word-wrap:break-word;
  10325. text-transform:none;
  10326. visibility:hidden;
  10327. }
  10328. #u99234 label {
  10329. left:0px;
  10330. width:100%;
  10331. }
  10332. #u99234_img {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:0px;
  10336. top:0px;
  10337. width:12px;
  10338. height:12px;
  10339. }
  10340. #u99234 {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:1869px;
  10344. top:432px;
  10345. width:47px;
  10346. height:16px;
  10347. display:flex;
  10348. }
  10349. #u99234 .text {
  10350. position:absolute;
  10351. align-self:center;
  10352. padding:0px 2px 0px 2px;
  10353. box-sizing:border-box;
  10354. }
  10355. #u99234_img.selected {
  10356. }
  10357. #u99234.selected {
  10358. }
  10359. #u99234_img.disabled {
  10360. }
  10361. #u99234.disabled {
  10362. }
  10363. #u99234_img.selectedDisabled {
  10364. }
  10365. #u99234.selectedDisabled {
  10366. }
  10367. #u99234_text {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:14px;
  10371. top:0px;
  10372. width:31px;
  10373. word-wrap:break-word;
  10374. text-transform:none;
  10375. visibility:hidden;
  10376. }
  10377. #u99234_input {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:0px;
  10381. top:0px;
  10382. width:0px;
  10383. height:0px;
  10384. opacity:0;
  10385. }
  10386. #u99235 label {
  10387. left:0px;
  10388. width:100%;
  10389. }
  10390. #u99235_img {
  10391. border-width:0px;
  10392. position:absolute;
  10393. left:0px;
  10394. top:0px;
  10395. width:12px;
  10396. height:12px;
  10397. }
  10398. #u99235 {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:1869px;
  10402. top:470px;
  10403. width:47px;
  10404. height:16px;
  10405. display:flex;
  10406. }
  10407. #u99235 .text {
  10408. position:absolute;
  10409. align-self:center;
  10410. padding:0px 2px 0px 2px;
  10411. box-sizing:border-box;
  10412. }
  10413. #u99235_img.selected {
  10414. }
  10415. #u99235.selected {
  10416. }
  10417. #u99235_img.disabled {
  10418. }
  10419. #u99235.disabled {
  10420. }
  10421. #u99235_img.selectedDisabled {
  10422. }
  10423. #u99235.selectedDisabled {
  10424. }
  10425. #u99235_text {
  10426. border-width:0px;
  10427. position:absolute;
  10428. left:14px;
  10429. top:0px;
  10430. width:31px;
  10431. word-wrap:break-word;
  10432. text-transform:none;
  10433. visibility:hidden;
  10434. }
  10435. #u99235_input {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:0px;
  10439. top:0px;
  10440. width:0px;
  10441. height:0px;
  10442. opacity:0;
  10443. }
  10444. #u99236 label {
  10445. left:0px;
  10446. width:100%;
  10447. }
  10448. #u99236_img {
  10449. border-width:0px;
  10450. position:absolute;
  10451. left:0px;
  10452. top:0px;
  10453. width:12px;
  10454. height:12px;
  10455. }
  10456. #u99236 {
  10457. border-width:0px;
  10458. position:absolute;
  10459. left:1869px;
  10460. top:508px;
  10461. width:47px;
  10462. height:16px;
  10463. display:flex;
  10464. }
  10465. #u99236 .text {
  10466. position:absolute;
  10467. align-self:center;
  10468. padding:0px 2px 0px 2px;
  10469. box-sizing:border-box;
  10470. }
  10471. #u99236_img.selected {
  10472. }
  10473. #u99236.selected {
  10474. }
  10475. #u99236_img.disabled {
  10476. }
  10477. #u99236.disabled {
  10478. }
  10479. #u99236_img.selectedDisabled {
  10480. }
  10481. #u99236.selectedDisabled {
  10482. }
  10483. #u99236_text {
  10484. border-width:0px;
  10485. position:absolute;
  10486. left:14px;
  10487. top:0px;
  10488. width:31px;
  10489. word-wrap:break-word;
  10490. text-transform:none;
  10491. visibility:hidden;
  10492. }
  10493. #u99236_input {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:0px;
  10497. top:0px;
  10498. width:0px;
  10499. height:0px;
  10500. opacity:0;
  10501. }
  10502. #u99237 label {
  10503. left:0px;
  10504. width:100%;
  10505. }
  10506. #u99237_img {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:0px;
  10510. top:0px;
  10511. width:12px;
  10512. height:12px;
  10513. }
  10514. #u99237 {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:1869px;
  10518. top:546px;
  10519. width:47px;
  10520. height:16px;
  10521. display:flex;
  10522. }
  10523. #u99237 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:0px 2px 0px 2px;
  10527. box-sizing:border-box;
  10528. }
  10529. #u99237_img.selected {
  10530. }
  10531. #u99237.selected {
  10532. }
  10533. #u99237_img.disabled {
  10534. }
  10535. #u99237.disabled {
  10536. }
  10537. #u99237_img.selectedDisabled {
  10538. }
  10539. #u99237.selectedDisabled {
  10540. }
  10541. #u99237_text {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:14px;
  10545. top:0px;
  10546. width:31px;
  10547. word-wrap:break-word;
  10548. text-transform:none;
  10549. visibility:hidden;
  10550. }
  10551. #u99237_input {
  10552. border-width:0px;
  10553. position:absolute;
  10554. left:0px;
  10555. top:0px;
  10556. width:0px;
  10557. height:0px;
  10558. opacity:0;
  10559. }
  10560. #u99238 label {
  10561. left:0px;
  10562. width:100%;
  10563. }
  10564. #u99238_img {
  10565. border-width:0px;
  10566. position:absolute;
  10567. left:0px;
  10568. top:0px;
  10569. width:12px;
  10570. height:12px;
  10571. }
  10572. #u99238 {
  10573. border-width:0px;
  10574. position:absolute;
  10575. left:1869px;
  10576. top:585px;
  10577. width:47px;
  10578. height:16px;
  10579. display:flex;
  10580. }
  10581. #u99238 .text {
  10582. position:absolute;
  10583. align-self:center;
  10584. padding:0px 2px 0px 2px;
  10585. box-sizing:border-box;
  10586. }
  10587. #u99238_img.selected {
  10588. }
  10589. #u99238.selected {
  10590. }
  10591. #u99238_img.disabled {
  10592. }
  10593. #u99238.disabled {
  10594. }
  10595. #u99238_img.selectedDisabled {
  10596. }
  10597. #u99238.selectedDisabled {
  10598. }
  10599. #u99238_text {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:14px;
  10603. top:0px;
  10604. width:31px;
  10605. word-wrap:break-word;
  10606. text-transform:none;
  10607. visibility:hidden;
  10608. }
  10609. #u99238_input {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:0px;
  10615. height:0px;
  10616. opacity:0;
  10617. }
  10618. #u99239 label {
  10619. left:0px;
  10620. width:100%;
  10621. }
  10622. #u99239_img {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:12px;
  10628. height:12px;
  10629. }
  10630. #u99239 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:1869px;
  10634. top:629px;
  10635. width:47px;
  10636. height:16px;
  10637. display:flex;
  10638. }
  10639. #u99239 .text {
  10640. position:absolute;
  10641. align-self:center;
  10642. padding:0px 2px 0px 2px;
  10643. box-sizing:border-box;
  10644. }
  10645. #u99239_img.selected {
  10646. }
  10647. #u99239.selected {
  10648. }
  10649. #u99239_img.disabled {
  10650. }
  10651. #u99239.disabled {
  10652. }
  10653. #u99239_img.selectedDisabled {
  10654. }
  10655. #u99239.selectedDisabled {
  10656. }
  10657. #u99239_text {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:14px;
  10661. top:0px;
  10662. width:31px;
  10663. word-wrap:break-word;
  10664. text-transform:none;
  10665. visibility:hidden;
  10666. }
  10667. #u99239_input {
  10668. border-width:0px;
  10669. position:absolute;
  10670. left:0px;
  10671. top:0px;
  10672. width:0px;
  10673. height:0px;
  10674. opacity:0;
  10675. }
  10676. #u99240 label {
  10677. left:0px;
  10678. width:100%;
  10679. }
  10680. #u99240_img {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:12px;
  10686. height:12px;
  10687. }
  10688. #u99240 {
  10689. border-width:0px;
  10690. position:absolute;
  10691. left:1869px;
  10692. top:669px;
  10693. width:47px;
  10694. height:16px;
  10695. display:flex;
  10696. }
  10697. #u99240 .text {
  10698. position:absolute;
  10699. align-self:center;
  10700. padding:0px 2px 0px 2px;
  10701. box-sizing:border-box;
  10702. }
  10703. #u99240_img.selected {
  10704. }
  10705. #u99240.selected {
  10706. }
  10707. #u99240_img.disabled {
  10708. }
  10709. #u99240.disabled {
  10710. }
  10711. #u99240_img.selectedDisabled {
  10712. }
  10713. #u99240.selectedDisabled {
  10714. }
  10715. #u99240_text {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:14px;
  10719. top:0px;
  10720. width:31px;
  10721. word-wrap:break-word;
  10722. text-transform:none;
  10723. visibility:hidden;
  10724. }
  10725. #u99240_input {
  10726. border-width:0px;
  10727. position:absolute;
  10728. left:0px;
  10729. top:0px;
  10730. width:0px;
  10731. height:0px;
  10732. opacity:0;
  10733. }
  10734. #u99241 label {
  10735. left:0px;
  10736. width:100%;
  10737. }
  10738. #u99241_img {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:12px;
  10744. height:12px;
  10745. }
  10746. #u99241 {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:1869px;
  10750. top:710px;
  10751. width:47px;
  10752. height:16px;
  10753. display:flex;
  10754. }
  10755. #u99241 .text {
  10756. position:absolute;
  10757. align-self:center;
  10758. padding:0px 2px 0px 2px;
  10759. box-sizing:border-box;
  10760. }
  10761. #u99241_img.selected {
  10762. }
  10763. #u99241.selected {
  10764. }
  10765. #u99241_img.disabled {
  10766. }
  10767. #u99241.disabled {
  10768. }
  10769. #u99241_img.selectedDisabled {
  10770. }
  10771. #u99241.selectedDisabled {
  10772. }
  10773. #u99241_text {
  10774. border-width:0px;
  10775. position:absolute;
  10776. left:14px;
  10777. top:0px;
  10778. width:31px;
  10779. word-wrap:break-word;
  10780. text-transform:none;
  10781. visibility:hidden;
  10782. }
  10783. #u99241_input {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:0px;
  10787. top:0px;
  10788. width:0px;
  10789. height:0px;
  10790. opacity:0;
  10791. }
  10792. #u99242 label {
  10793. left:0px;
  10794. width:100%;
  10795. }
  10796. #u99242_img {
  10797. border-width:0px;
  10798. position:absolute;
  10799. left:0px;
  10800. top:0px;
  10801. width:12px;
  10802. height:12px;
  10803. }
  10804. #u99242 {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:1869px;
  10808. top:750px;
  10809. width:47px;
  10810. height:16px;
  10811. display:flex;
  10812. }
  10813. #u99242 .text {
  10814. position:absolute;
  10815. align-self:center;
  10816. padding:0px 2px 0px 2px;
  10817. box-sizing:border-box;
  10818. }
  10819. #u99242_img.selected {
  10820. }
  10821. #u99242.selected {
  10822. }
  10823. #u99242_img.disabled {
  10824. }
  10825. #u99242.disabled {
  10826. }
  10827. #u99242_img.selectedDisabled {
  10828. }
  10829. #u99242.selectedDisabled {
  10830. }
  10831. #u99242_text {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:14px;
  10835. top:0px;
  10836. width:31px;
  10837. word-wrap:break-word;
  10838. text-transform:none;
  10839. visibility:hidden;
  10840. }
  10841. #u99242_input {
  10842. border-width:0px;
  10843. position:absolute;
  10844. left:0px;
  10845. top:0px;
  10846. width:0px;
  10847. height:0px;
  10848. opacity:0;
  10849. }
  10850. #u99243 label {
  10851. left:0px;
  10852. width:100%;
  10853. }
  10854. #u99243_img {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:12px;
  10860. height:12px;
  10861. }
  10862. #u99243 {
  10863. border-width:0px;
  10864. position:absolute;
  10865. left:1869px;
  10866. top:790px;
  10867. width:47px;
  10868. height:16px;
  10869. display:flex;
  10870. }
  10871. #u99243 .text {
  10872. position:absolute;
  10873. align-self:center;
  10874. padding:0px 2px 0px 2px;
  10875. box-sizing:border-box;
  10876. }
  10877. #u99243_img.selected {
  10878. }
  10879. #u99243.selected {
  10880. }
  10881. #u99243_img.disabled {
  10882. }
  10883. #u99243.disabled {
  10884. }
  10885. #u99243_img.selectedDisabled {
  10886. }
  10887. #u99243.selectedDisabled {
  10888. }
  10889. #u99243_text {
  10890. border-width:0px;
  10891. position:absolute;
  10892. left:14px;
  10893. top:0px;
  10894. width:31px;
  10895. word-wrap:break-word;
  10896. text-transform:none;
  10897. visibility:hidden;
  10898. }
  10899. #u99243_input {
  10900. border-width:0px;
  10901. position:absolute;
  10902. left:0px;
  10903. top:0px;
  10904. width:0px;
  10905. height:0px;
  10906. opacity:0;
  10907. }
  10908. #u99244_img {
  10909. border-width:0px;
  10910. position:absolute;
  10911. left:0px;
  10912. top:0px;
  10913. width:80px;
  10914. height:30px;
  10915. }
  10916. #u99244 {
  10917. border-width:0px;
  10918. position:absolute;
  10919. left:2471px;
  10920. top:456px;
  10921. width:80px;
  10922. height:30px;
  10923. display:flex;
  10924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10925. font-weight:400;
  10926. font-style:normal;
  10927. font-size:14px;
  10928. color:#FFFFFF;
  10929. }
  10930. #u99244 .text {
  10931. position:absolute;
  10932. align-self:center;
  10933. padding:2px 2px 2px 2px;
  10934. box-sizing:border-box;
  10935. width:100%;
  10936. }
  10937. #u99244_text {
  10938. border-width:0px;
  10939. word-wrap:break-word;
  10940. text-transform:none;
  10941. }
  10942. #u99245_img {
  10943. border-width:0px;
  10944. position:absolute;
  10945. left:0px;
  10946. top:0px;
  10947. width:80px;
  10948. height:30px;
  10949. }
  10950. #u99245 {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:2471px;
  10954. top:563px;
  10955. width:80px;
  10956. height:30px;
  10957. display:flex;
  10958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. font-size:14px;
  10962. color:#FFFFFF;
  10963. }
  10964. #u99245 .text {
  10965. position:absolute;
  10966. align-self:center;
  10967. padding:2px 2px 2px 2px;
  10968. box-sizing:border-box;
  10969. width:100%;
  10970. }
  10971. #u99245_text {
  10972. border-width:0px;
  10973. word-wrap:break-word;
  10974. text-transform:none;
  10975. }
  10976. #u99246_img {
  10977. border-width:0px;
  10978. position:absolute;
  10979. left:0px;
  10980. top:0px;
  10981. width:80px;
  10982. height:30px;
  10983. }
  10984. #u99246 {
  10985. border-width:0px;
  10986. position:absolute;
  10987. left:2471px;
  10988. top:696px;
  10989. width:80px;
  10990. height:30px;
  10991. display:flex;
  10992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10993. font-weight:400;
  10994. font-style:normal;
  10995. font-size:14px;
  10996. color:#FFFFFF;
  10997. }
  10998. #u99246 .text {
  10999. position:absolute;
  11000. align-self:center;
  11001. padding:2px 2px 2px 2px;
  11002. box-sizing:border-box;
  11003. width:100%;
  11004. }
  11005. #u99246_text {
  11006. border-width:0px;
  11007. word-wrap:break-word;
  11008. text-transform:none;
  11009. }
  11010. #u99247 {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:0px;
  11014. top:0px;
  11015. width:0px;
  11016. height:0px;
  11017. }
  11018. #u99248 {
  11019. border-width:0px;
  11020. position:absolute;
  11021. left:0px;
  11022. top:0px;
  11023. width:0px;
  11024. height:0px;
  11025. }
  11026. #u99249_div {
  11027. border-width:0px;
  11028. position:absolute;
  11029. left:0px;
  11030. top:0px;
  11031. width:31px;
  11032. height:30px;
  11033. background:inherit;
  11034. background-color:rgba(255, 255, 255, 1);
  11035. box-sizing:border-box;
  11036. border-width:1px;
  11037. border-style:solid;
  11038. border-color:rgba(228, 228, 228, 1);
  11039. border-radius:4px;
  11040. -moz-box-shadow:none;
  11041. -webkit-box-shadow:none;
  11042. box-shadow:none;
  11043. font-family:'Microsoft YaHei', sans-serif;
  11044. font-weight:400;
  11045. font-style:normal;
  11046. font-size:12px;
  11047. }
  11048. #u99249 {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:2450px;
  11052. top:830px;
  11053. width:31px;
  11054. height:30px;
  11055. display:flex;
  11056. font-family:'Microsoft YaHei', sans-serif;
  11057. font-weight:400;
  11058. font-style:normal;
  11059. font-size:12px;
  11060. }
  11061. #u99249 .text {
  11062. position:absolute;
  11063. align-self:center;
  11064. padding:2px 2px 2px 2px;
  11065. box-sizing:border-box;
  11066. width:100%;
  11067. }
  11068. #u99249_text {
  11069. border-width:0px;
  11070. word-wrap:break-word;
  11071. text-transform:none;
  11072. visibility:hidden;
  11073. }
  11074. #u99250_img {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:8px;
  11080. height:14px;
  11081. }
  11082. #u99250 {
  11083. border-width:0px;
  11084. position:absolute;
  11085. left:2462px;
  11086. top:838px;
  11087. width:8px;
  11088. height:14px;
  11089. display:flex;
  11090. font-family:'Microsoft YaHei', sans-serif;
  11091. font-weight:400;
  11092. font-style:normal;
  11093. font-size:12px;
  11094. }
  11095. #u99250 .text {
  11096. position:absolute;
  11097. align-self:center;
  11098. padding:2px 2px 2px 2px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u99250_text {
  11103. border-width:0px;
  11104. word-wrap:break-word;
  11105. text-transform:none;
  11106. visibility:hidden;
  11107. }
  11108. #u99251 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:0px;
  11112. top:0px;
  11113. width:0px;
  11114. height:0px;
  11115. }
  11116. #u99252_div {
  11117. border-width:0px;
  11118. position:absolute;
  11119. left:0px;
  11120. top:0px;
  11121. width:31px;
  11122. height:30px;
  11123. background:inherit;
  11124. background-color:rgba(255, 255, 255, 1);
  11125. box-sizing:border-box;
  11126. border-width:1px;
  11127. border-style:solid;
  11128. border-color:rgba(228, 228, 228, 1);
  11129. border-radius:4px;
  11130. -moz-box-shadow:none;
  11131. -webkit-box-shadow:none;
  11132. box-shadow:none;
  11133. font-family:'Microsoft YaHei', sans-serif;
  11134. font-weight:400;
  11135. font-style:normal;
  11136. font-size:12px;
  11137. }
  11138. #u99252 {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:2535px;
  11142. top:830px;
  11143. width:31px;
  11144. height:30px;
  11145. display:flex;
  11146. font-family:'Microsoft YaHei', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:12px;
  11150. }
  11151. #u99252 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 2px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u99252_text {
  11159. border-width:0px;
  11160. word-wrap:break-word;
  11161. text-transform:none;
  11162. visibility:hidden;
  11163. }
  11164. #u99253_img {
  11165. border-width:0px;
  11166. position:absolute;
  11167. left:0px;
  11168. top:0px;
  11169. width:8px;
  11170. height:14px;
  11171. }
  11172. #u99253 {
  11173. border-width:0px;
  11174. position:absolute;
  11175. left:2548px;
  11176. top:838px;
  11177. width:8px;
  11178. height:14px;
  11179. display:flex;
  11180. font-family:'Microsoft YaHei', sans-serif;
  11181. font-weight:400;
  11182. font-style:normal;
  11183. font-size:12px;
  11184. }
  11185. #u99253 .text {
  11186. position:absolute;
  11187. align-self:center;
  11188. padding:2px 2px 2px 2px;
  11189. box-sizing:border-box;
  11190. width:100%;
  11191. }
  11192. #u99253_text {
  11193. border-width:0px;
  11194. word-wrap:break-word;
  11195. text-transform:none;
  11196. visibility:hidden;
  11197. }
  11198. #u99254_div {
  11199. border-width:0px;
  11200. position:absolute;
  11201. left:0px;
  11202. top:0px;
  11203. width:32px;
  11204. height:21px;
  11205. background:inherit;
  11206. background-color:rgba(255, 255, 255, 1);
  11207. border:none;
  11208. border-radius:15px;
  11209. -moz-box-shadow:none;
  11210. -webkit-box-shadow:none;
  11211. box-shadow:none;
  11212. font-family:'Microsoft YaHei', sans-serif;
  11213. font-weight:400;
  11214. font-style:normal;
  11215. font-size:14px;
  11216. color:#1E1E1E;
  11217. }
  11218. #u99254 {
  11219. border-width:0px;
  11220. position:absolute;
  11221. left:2491px;
  11222. top:835px;
  11223. width:32px;
  11224. height:21px;
  11225. display:flex;
  11226. font-family:'Microsoft YaHei', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:14px;
  11230. color:#1E1E1E;
  11231. }
  11232. #u99254 .text {
  11233. position:absolute;
  11234. align-self:center;
  11235. padding:2px 2px 2px 2px;
  11236. box-sizing:border-box;
  11237. width:100%;
  11238. }
  11239. #u99254_text {
  11240. border-width:0px;
  11241. white-space:nowrap;
  11242. text-transform:none;
  11243. }
  11244. #u99255 {
  11245. border-width:0px;
  11246. position:absolute;
  11247. left:0px;
  11248. top:0px;
  11249. width:0px;
  11250. height:0px;
  11251. }
  11252. #u99256_div {
  11253. border-width:0px;
  11254. position:absolute;
  11255. left:0px;
  11256. top:0px;
  11257. width:680px;
  11258. height:296px;
  11259. background:inherit;
  11260. background-color:rgba(255, 255, 255, 1);
  11261. box-sizing:border-box;
  11262. border-width:1px;
  11263. border-style:solid;
  11264. border-color:rgba(215, 215, 215, 1);
  11265. border-radius:0px;
  11266. -moz-box-shadow:none;
  11267. -webkit-box-shadow:none;
  11268. box-shadow:none;
  11269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11270. font-weight:400;
  11271. font-style:normal;
  11272. font-size:14px;
  11273. color:#AAAAAA;
  11274. text-align:center;
  11275. line-height:30px;
  11276. }
  11277. #u99256 {
  11278. border-width:0px;
  11279. position:absolute;
  11280. left:992px;
  11281. top:750px;
  11282. width:680px;
  11283. height:296px;
  11284. display:flex;
  11285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11286. font-weight:400;
  11287. font-style:normal;
  11288. font-size:14px;
  11289. color:#AAAAAA;
  11290. text-align:center;
  11291. line-height:30px;
  11292. }
  11293. #u99256 .text {
  11294. position:absolute;
  11295. align-self:center;
  11296. padding:5px 10px 5px 10px;
  11297. box-sizing:border-box;
  11298. width:100%;
  11299. }
  11300. #u99256_text {
  11301. border-width:0px;
  11302. word-wrap:break-word;
  11303. text-transform:none;
  11304. visibility:hidden;
  11305. }
  11306. #u99257_div {
  11307. border-width:0px;
  11308. position:absolute;
  11309. left:0px;
  11310. top:0px;
  11311. width:209px;
  11312. height:35px;
  11313. background:inherit;
  11314. background-color:rgba(255, 255, 255, 0);
  11315. border:none;
  11316. border-top:0px;
  11317. border-right:0px;
  11318. border-bottom:0px;
  11319. border-radius:0px;
  11320. border-top-left-radius:0px;
  11321. border-bottom-left-radius:0px;
  11322. -moz-box-shadow:none;
  11323. -webkit-box-shadow:none;
  11324. box-shadow:none;
  11325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11326. font-weight:500;
  11327. font-style:normal;
  11328. font-size:18px;
  11329. }
  11330. #u99257 {
  11331. border-width:0px;
  11332. position:absolute;
  11333. left:1012px;
  11334. top:768px;
  11335. width:209px;
  11336. height:35px;
  11337. display:flex;
  11338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11339. font-weight:500;
  11340. font-style:normal;
  11341. font-size:18px;
  11342. }
  11343. #u99257 .text {
  11344. position:absolute;
  11345. align-self:center;
  11346. padding:5px 10px 5px 0px;
  11347. box-sizing:border-box;
  11348. width:100%;
  11349. }
  11350. #u99257_text {
  11351. border-width:0px;
  11352. white-space:nowrap;
  11353. text-transform:none;
  11354. }
  11355. #u99258 {
  11356. border-width:0px;
  11357. position:absolute;
  11358. left:0px;
  11359. top:0px;
  11360. width:0px;
  11361. height:0px;
  11362. }
  11363. #u99259_div {
  11364. border-width:0px;
  11365. position:absolute;
  11366. left:0px;
  11367. top:0px;
  11368. width:40px;
  11369. height:40px;
  11370. background:inherit;
  11371. background-color:rgba(255, 255, 255, 0);
  11372. border:none;
  11373. border-top:0px;
  11374. border-right:0px;
  11375. border-bottom:0px;
  11376. border-radius:0px;
  11377. border-top-left-radius:0px;
  11378. border-bottom-left-radius:0px;
  11379. -moz-box-shadow:none;
  11380. -webkit-box-shadow:none;
  11381. box-shadow:none;
  11382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11383. font-weight:500;
  11384. font-style:normal;
  11385. font-size:14px;
  11386. text-align:center;
  11387. }
  11388. #u99259 {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:1632px;
  11392. top:750px;
  11393. width:40px;
  11394. height:40px;
  11395. display:flex;
  11396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11397. font-weight:500;
  11398. font-style:normal;
  11399. font-size:14px;
  11400. text-align:center;
  11401. }
  11402. #u99259 .text {
  11403. position:absolute;
  11404. align-self:center;
  11405. padding:5px 10px 5px 0px;
  11406. box-sizing:border-box;
  11407. width:100%;
  11408. }
  11409. #u99259_text {
  11410. border-width:0px;
  11411. word-wrap:break-word;
  11412. text-transform:none;
  11413. }
  11414. #u99260_img {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:13px;
  11420. height:13px;
  11421. }
  11422. #u99260 {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:1620px;
  11426. top:766px;
  11427. width:13px;
  11428. height:13px;
  11429. display:flex;
  11430. font-size:14px;
  11431. }
  11432. #u99260 .text {
  11433. position:absolute;
  11434. align-self:center;
  11435. padding:2px 2px 2px 2px;
  11436. box-sizing:border-box;
  11437. width:100%;
  11438. }
  11439. #u99260_text {
  11440. border-width:0px;
  11441. word-wrap:break-word;
  11442. text-transform:none;
  11443. visibility:hidden;
  11444. }
  11445. #u99261 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:0px;
  11451. height:0px;
  11452. }
  11453. #u99262_div {
  11454. border-width:0px;
  11455. position:absolute;
  11456. left:0px;
  11457. top:0px;
  11458. width:680px;
  11459. height:60px;
  11460. background:inherit;
  11461. background-color:rgba(255, 255, 255, 1);
  11462. box-sizing:border-box;
  11463. border-width:1px;
  11464. border-style:solid;
  11465. border-color:rgba(215, 215, 215, 1);
  11466. border-radius:0px;
  11467. -moz-box-shadow:none;
  11468. -webkit-box-shadow:none;
  11469. box-shadow:none;
  11470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11471. font-weight:400;
  11472. font-style:normal;
  11473. font-size:14px;
  11474. color:#AAAAAA;
  11475. text-align:center;
  11476. line-height:30px;
  11477. }
  11478. #u99262 {
  11479. border-width:0px;
  11480. position:absolute;
  11481. left:992px;
  11482. top:986px;
  11483. width:680px;
  11484. height:60px;
  11485. display:flex;
  11486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11487. font-weight:400;
  11488. font-style:normal;
  11489. font-size:14px;
  11490. color:#AAAAAA;
  11491. text-align:center;
  11492. line-height:30px;
  11493. }
  11494. #u99262 .text {
  11495. position:absolute;
  11496. align-self:center;
  11497. padding:5px 10px 5px 10px;
  11498. box-sizing:border-box;
  11499. width:100%;
  11500. }
  11501. #u99262_text {
  11502. border-width:0px;
  11503. word-wrap:break-word;
  11504. text-transform:none;
  11505. visibility:hidden;
  11506. }
  11507. #u99263_div {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:0px;
  11511. top:0px;
  11512. width:80px;
  11513. height:30px;
  11514. background:inherit;
  11515. background-color:rgba(24, 144, 255, 1);
  11516. border:none;
  11517. border-radius:4px;
  11518. -moz-box-shadow:none;
  11519. -webkit-box-shadow:none;
  11520. box-shadow:none;
  11521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11522. font-weight:400;
  11523. font-style:normal;
  11524. font-size:14px;
  11525. color:#FFFFFF;
  11526. }
  11527. #u99263 {
  11528. border-width:0px;
  11529. position:absolute;
  11530. left:1537px;
  11531. top:1001px;
  11532. width:80px;
  11533. height:30px;
  11534. display:flex;
  11535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11536. font-weight:400;
  11537. font-style:normal;
  11538. font-size:14px;
  11539. color:#FFFFFF;
  11540. }
  11541. #u99263 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 2px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u99263_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. }
  11553. #u99264_div {
  11554. border-width:0px;
  11555. position:absolute;
  11556. left:0px;
  11557. top:0px;
  11558. width:80px;
  11559. height:30px;
  11560. background:inherit;
  11561. background-color:rgba(255, 255, 255, 1);
  11562. box-sizing:border-box;
  11563. border-width:1px;
  11564. border-style:solid;
  11565. border-color:rgba(170, 170, 170, 1);
  11566. border-radius:4px;
  11567. -moz-box-shadow:none;
  11568. -webkit-box-shadow:none;
  11569. box-shadow:none;
  11570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:14px;
  11574. }
  11575. #u99264 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:1437px;
  11579. top:1001px;
  11580. width:80px;
  11581. height:30px;
  11582. display:flex;
  11583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11584. font-weight:400;
  11585. font-style:normal;
  11586. font-size:14px;
  11587. }
  11588. #u99264 .text {
  11589. position:absolute;
  11590. align-self:center;
  11591. padding:2px 2px 2px 2px;
  11592. box-sizing:border-box;
  11593. width:100%;
  11594. }
  11595. #u99264_text {
  11596. border-width:0px;
  11597. word-wrap:break-word;
  11598. text-transform:none;
  11599. }
  11600. #u99265 {
  11601. border-width:0px;
  11602. position:absolute;
  11603. left:1018px;
  11604. top:826px;
  11605. width:599px;
  11606. height:120px;
  11607. }
  11608. #u99266_img {
  11609. border-width:0px;
  11610. position:absolute;
  11611. left:0px;
  11612. top:0px;
  11613. width:44px;
  11614. height:40px;
  11615. }
  11616. #u99266 {
  11617. border-width:0px;
  11618. position:absolute;
  11619. left:0px;
  11620. top:0px;
  11621. width:44px;
  11622. height:40px;
  11623. display:flex;
  11624. font-size:14px;
  11625. color:#FFFFFF;
  11626. }
  11627. #u99266 .text {
  11628. position:absolute;
  11629. align-self:center;
  11630. padding:2px 2px 2px 2px;
  11631. box-sizing:border-box;
  11632. width:100%;
  11633. }
  11634. #u99266_text {
  11635. border-width:0px;
  11636. word-wrap:break-word;
  11637. text-transform:none;
  11638. visibility:hidden;
  11639. }
  11640. #u99267_img {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:111px;
  11646. height:40px;
  11647. }
  11648. #u99267 {
  11649. border-width:0px;
  11650. position:absolute;
  11651. left:44px;
  11652. top:0px;
  11653. width:111px;
  11654. height:40px;
  11655. display:flex;
  11656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11657. font-weight:400;
  11658. font-style:normal;
  11659. font-size:14px;
  11660. color:#FFFFFF;
  11661. }
  11662. #u99267 .text {
  11663. position:absolute;
  11664. align-self:center;
  11665. padding:2px 2px 2px 2px;
  11666. box-sizing:border-box;
  11667. width:100%;
  11668. }
  11669. #u99267_text {
  11670. border-width:0px;
  11671. word-wrap:break-word;
  11672. text-transform:none;
  11673. }
  11674. #u99268_img {
  11675. border-width:0px;
  11676. position:absolute;
  11677. left:0px;
  11678. top:0px;
  11679. width:111px;
  11680. height:40px;
  11681. }
  11682. #u99268 {
  11683. border-width:0px;
  11684. position:absolute;
  11685. left:155px;
  11686. top:0px;
  11687. width:111px;
  11688. height:40px;
  11689. display:flex;
  11690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11691. font-weight:400;
  11692. font-style:normal;
  11693. font-size:14px;
  11694. color:#FFFFFF;
  11695. }
  11696. #u99268 .text {
  11697. position:absolute;
  11698. align-self:center;
  11699. padding:2px 2px 2px 2px;
  11700. box-sizing:border-box;
  11701. width:100%;
  11702. }
  11703. #u99268_text {
  11704. border-width:0px;
  11705. word-wrap:break-word;
  11706. text-transform:none;
  11707. }
  11708. #u99269_img {
  11709. border-width:0px;
  11710. position:absolute;
  11711. left:0px;
  11712. top:0px;
  11713. width:111px;
  11714. height:40px;
  11715. }
  11716. #u99269 {
  11717. border-width:0px;
  11718. position:absolute;
  11719. left:266px;
  11720. top:0px;
  11721. width:111px;
  11722. height:40px;
  11723. display:flex;
  11724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11725. font-weight:400;
  11726. font-style:normal;
  11727. font-size:14px;
  11728. color:#FFFFFF;
  11729. }
  11730. #u99269 .text {
  11731. position:absolute;
  11732. align-self:center;
  11733. padding:2px 2px 2px 2px;
  11734. box-sizing:border-box;
  11735. width:100%;
  11736. }
  11737. #u99269_text {
  11738. border-width:0px;
  11739. word-wrap:break-word;
  11740. text-transform:none;
  11741. }
  11742. #u99270_img {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:0px;
  11746. top:0px;
  11747. width:111px;
  11748. height:40px;
  11749. }
  11750. #u99270 {
  11751. border-width:0px;
  11752. position:absolute;
  11753. left:377px;
  11754. top:0px;
  11755. width:111px;
  11756. height:40px;
  11757. display:flex;
  11758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11759. font-weight:400;
  11760. font-style:normal;
  11761. font-size:14px;
  11762. color:#FFFFFF;
  11763. }
  11764. #u99270 .text {
  11765. position:absolute;
  11766. align-self:center;
  11767. padding:2px 2px 2px 2px;
  11768. box-sizing:border-box;
  11769. width:100%;
  11770. }
  11771. #u99270_text {
  11772. border-width:0px;
  11773. word-wrap:break-word;
  11774. text-transform:none;
  11775. }
  11776. #u99271_img {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:111px;
  11782. height:40px;
  11783. }
  11784. #u99271 {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:488px;
  11788. top:0px;
  11789. width:111px;
  11790. height:40px;
  11791. display:flex;
  11792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11793. font-weight:400;
  11794. font-style:normal;
  11795. font-size:14px;
  11796. color:#FFFFFF;
  11797. }
  11798. #u99271 .text {
  11799. position:absolute;
  11800. align-self:center;
  11801. padding:2px 2px 2px 2px;
  11802. box-sizing:border-box;
  11803. width:100%;
  11804. }
  11805. #u99271_text {
  11806. border-width:0px;
  11807. word-wrap:break-word;
  11808. text-transform:none;
  11809. }
  11810. #u99272_img {
  11811. border-width:0px;
  11812. position:absolute;
  11813. left:0px;
  11814. top:0px;
  11815. width:44px;
  11816. height:40px;
  11817. }
  11818. #u99272 {
  11819. border-width:0px;
  11820. position:absolute;
  11821. left:0px;
  11822. top:40px;
  11823. width:44px;
  11824. height:40px;
  11825. display:flex;
  11826. font-size:14px;
  11827. }
  11828. #u99272 .text {
  11829. position:absolute;
  11830. align-self:center;
  11831. padding:2px 2px 2px 2px;
  11832. box-sizing:border-box;
  11833. width:100%;
  11834. }
  11835. #u99272_text {
  11836. border-width:0px;
  11837. word-wrap:break-word;
  11838. text-transform:none;
  11839. visibility:hidden;
  11840. }
  11841. #u99273_img {
  11842. border-width:0px;
  11843. position:absolute;
  11844. left:0px;
  11845. top:0px;
  11846. width:111px;
  11847. height:40px;
  11848. }
  11849. #u99273 {
  11850. border-width:0px;
  11851. position:absolute;
  11852. left:44px;
  11853. top:40px;
  11854. width:111px;
  11855. height:40px;
  11856. display:flex;
  11857. font-size:14px;
  11858. }
  11859. #u99273 .text {
  11860. position:absolute;
  11861. align-self:center;
  11862. padding:2px 2px 2px 2px;
  11863. box-sizing:border-box;
  11864. width:100%;
  11865. }
  11866. #u99273_text {
  11867. border-width:0px;
  11868. word-wrap:break-word;
  11869. text-transform:none;
  11870. }
  11871. #u99274_img {
  11872. border-width:0px;
  11873. position:absolute;
  11874. left:0px;
  11875. top:0px;
  11876. width:111px;
  11877. height:40px;
  11878. }
  11879. #u99274 {
  11880. border-width:0px;
  11881. position:absolute;
  11882. left:155px;
  11883. top:40px;
  11884. width:111px;
  11885. height:40px;
  11886. display:flex;
  11887. font-size:14px;
  11888. }
  11889. #u99274 .text {
  11890. position:absolute;
  11891. align-self:center;
  11892. padding:2px 2px 2px 2px;
  11893. box-sizing:border-box;
  11894. width:100%;
  11895. }
  11896. #u99274_text {
  11897. border-width:0px;
  11898. word-wrap:break-word;
  11899. text-transform:none;
  11900. visibility:hidden;
  11901. }
  11902. #u99275_img {
  11903. border-width:0px;
  11904. position:absolute;
  11905. left:0px;
  11906. top:0px;
  11907. width:111px;
  11908. height:40px;
  11909. }
  11910. #u99275 {
  11911. border-width:0px;
  11912. position:absolute;
  11913. left:266px;
  11914. top:40px;
  11915. width:111px;
  11916. height:40px;
  11917. display:flex;
  11918. font-size:14px;
  11919. }
  11920. #u99275 .text {
  11921. position:absolute;
  11922. align-self:center;
  11923. padding:2px 2px 2px 2px;
  11924. box-sizing:border-box;
  11925. width:100%;
  11926. }
  11927. #u99275_text {
  11928. border-width:0px;
  11929. word-wrap:break-word;
  11930. text-transform:none;
  11931. visibility:hidden;
  11932. }
  11933. #u99276_img {
  11934. border-width:0px;
  11935. position:absolute;
  11936. left:0px;
  11937. top:0px;
  11938. width:111px;
  11939. height:40px;
  11940. }
  11941. #u99276 {
  11942. border-width:0px;
  11943. position:absolute;
  11944. left:377px;
  11945. top:40px;
  11946. width:111px;
  11947. height:40px;
  11948. display:flex;
  11949. font-size:14px;
  11950. }
  11951. #u99276 .text {
  11952. position:absolute;
  11953. align-self:center;
  11954. padding:2px 2px 2px 2px;
  11955. box-sizing:border-box;
  11956. width:100%;
  11957. }
  11958. #u99276_text {
  11959. border-width:0px;
  11960. word-wrap:break-word;
  11961. text-transform:none;
  11962. visibility:hidden;
  11963. }
  11964. #u99277_img {
  11965. border-width:0px;
  11966. position:absolute;
  11967. left:0px;
  11968. top:0px;
  11969. width:111px;
  11970. height:40px;
  11971. }
  11972. #u99277 {
  11973. border-width:0px;
  11974. position:absolute;
  11975. left:488px;
  11976. top:40px;
  11977. width:111px;
  11978. height:40px;
  11979. display:flex;
  11980. font-size:14px;
  11981. }
  11982. #u99277 .text {
  11983. position:absolute;
  11984. align-self:center;
  11985. padding:2px 2px 2px 2px;
  11986. box-sizing:border-box;
  11987. width:100%;
  11988. }
  11989. #u99277_text {
  11990. border-width:0px;
  11991. word-wrap:break-word;
  11992. text-transform:none;
  11993. visibility:hidden;
  11994. }
  11995. #u99278_img {
  11996. border-width:0px;
  11997. position:absolute;
  11998. left:0px;
  11999. top:0px;
  12000. width:44px;
  12001. height:40px;
  12002. }
  12003. #u99278 {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:0px;
  12007. top:80px;
  12008. width:44px;
  12009. height:40px;
  12010. display:flex;
  12011. font-size:14px;
  12012. }
  12013. #u99278 .text {
  12014. position:absolute;
  12015. align-self:center;
  12016. padding:2px 2px 2px 2px;
  12017. box-sizing:border-box;
  12018. width:100%;
  12019. }
  12020. #u99278_text {
  12021. border-width:0px;
  12022. word-wrap:break-word;
  12023. text-transform:none;
  12024. visibility:hidden;
  12025. }
  12026. #u99279_img {
  12027. border-width:0px;
  12028. position:absolute;
  12029. left:0px;
  12030. top:0px;
  12031. width:111px;
  12032. height:40px;
  12033. }
  12034. #u99279 {
  12035. border-width:0px;
  12036. position:absolute;
  12037. left:44px;
  12038. top:80px;
  12039. width:111px;
  12040. height:40px;
  12041. display:flex;
  12042. font-size:14px;
  12043. }
  12044. #u99279 .text {
  12045. position:absolute;
  12046. align-self:center;
  12047. padding:2px 2px 2px 2px;
  12048. box-sizing:border-box;
  12049. width:100%;
  12050. }
  12051. #u99279_text {
  12052. border-width:0px;
  12053. word-wrap:break-word;
  12054. text-transform:none;
  12055. }
  12056. #u99280_img {
  12057. border-width:0px;
  12058. position:absolute;
  12059. left:0px;
  12060. top:0px;
  12061. width:111px;
  12062. height:40px;
  12063. }
  12064. #u99280 {
  12065. border-width:0px;
  12066. position:absolute;
  12067. left:155px;
  12068. top:80px;
  12069. width:111px;
  12070. height:40px;
  12071. display:flex;
  12072. font-size:14px;
  12073. }
  12074. #u99280 .text {
  12075. position:absolute;
  12076. align-self:center;
  12077. padding:2px 2px 2px 2px;
  12078. box-sizing:border-box;
  12079. width:100%;
  12080. }
  12081. #u99280_text {
  12082. border-width:0px;
  12083. word-wrap:break-word;
  12084. text-transform:none;
  12085. visibility:hidden;
  12086. }
  12087. #u99281_img {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:0px;
  12091. top:0px;
  12092. width:111px;
  12093. height:40px;
  12094. }
  12095. #u99281 {
  12096. border-width:0px;
  12097. position:absolute;
  12098. left:266px;
  12099. top:80px;
  12100. width:111px;
  12101. height:40px;
  12102. display:flex;
  12103. font-size:14px;
  12104. }
  12105. #u99281 .text {
  12106. position:absolute;
  12107. align-self:center;
  12108. padding:2px 2px 2px 2px;
  12109. box-sizing:border-box;
  12110. width:100%;
  12111. }
  12112. #u99281_text {
  12113. border-width:0px;
  12114. word-wrap:break-word;
  12115. text-transform:none;
  12116. visibility:hidden;
  12117. }
  12118. #u99282_img {
  12119. border-width:0px;
  12120. position:absolute;
  12121. left:0px;
  12122. top:0px;
  12123. width:111px;
  12124. height:40px;
  12125. }
  12126. #u99282 {
  12127. border-width:0px;
  12128. position:absolute;
  12129. left:377px;
  12130. top:80px;
  12131. width:111px;
  12132. height:40px;
  12133. display:flex;
  12134. font-size:14px;
  12135. }
  12136. #u99282 .text {
  12137. position:absolute;
  12138. align-self:center;
  12139. padding:2px 2px 2px 2px;
  12140. box-sizing:border-box;
  12141. width:100%;
  12142. }
  12143. #u99282_text {
  12144. border-width:0px;
  12145. word-wrap:break-word;
  12146. text-transform:none;
  12147. visibility:hidden;
  12148. }
  12149. #u99283_img {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:0px;
  12153. top:0px;
  12154. width:111px;
  12155. height:40px;
  12156. }
  12157. #u99283 {
  12158. border-width:0px;
  12159. position:absolute;
  12160. left:488px;
  12161. top:80px;
  12162. width:111px;
  12163. height:40px;
  12164. display:flex;
  12165. font-size:14px;
  12166. }
  12167. #u99283 .text {
  12168. position:absolute;
  12169. align-self:center;
  12170. padding:2px 2px 2px 2px;
  12171. box-sizing:border-box;
  12172. width:100%;
  12173. }
  12174. #u99283_text {
  12175. border-width:0px;
  12176. word-wrap:break-word;
  12177. text-transform:none;
  12178. visibility:hidden;
  12179. }
  12180. #u99284 label {
  12181. left:0px;
  12182. width:100%;
  12183. }
  12184. #u99284_img {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:12px;
  12190. height:12px;
  12191. }
  12192. #u99284 {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:1035px;
  12196. top:879px;
  12197. width:28px;
  12198. height:16px;
  12199. display:flex;
  12200. }
  12201. #u99284 .text {
  12202. position:absolute;
  12203. align-self:center;
  12204. padding:0px 2px 0px 2px;
  12205. box-sizing:border-box;
  12206. }
  12207. #u99284_img.selected {
  12208. }
  12209. #u99284.selected {
  12210. }
  12211. #u99284_img.disabled {
  12212. }
  12213. #u99284.disabled {
  12214. }
  12215. #u99284_img.selectedDisabled {
  12216. }
  12217. #u99284.selectedDisabled {
  12218. }
  12219. #u99284_text {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:14px;
  12223. top:0px;
  12224. width:12px;
  12225. word-wrap:break-word;
  12226. text-transform:none;
  12227. visibility:hidden;
  12228. }
  12229. #u99284_input {
  12230. border-width:0px;
  12231. position:absolute;
  12232. left:0px;
  12233. top:0px;
  12234. width:0px;
  12235. height:0px;
  12236. opacity:0;
  12237. }
  12238. #u99285 label {
  12239. left:0px;
  12240. width:100%;
  12241. }
  12242. #u99285_img {
  12243. border-width:0px;
  12244. position:absolute;
  12245. left:0px;
  12246. top:0px;
  12247. width:12px;
  12248. height:12px;
  12249. }
  12250. #u99285 {
  12251. border-width:0px;
  12252. position:absolute;
  12253. left:1035px;
  12254. top:919px;
  12255. width:28px;
  12256. height:16px;
  12257. display:flex;
  12258. }
  12259. #u99285 .text {
  12260. position:absolute;
  12261. align-self:center;
  12262. padding:0px 2px 0px 2px;
  12263. box-sizing:border-box;
  12264. }
  12265. #u99285_img.selected {
  12266. }
  12267. #u99285.selected {
  12268. }
  12269. #u99285_img.disabled {
  12270. }
  12271. #u99285.disabled {
  12272. }
  12273. #u99285_img.selectedDisabled {
  12274. }
  12275. #u99285.selectedDisabled {
  12276. }
  12277. #u99285_text {
  12278. border-width:0px;
  12279. position:absolute;
  12280. left:14px;
  12281. top:0px;
  12282. width:12px;
  12283. word-wrap:break-word;
  12284. text-transform:none;
  12285. visibility:hidden;
  12286. }
  12287. #u99285_input {
  12288. border-width:0px;
  12289. position:absolute;
  12290. left:0px;
  12291. top:0px;
  12292. width:0px;
  12293. height:0px;
  12294. opacity:0;
  12295. }
  12296. #u99286 {
  12297. border-width:0px;
  12298. position:absolute;
  12299. left:0px;
  12300. top:0px;
  12301. width:0px;
  12302. height:0px;
  12303. }
  12304. #u99287 {
  12305. border-width:0px;
  12306. position:absolute;
  12307. left:0px;
  12308. top:0px;
  12309. width:0px;
  12310. height:0px;
  12311. }
  12312. #u99288_div {
  12313. border-width:0px;
  12314. position:absolute;
  12315. left:0px;
  12316. top:0px;
  12317. width:380px;
  12318. height:164px;
  12319. background:inherit;
  12320. background-color:rgba(255, 255, 255, 1);
  12321. border:none;
  12322. border-radius:4px;
  12323. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12324. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12325. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12326. font-family:'Microsoft YaHei', sans-serif;
  12327. font-weight:400;
  12328. font-style:normal;
  12329. }
  12330. #u99288 {
  12331. border-width:0px;
  12332. position:absolute;
  12333. left:2143px;
  12334. top:921px;
  12335. width:380px;
  12336. height:164px;
  12337. display:flex;
  12338. font-family:'Microsoft YaHei', sans-serif;
  12339. font-weight:400;
  12340. font-style:normal;
  12341. }
  12342. #u99288 .text {
  12343. position:absolute;
  12344. align-self:center;
  12345. padding:2px 2px 2px 2px;
  12346. box-sizing:border-box;
  12347. width:100%;
  12348. }
  12349. #u99288_text {
  12350. border-width:0px;
  12351. word-wrap:break-word;
  12352. text-transform:none;
  12353. visibility:hidden;
  12354. }
  12355. #u99289_div {
  12356. border-width:0px;
  12357. position:absolute;
  12358. left:0px;
  12359. top:0px;
  12360. width:299px;
  12361. height:44px;
  12362. background:inherit;
  12363. background-color:rgba(255, 255, 255, 0);
  12364. border:none;
  12365. border-radius:0px;
  12366. -moz-box-shadow:none;
  12367. -webkit-box-shadow:none;
  12368. box-shadow:none;
  12369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12370. font-weight:400;
  12371. font-style:normal;
  12372. font-size:14px;
  12373. color:#666666;
  12374. line-height:22px;
  12375. }
  12376. #u99289 {
  12377. border-width:0px;
  12378. position:absolute;
  12379. left:2203px;
  12380. top:976px;
  12381. width:299px;
  12382. height:44px;
  12383. display:flex;
  12384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12385. font-weight:400;
  12386. font-style:normal;
  12387. font-size:14px;
  12388. color:#666666;
  12389. line-height:22px;
  12390. }
  12391. #u99289 .text {
  12392. position:absolute;
  12393. align-self:flex-start;
  12394. padding:0px 0px 0px 0px;
  12395. box-sizing:border-box;
  12396. width:100%;
  12397. }
  12398. #u99289_text {
  12399. border-width:0px;
  12400. word-wrap:break-word;
  12401. text-transform:none;
  12402. }
  12403. #u99290_div {
  12404. border-width:0px;
  12405. position:absolute;
  12406. left:0px;
  12407. top:0px;
  12408. width:199px;
  12409. height:21px;
  12410. background:inherit;
  12411. background-color:rgba(255, 255, 255, 0);
  12412. border:none;
  12413. border-radius:0px;
  12414. -moz-box-shadow:none;
  12415. -webkit-box-shadow:none;
  12416. box-shadow:none;
  12417. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12418. font-weight:650;
  12419. font-style:normal;
  12420. font-size:18px;
  12421. color:#000000;
  12422. line-height:22px;
  12423. }
  12424. #u99290 {
  12425. border-width:0px;
  12426. position:absolute;
  12427. left:2203px;
  12428. top:946px;
  12429. width:199px;
  12430. height:21px;
  12431. display:flex;
  12432. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12433. font-weight:650;
  12434. font-style:normal;
  12435. font-size:18px;
  12436. color:#000000;
  12437. line-height:22px;
  12438. }
  12439. #u99290 .text {
  12440. position:absolute;
  12441. align-self:flex-start;
  12442. padding:0px 0px 0px 0px;
  12443. box-sizing:border-box;
  12444. width:100%;
  12445. }
  12446. #u99290_text {
  12447. border-width:0px;
  12448. white-space:nowrap;
  12449. text-transform:none;
  12450. }
  12451. #u99291_div {
  12452. border-width:0px;
  12453. position:absolute;
  12454. left:0px;
  12455. top:0px;
  12456. width:61px;
  12457. height:32px;
  12458. background:inherit;
  12459. background-color:rgba(24, 144, 255, 1);
  12460. border:none;
  12461. border-radius:4px;
  12462. -moz-box-shadow:none;
  12463. -webkit-box-shadow:none;
  12464. box-shadow:none;
  12465. font-family:'Microsoft YaHei', sans-serif;
  12466. font-weight:400;
  12467. font-style:normal;
  12468. font-size:14px;
  12469. color:#FFFFFF;
  12470. }
  12471. #u99291 {
  12472. border-width:0px;
  12473. position:absolute;
  12474. left:2445px;
  12475. top:1036px;
  12476. width:61px;
  12477. height:32px;
  12478. display:flex;
  12479. font-family:'Microsoft YaHei', sans-serif;
  12480. font-weight:400;
  12481. font-style:normal;
  12482. font-size:14px;
  12483. color:#FFFFFF;
  12484. }
  12485. #u99291 .text {
  12486. position:absolute;
  12487. align-self:center;
  12488. padding:2px 16px 2px 16px;
  12489. box-sizing:border-box;
  12490. width:100%;
  12491. }
  12492. #u99291_text {
  12493. border-width:0px;
  12494. white-space:nowrap;
  12495. text-transform:none;
  12496. }
  12497. #u99292_div {
  12498. border-width:0px;
  12499. position:absolute;
  12500. left:0px;
  12501. top:0px;
  12502. width:66px;
  12503. height:32px;
  12504. background:inherit;
  12505. background-color:rgba(255, 255, 255, 1);
  12506. box-sizing:border-box;
  12507. border-width:1px;
  12508. border-style:solid;
  12509. border-color:rgba(217, 217, 217, 1);
  12510. border-radius:4px;
  12511. -moz-box-shadow:none;
  12512. -webkit-box-shadow:none;
  12513. box-shadow:none;
  12514. font-family:'Microsoft YaHei', sans-serif;
  12515. font-weight:400;
  12516. font-style:normal;
  12517. font-size:14px;
  12518. color:rgba(0, 0, 0, 0.647058823529412);
  12519. line-height:21px;
  12520. }
  12521. #u99292 {
  12522. border-width:0px;
  12523. position:absolute;
  12524. left:2363px;
  12525. top:1036px;
  12526. width:66px;
  12527. height:32px;
  12528. display:flex;
  12529. font-family:'Microsoft YaHei', sans-serif;
  12530. font-weight:400;
  12531. font-style:normal;
  12532. font-size:14px;
  12533. color:rgba(0, 0, 0, 0.647058823529412);
  12534. line-height:21px;
  12535. }
  12536. #u99292 .text {
  12537. position:absolute;
  12538. align-self:center;
  12539. padding:2px 16px 2px 16px;
  12540. box-sizing:border-box;
  12541. width:100%;
  12542. }
  12543. #u99292_text {
  12544. border-width:0px;
  12545. white-space:nowrap;
  12546. text-transform:none;
  12547. }
  12548. #u99293_img {
  12549. border-width:0px;
  12550. position:absolute;
  12551. left:0px;
  12552. top:0px;
  12553. width:20px;
  12554. height:20px;
  12555. }
  12556. #u99293 {
  12557. border-width:0px;
  12558. position:absolute;
  12559. left:2172px;
  12560. top:950px;
  12561. width:20px;
  12562. height:20px;
  12563. display:flex;
  12564. }
  12565. #u99293 .text {
  12566. position:absolute;
  12567. align-self:center;
  12568. padding:2px 2px 2px 2px;
  12569. box-sizing:border-box;
  12570. width:100%;
  12571. }
  12572. #u99293_text {
  12573. border-width:0px;
  12574. word-wrap:break-word;
  12575. text-transform:none;
  12576. visibility:hidden;
  12577. }