styles.css 121 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u96267_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u96267 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u96267 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u96267_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u96268_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u96268 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u96268 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u96268_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u96269_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u96269 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u96269 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u96269_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u96270 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u96271_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u96271 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u96271 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u96271_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u96272_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u96272 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u96272 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u96272_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u96273_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u96273 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u96273 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u96273_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u96274 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u96275_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u96275_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u96275_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u96275 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u96275 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u96275_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u96275.disabled {
  356. }
  357. .u96275_input_option {
  358. font-size:14px;
  359. }
  360. #u96276_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u96276 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u96276 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u96276_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u96277_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u96277 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u96277 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u96277_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u96278_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u96278 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u96278 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u96278_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u96279 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u96280_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u96280 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u96280 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u96280_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u96281_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u96281 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u96281 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u96281_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u96282 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u96283_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u96283 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u96283 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u96283_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u96284_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u96284 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u96284 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u96284_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u96285 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u96286_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u96286 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u96286 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u96286_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u96287_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u96287 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u96287 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u96287_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u96288 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u96289_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u96289 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u96289 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u96289_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u96290_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u96290 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u96290 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u96290_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u96291 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u96292_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u96292 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u96292 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u96292_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u96293_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u96293 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u96293 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u96293_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u96294 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u96295_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u96295 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u96295 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u96295_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u96296_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u96296 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u96296 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u96296_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u96297 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u96298_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u96298 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u96298 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u96298_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u96299_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u96299 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u96299 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u96299_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u96300 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u96301_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u96301 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u96301 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u96301_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u96302_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u96302 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u96302 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u96302_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u96303 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u96304_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u96304 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u96304 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u96304_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u96305_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u96305 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u96305 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u96305_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u96306 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u96307_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u96307 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u96307 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u96307_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u96308_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u96308 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u96308 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u96308_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u96309_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u96309 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u96309 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u96309_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u96310_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u96310 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u96310 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u96310_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u96311_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u96311 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u96311 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u96311_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u96312_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u96312 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u96312 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u96312_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u96313 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u96314_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u96314 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u96314 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u96314_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u96315_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u96315 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u96315 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u96315_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u96316 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u96317_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u96317 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u96317 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u96317_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u96318_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u96318 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u96318 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u96318_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u96319_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u96319 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:333px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u96319 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u96319_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u96320_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. line-height:40px;
  1699. }
  1700. #u96320 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:353px;
  1704. top:50px;
  1705. width:73px;
  1706. height:50px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:18px;
  1712. line-height:40px;
  1713. }
  1714. #u96320 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u96320_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u96321 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u96322_div {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:140px;
  1740. height:30px;
  1741. background:inherit;
  1742. background-color:rgba(255, 255, 255, 1);
  1743. box-sizing:border-box;
  1744. border-width:1px;
  1745. border-style:solid;
  1746. border-color:rgba(215, 215, 215, 1);
  1747. border-radius:4px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. font-size:14px;
  1752. }
  1753. #u96322 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:353px;
  1757. top:117px;
  1758. width:140px;
  1759. height:30px;
  1760. display:flex;
  1761. font-size:14px;
  1762. }
  1763. #u96322 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u96322_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. visibility:hidden;
  1775. }
  1776. #u96323_input {
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:134px;
  1781. height:23px;
  1782. padding:2px 2px 2px 2px;
  1783. font-family:'ArialMT', 'Arial', sans-serif;
  1784. font-weight:400;
  1785. font-style:normal;
  1786. font-size:14px;
  1787. letter-spacing:normal;
  1788. color:#AAAAAA;
  1789. vertical-align:none;
  1790. text-align:left;
  1791. text-transform:none;
  1792. background-color:transparent;
  1793. border-color:transparent;
  1794. }
  1795. #u96323_input.disabled {
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:134px;
  1800. height:23px;
  1801. padding:2px 2px 2px 2px;
  1802. font-family:'ArialMT', 'Arial', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:14px;
  1806. letter-spacing:normal;
  1807. color:#AAAAAA;
  1808. vertical-align:none;
  1809. text-align:left;
  1810. text-transform:none;
  1811. background-color:transparent;
  1812. border-color:transparent;
  1813. }
  1814. #u96323_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:134px;
  1820. height:23px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 1);
  1823. border:none;
  1824. border-radius:0px;
  1825. -moz-box-shadow:none;
  1826. -webkit-box-shadow:none;
  1827. box-shadow:none;
  1828. font-size:14px;
  1829. color:#AAAAAA;
  1830. }
  1831. #u96323 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:357px;
  1835. top:119px;
  1836. width:134px;
  1837. height:23px;
  1838. display:flex;
  1839. font-size:14px;
  1840. color:#AAAAAA;
  1841. }
  1842. #u96323 .text {
  1843. position:absolute;
  1844. align-self:flex-start;
  1845. padding:2px 2px 2px 2px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u96323_div.disabled {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:134px;
  1855. height:23px;
  1856. background:inherit;
  1857. background-color:rgba(240, 240, 240, 1);
  1858. border:none;
  1859. border-radius:0px;
  1860. -moz-box-shadow:none;
  1861. -webkit-box-shadow:none;
  1862. box-shadow:none;
  1863. font-size:14px;
  1864. color:#AAAAAA;
  1865. }
  1866. #u96323.disabled {
  1867. }
  1868. .u96323_input_option {
  1869. font-size:14px;
  1870. }
  1871. #u96324 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:353px;
  1875. top:214px;
  1876. width:1219px;
  1877. height:426px;
  1878. }
  1879. #u96325_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:68px;
  1885. height:31px;
  1886. }
  1887. #u96325 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:68px;
  1893. height:31px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:14px;
  1899. color:#FFFFFF;
  1900. }
  1901. #u96325 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 2px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u96325_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. visibility:hidden;
  1913. }
  1914. #u96326_img {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:134px;
  1920. height:31px;
  1921. }
  1922. #u96326 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:68px;
  1926. top:0px;
  1927. width:134px;
  1928. height:31px;
  1929. display:flex;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:14px;
  1934. color:#FFFFFF;
  1935. }
  1936. #u96326 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:2px 2px 2px 2px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u96326_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. }
  1948. #u96327_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:135px;
  1954. height:31px;
  1955. }
  1956. #u96327 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:202px;
  1960. top:0px;
  1961. width:135px;
  1962. height:31px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:14px;
  1968. color:#FFFFFF;
  1969. }
  1970. #u96327 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:2px 2px 2px 2px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u96327_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u96328_img {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:134px;
  1988. height:31px;
  1989. }
  1990. #u96328 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:337px;
  1994. top:0px;
  1995. width:134px;
  1996. height:31px;
  1997. display:flex;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:14px;
  2002. color:#FFFFFF;
  2003. }
  2004. #u96328 .text {
  2005. position:absolute;
  2006. align-self:center;
  2007. padding:2px 2px 2px 2px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u96328_text {
  2012. border-width:0px;
  2013. word-wrap:break-word;
  2014. text-transform:none;
  2015. }
  2016. #u96329_img {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:162px;
  2022. height:31px;
  2023. }
  2024. #u96329 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:471px;
  2028. top:0px;
  2029. width:162px;
  2030. height:31px;
  2031. display:flex;
  2032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:14px;
  2036. color:#FFFFFF;
  2037. }
  2038. #u96329 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u96329_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u96330_img {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:162px;
  2056. height:31px;
  2057. }
  2058. #u96330 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:633px;
  2062. top:0px;
  2063. width:162px;
  2064. height:31px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. color:#FFFFFF;
  2071. }
  2072. #u96330 .text {
  2073. position:absolute;
  2074. align-self:center;
  2075. padding:2px 2px 2px 2px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u96330_text {
  2080. border-width:0px;
  2081. word-wrap:break-word;
  2082. text-transform:none;
  2083. }
  2084. #u96331_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:145px;
  2090. height:31px;
  2091. }
  2092. #u96331 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:795px;
  2096. top:0px;
  2097. width:145px;
  2098. height:31px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:14px;
  2104. color:#FFFFFF;
  2105. }
  2106. #u96331 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 2px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u96331_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u96332_img {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:135px;
  2124. height:31px;
  2125. }
  2126. #u96332 {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:940px;
  2130. top:0px;
  2131. width:135px;
  2132. height:31px;
  2133. display:flex;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:14px;
  2138. color:#FFFFFF;
  2139. }
  2140. #u96332 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u96332_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. }
  2152. #u96333_img {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:144px;
  2158. height:31px;
  2159. }
  2160. #u96333 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:1075px;
  2164. top:0px;
  2165. width:144px;
  2166. height:31px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:14px;
  2172. color:#FFFFFF;
  2173. }
  2174. #u96333 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u96333_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. }
  2186. #u96334_img {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:68px;
  2192. height:35px;
  2193. }
  2194. #u96334 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:31px;
  2199. width:68px;
  2200. height:35px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. }
  2207. #u96334 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 2px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u96334_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. visibility:hidden;
  2219. }
  2220. #u96335_img {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:134px;
  2226. height:35px;
  2227. }
  2228. #u96335 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:68px;
  2232. top:31px;
  2233. width:134px;
  2234. height:35px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:14px;
  2240. }
  2241. #u96335 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:2px 2px 2px 2px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u96335_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. visibility:hidden;
  2253. }
  2254. #u96336_img {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:135px;
  2260. height:35px;
  2261. }
  2262. #u96336 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:202px;
  2266. top:31px;
  2267. width:135px;
  2268. height:35px;
  2269. display:flex;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:14px;
  2274. }
  2275. #u96336 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u96336_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u96337_img {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:134px;
  2293. height:35px;
  2294. }
  2295. #u96337 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:337px;
  2299. top:31px;
  2300. width:134px;
  2301. height:35px;
  2302. display:flex;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. }
  2308. #u96337 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:2px 2px 2px 2px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u96337_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u96338_img {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:162px;
  2327. height:35px;
  2328. }
  2329. #u96338 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:471px;
  2333. top:31px;
  2334. width:162px;
  2335. height:35px;
  2336. display:flex;
  2337. font-size:14px;
  2338. }
  2339. #u96338 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u96338_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. }
  2351. #u96339_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:162px;
  2357. height:35px;
  2358. }
  2359. #u96339 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:633px;
  2363. top:31px;
  2364. width:162px;
  2365. height:35px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:14px;
  2371. }
  2372. #u96339 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 2px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u96339_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u96340_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:145px;
  2391. height:35px;
  2392. }
  2393. #u96340 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:795px;
  2397. top:31px;
  2398. width:145px;
  2399. height:35px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. }
  2406. #u96340 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 2px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u96340_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. visibility:hidden;
  2418. }
  2419. #u96341_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:135px;
  2425. height:35px;
  2426. }
  2427. #u96341 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:940px;
  2431. top:31px;
  2432. width:135px;
  2433. height:35px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:14px;
  2439. }
  2440. #u96341 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u96341_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. }
  2452. #u96342_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:144px;
  2458. height:35px;
  2459. }
  2460. #u96342 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:1075px;
  2464. top:31px;
  2465. width:144px;
  2466. height:35px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:14px;
  2472. }
  2473. #u96342 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 2px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u96342_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. visibility:hidden;
  2485. }
  2486. #u96343_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:68px;
  2492. height:30px;
  2493. }
  2494. #u96343 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:66px;
  2499. width:68px;
  2500. height:30px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. }
  2507. #u96343 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 2px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u96343_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u96344_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:134px;
  2526. height:30px;
  2527. }
  2528. #u96344 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:68px;
  2532. top:66px;
  2533. width:134px;
  2534. height:30px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:14px;
  2540. }
  2541. #u96344 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u96344_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u96345_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:135px;
  2560. height:30px;
  2561. }
  2562. #u96345 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:202px;
  2566. top:66px;
  2567. width:135px;
  2568. height:30px;
  2569. display:flex;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. }
  2575. #u96345 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u96345_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u96346_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:134px;
  2594. height:30px;
  2595. }
  2596. #u96346 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:337px;
  2600. top:66px;
  2601. width:134px;
  2602. height:30px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:14px;
  2608. }
  2609. #u96346 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 2px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u96346_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u96347_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:162px;
  2628. height:30px;
  2629. }
  2630. #u96347 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:471px;
  2634. top:66px;
  2635. width:162px;
  2636. height:30px;
  2637. display:flex;
  2638. font-size:14px;
  2639. }
  2640. #u96347 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u96347_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u96348_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:162px;
  2659. height:30px;
  2660. }
  2661. #u96348 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:633px;
  2665. top:66px;
  2666. width:162px;
  2667. height:30px;
  2668. display:flex;
  2669. font-size:14px;
  2670. }
  2671. #u96348 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 2px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u96348_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u96349_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:145px;
  2690. height:30px;
  2691. }
  2692. #u96349 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:795px;
  2696. top:66px;
  2697. width:145px;
  2698. height:30px;
  2699. display:flex;
  2700. font-size:14px;
  2701. }
  2702. #u96349 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u96349_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u96350_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:135px;
  2721. height:30px;
  2722. }
  2723. #u96350 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:940px;
  2727. top:66px;
  2728. width:135px;
  2729. height:30px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:14px;
  2735. }
  2736. #u96350 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 2px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u96350_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. }
  2748. #u96351_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:144px;
  2754. height:30px;
  2755. }
  2756. #u96351 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:1075px;
  2760. top:66px;
  2761. width:144px;
  2762. height:30px;
  2763. display:flex;
  2764. font-size:14px;
  2765. }
  2766. #u96351 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u96351_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u96352_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:68px;
  2785. height:30px;
  2786. }
  2787. #u96352 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:96px;
  2792. width:68px;
  2793. height:30px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. }
  2800. #u96352 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u96352_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u96353_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:134px;
  2819. height:30px;
  2820. }
  2821. #u96353 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:68px;
  2825. top:96px;
  2826. width:134px;
  2827. height:30px;
  2828. display:flex;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:14px;
  2833. }
  2834. #u96353 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 2px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u96353_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u96354_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:135px;
  2853. height:30px;
  2854. }
  2855. #u96354 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:202px;
  2859. top:96px;
  2860. width:135px;
  2861. height:30px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. }
  2868. #u96354 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 2px 2px 2px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u96354_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u96355_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:134px;
  2887. height:30px;
  2888. }
  2889. #u96355 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:337px;
  2893. top:96px;
  2894. width:134px;
  2895. height:30px;
  2896. display:flex;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:14px;
  2901. }
  2902. #u96355 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 2px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u96355_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u96356_img {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:162px;
  2921. height:30px;
  2922. }
  2923. #u96356 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:471px;
  2927. top:96px;
  2928. width:162px;
  2929. height:30px;
  2930. display:flex;
  2931. font-size:14px;
  2932. }
  2933. #u96356 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u96356_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u96357_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:162px;
  2952. height:30px;
  2953. }
  2954. #u96357 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:633px;
  2958. top:96px;
  2959. width:162px;
  2960. height:30px;
  2961. display:flex;
  2962. font-size:14px;
  2963. }
  2964. #u96357 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 2px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u96357_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u96358_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:145px;
  2983. height:30px;
  2984. }
  2985. #u96358 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:795px;
  2989. top:96px;
  2990. width:145px;
  2991. height:30px;
  2992. display:flex;
  2993. font-size:14px;
  2994. }
  2995. #u96358 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 2px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u96358_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u96359_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:135px;
  3014. height:30px;
  3015. }
  3016. #u96359 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:940px;
  3020. top:96px;
  3021. width:135px;
  3022. height:30px;
  3023. display:flex;
  3024. font-size:14px;
  3025. }
  3026. #u96359 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u96359_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u96360_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:144px;
  3045. height:30px;
  3046. }
  3047. #u96360 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:1075px;
  3051. top:96px;
  3052. width:144px;
  3053. height:30px;
  3054. display:flex;
  3055. font-size:14px;
  3056. }
  3057. #u96360 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 2px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u96360_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u96361_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:68px;
  3076. height:30px;
  3077. }
  3078. #u96361 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:126px;
  3083. width:68px;
  3084. height:30px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:14px;
  3090. }
  3091. #u96361 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 2px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u96361_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u96362_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:134px;
  3110. height:30px;
  3111. }
  3112. #u96362 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:68px;
  3116. top:126px;
  3117. width:134px;
  3118. height:30px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:14px;
  3124. }
  3125. #u96362 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 2px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u96362_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u96363_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:135px;
  3144. height:30px;
  3145. }
  3146. #u96363 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:202px;
  3150. top:126px;
  3151. width:135px;
  3152. height:30px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. }
  3159. #u96363 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 2px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u96363_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u96364_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:134px;
  3178. height:30px;
  3179. }
  3180. #u96364 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:337px;
  3184. top:126px;
  3185. width:134px;
  3186. height:30px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:14px;
  3192. }
  3193. #u96364 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 2px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u96364_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u96365_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:162px;
  3212. height:30px;
  3213. }
  3214. #u96365 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:471px;
  3218. top:126px;
  3219. width:162px;
  3220. height:30px;
  3221. display:flex;
  3222. font-size:14px;
  3223. }
  3224. #u96365 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 2px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u96365_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u96366_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:162px;
  3243. height:30px;
  3244. }
  3245. #u96366 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:633px;
  3249. top:126px;
  3250. width:162px;
  3251. height:30px;
  3252. display:flex;
  3253. font-size:14px;
  3254. }
  3255. #u96366 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u96366_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u96367_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:145px;
  3274. height:30px;
  3275. }
  3276. #u96367 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:795px;
  3280. top:126px;
  3281. width:145px;
  3282. height:30px;
  3283. display:flex;
  3284. font-size:14px;
  3285. }
  3286. #u96367 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u96367_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u96368_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:135px;
  3305. height:30px;
  3306. }
  3307. #u96368 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:940px;
  3311. top:126px;
  3312. width:135px;
  3313. height:30px;
  3314. display:flex;
  3315. font-size:14px;
  3316. }
  3317. #u96368 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 2px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u96368_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u96369_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:144px;
  3336. height:30px;
  3337. }
  3338. #u96369 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:1075px;
  3342. top:126px;
  3343. width:144px;
  3344. height:30px;
  3345. display:flex;
  3346. font-size:14px;
  3347. }
  3348. #u96369 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 2px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u96369_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. visibility:hidden;
  3360. }
  3361. #u96370_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:68px;
  3367. height:30px;
  3368. }
  3369. #u96370 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:156px;
  3374. width:68px;
  3375. height:30px;
  3376. display:flex;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. }
  3382. #u96370 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u96370_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u96371_img {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:134px;
  3401. height:30px;
  3402. }
  3403. #u96371 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:68px;
  3407. top:156px;
  3408. width:134px;
  3409. height:30px;
  3410. display:flex;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:14px;
  3415. }
  3416. #u96371 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u96371_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u96372_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:135px;
  3435. height:30px;
  3436. }
  3437. #u96372 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:202px;
  3441. top:156px;
  3442. width:135px;
  3443. height:30px;
  3444. display:flex;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:14px;
  3449. }
  3450. #u96372 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:2px 2px 2px 2px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u96372_text {
  3458. border-width:0px;
  3459. word-wrap:break-word;
  3460. text-transform:none;
  3461. visibility:hidden;
  3462. }
  3463. #u96373_img {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:134px;
  3469. height:30px;
  3470. }
  3471. #u96373 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:337px;
  3475. top:156px;
  3476. width:134px;
  3477. height:30px;
  3478. display:flex;
  3479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:14px;
  3483. }
  3484. #u96373 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 2px 2px 2px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u96373_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. visibility:hidden;
  3496. }
  3497. #u96374_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:162px;
  3503. height:30px;
  3504. }
  3505. #u96374 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:471px;
  3509. top:156px;
  3510. width:162px;
  3511. height:30px;
  3512. display:flex;
  3513. font-size:14px;
  3514. }
  3515. #u96374 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 2px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u96374_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u96375_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:162px;
  3534. height:30px;
  3535. }
  3536. #u96375 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:633px;
  3540. top:156px;
  3541. width:162px;
  3542. height:30px;
  3543. display:flex;
  3544. font-size:14px;
  3545. }
  3546. #u96375 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u96375_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u96376_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:145px;
  3565. height:30px;
  3566. }
  3567. #u96376 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:795px;
  3571. top:156px;
  3572. width:145px;
  3573. height:30px;
  3574. display:flex;
  3575. font-size:14px;
  3576. }
  3577. #u96376 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 2px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u96376_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u96377_img {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:135px;
  3596. height:30px;
  3597. }
  3598. #u96377 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:940px;
  3602. top:156px;
  3603. width:135px;
  3604. height:30px;
  3605. display:flex;
  3606. font-size:14px;
  3607. }
  3608. #u96377 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 2px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u96377_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u96378_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:144px;
  3627. height:30px;
  3628. }
  3629. #u96378 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:1075px;
  3633. top:156px;
  3634. width:144px;
  3635. height:30px;
  3636. display:flex;
  3637. font-size:14px;
  3638. }
  3639. #u96378 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u96378_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u96379_img {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:68px;
  3658. height:30px;
  3659. }
  3660. #u96379 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:186px;
  3665. width:68px;
  3666. height:30px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:14px;
  3672. }
  3673. #u96379 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u96379_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u96380_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:134px;
  3692. height:30px;
  3693. }
  3694. #u96380 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:68px;
  3698. top:186px;
  3699. width:134px;
  3700. height:30px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. }
  3707. #u96380 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u96380_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u96381_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:135px;
  3726. height:30px;
  3727. }
  3728. #u96381 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:202px;
  3732. top:186px;
  3733. width:135px;
  3734. height:30px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:14px;
  3740. }
  3741. #u96381 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u96381_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u96382_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:134px;
  3760. height:30px;
  3761. }
  3762. #u96382 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:337px;
  3766. top:186px;
  3767. width:134px;
  3768. height:30px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. }
  3775. #u96382 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u96382_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u96383_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:162px;
  3794. height:30px;
  3795. }
  3796. #u96383 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:471px;
  3800. top:186px;
  3801. width:162px;
  3802. height:30px;
  3803. display:flex;
  3804. font-size:14px;
  3805. }
  3806. #u96383 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 2px 2px 2px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u96383_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u96384_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:162px;
  3825. height:30px;
  3826. }
  3827. #u96384 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:633px;
  3831. top:186px;
  3832. width:162px;
  3833. height:30px;
  3834. display:flex;
  3835. font-size:14px;
  3836. }
  3837. #u96384 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u96384_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u96385_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:145px;
  3856. height:30px;
  3857. }
  3858. #u96385 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:795px;
  3862. top:186px;
  3863. width:145px;
  3864. height:30px;
  3865. display:flex;
  3866. font-size:14px;
  3867. }
  3868. #u96385 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:2px 2px 2px 2px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u96385_text {
  3876. border-width:0px;
  3877. word-wrap:break-word;
  3878. text-transform:none;
  3879. visibility:hidden;
  3880. }
  3881. #u96386_img {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:135px;
  3887. height:30px;
  3888. }
  3889. #u96386 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:940px;
  3893. top:186px;
  3894. width:135px;
  3895. height:30px;
  3896. display:flex;
  3897. font-size:14px;
  3898. }
  3899. #u96386 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 2px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u96386_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u96387_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:144px;
  3918. height:30px;
  3919. }
  3920. #u96387 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:1075px;
  3924. top:186px;
  3925. width:144px;
  3926. height:30px;
  3927. display:flex;
  3928. font-size:14px;
  3929. }
  3930. #u96387 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 2px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u96387_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u96388_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:68px;
  3949. height:30px;
  3950. }
  3951. #u96388 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:216px;
  3956. width:68px;
  3957. height:30px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:14px;
  3963. }
  3964. #u96388 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u96388_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u96389_img {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:134px;
  3983. height:30px;
  3984. }
  3985. #u96389 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:68px;
  3989. top:216px;
  3990. width:134px;
  3991. height:30px;
  3992. display:flex;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:14px;
  3997. }
  3998. #u96389 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 2px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u96389_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u96390_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:135px;
  4017. height:30px;
  4018. }
  4019. #u96390 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:202px;
  4023. top:216px;
  4024. width:135px;
  4025. height:30px;
  4026. display:flex;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:14px;
  4031. }
  4032. #u96390 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u96390_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u96391_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:134px;
  4051. height:30px;
  4052. }
  4053. #u96391 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:337px;
  4057. top:216px;
  4058. width:134px;
  4059. height:30px;
  4060. display:flex;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. }
  4066. #u96391 .text {
  4067. position:absolute;
  4068. align-self:center;
  4069. padding:2px 2px 2px 2px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u96391_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. visibility:hidden;
  4078. }
  4079. #u96392_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:162px;
  4085. height:30px;
  4086. }
  4087. #u96392 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:471px;
  4091. top:216px;
  4092. width:162px;
  4093. height:30px;
  4094. display:flex;
  4095. font-size:14px;
  4096. }
  4097. #u96392 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u96392_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u96393_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:162px;
  4116. height:30px;
  4117. }
  4118. #u96393 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:633px;
  4122. top:216px;
  4123. width:162px;
  4124. height:30px;
  4125. display:flex;
  4126. font-size:14px;
  4127. }
  4128. #u96393 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 2px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u96393_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u96394_img {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:145px;
  4147. height:30px;
  4148. }
  4149. #u96394 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:795px;
  4153. top:216px;
  4154. width:145px;
  4155. height:30px;
  4156. display:flex;
  4157. font-size:14px;
  4158. }
  4159. #u96394 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u96394_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u96395_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:135px;
  4178. height:30px;
  4179. }
  4180. #u96395 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:940px;
  4184. top:216px;
  4185. width:135px;
  4186. height:30px;
  4187. display:flex;
  4188. font-size:14px;
  4189. }
  4190. #u96395 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 2px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u96395_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u96396_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:144px;
  4209. height:30px;
  4210. }
  4211. #u96396 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:1075px;
  4215. top:216px;
  4216. width:144px;
  4217. height:30px;
  4218. display:flex;
  4219. font-size:14px;
  4220. }
  4221. #u96396 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u96396_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u96397_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:68px;
  4240. height:30px;
  4241. }
  4242. #u96397 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:246px;
  4247. width:68px;
  4248. height:30px;
  4249. display:flex;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:14px;
  4254. }
  4255. #u96397 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 2px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u96397_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u96398_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:134px;
  4274. height:30px;
  4275. }
  4276. #u96398 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:68px;
  4280. top:246px;
  4281. width:134px;
  4282. height:30px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:14px;
  4288. }
  4289. #u96398 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:2px 2px 2px 2px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u96398_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. visibility:hidden;
  4301. }
  4302. #u96399_img {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:135px;
  4308. height:30px;
  4309. }
  4310. #u96399 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:202px;
  4314. top:246px;
  4315. width:135px;
  4316. height:30px;
  4317. display:flex;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. }
  4323. #u96399 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u96399_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. visibility:hidden;
  4335. }
  4336. #u96400_img {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:134px;
  4342. height:30px;
  4343. }
  4344. #u96400 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:337px;
  4348. top:246px;
  4349. width:134px;
  4350. height:30px;
  4351. display:flex;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. }
  4357. #u96400 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u96400_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u96401_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:162px;
  4376. height:30px;
  4377. }
  4378. #u96401 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:471px;
  4382. top:246px;
  4383. width:162px;
  4384. height:30px;
  4385. display:flex;
  4386. font-size:14px;
  4387. }
  4388. #u96401 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 2px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u96401_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u96402_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:162px;
  4407. height:30px;
  4408. }
  4409. #u96402 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:633px;
  4413. top:246px;
  4414. width:162px;
  4415. height:30px;
  4416. display:flex;
  4417. font-size:14px;
  4418. }
  4419. #u96402 .text {
  4420. position:absolute;
  4421. align-self:center;
  4422. padding:2px 2px 2px 2px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u96402_text {
  4427. border-width:0px;
  4428. word-wrap:break-word;
  4429. text-transform:none;
  4430. visibility:hidden;
  4431. }
  4432. #u96403_img {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:145px;
  4438. height:30px;
  4439. }
  4440. #u96403 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:795px;
  4444. top:246px;
  4445. width:145px;
  4446. height:30px;
  4447. display:flex;
  4448. font-size:14px;
  4449. }
  4450. #u96403 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u96403_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u96404_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:135px;
  4469. height:30px;
  4470. }
  4471. #u96404 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:940px;
  4475. top:246px;
  4476. width:135px;
  4477. height:30px;
  4478. display:flex;
  4479. font-size:14px;
  4480. }
  4481. #u96404 .text {
  4482. position:absolute;
  4483. align-self:center;
  4484. padding:2px 2px 2px 2px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u96404_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. visibility:hidden;
  4493. }
  4494. #u96405_img {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:144px;
  4500. height:30px;
  4501. }
  4502. #u96405 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:1075px;
  4506. top:246px;
  4507. width:144px;
  4508. height:30px;
  4509. display:flex;
  4510. font-size:14px;
  4511. }
  4512. #u96405 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 2px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u96405_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u96406_img {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:68px;
  4531. height:30px;
  4532. }
  4533. #u96406 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:276px;
  4538. width:68px;
  4539. height:30px;
  4540. display:flex;
  4541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:14px;
  4545. }
  4546. #u96406 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 2px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u96406_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u96407_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:134px;
  4565. height:30px;
  4566. }
  4567. #u96407 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:68px;
  4571. top:276px;
  4572. width:134px;
  4573. height:30px;
  4574. display:flex;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:14px;
  4579. }
  4580. #u96407 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 2px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u96407_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u96408_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:135px;
  4599. height:30px;
  4600. }
  4601. #u96408 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:202px;
  4605. top:276px;
  4606. width:135px;
  4607. height:30px;
  4608. display:flex;
  4609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:14px;
  4613. }
  4614. #u96408 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u96408_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. visibility:hidden;
  4626. }
  4627. #u96409_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:134px;
  4633. height:30px;
  4634. }
  4635. #u96409 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:337px;
  4639. top:276px;
  4640. width:134px;
  4641. height:30px;
  4642. display:flex;
  4643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:14px;
  4647. }
  4648. #u96409 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 2px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u96409_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u96410_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:162px;
  4667. height:30px;
  4668. }
  4669. #u96410 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:471px;
  4673. top:276px;
  4674. width:162px;
  4675. height:30px;
  4676. display:flex;
  4677. font-size:14px;
  4678. }
  4679. #u96410 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 2px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u96410_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u96411_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:162px;
  4698. height:30px;
  4699. }
  4700. #u96411 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:633px;
  4704. top:276px;
  4705. width:162px;
  4706. height:30px;
  4707. display:flex;
  4708. font-size:14px;
  4709. }
  4710. #u96411 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 2px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u96411_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u96412_img {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:145px;
  4729. height:30px;
  4730. }
  4731. #u96412 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:795px;
  4735. top:276px;
  4736. width:145px;
  4737. height:30px;
  4738. display:flex;
  4739. font-size:14px;
  4740. }
  4741. #u96412 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 2px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u96412_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u96413_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:135px;
  4760. height:30px;
  4761. }
  4762. #u96413 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:940px;
  4766. top:276px;
  4767. width:135px;
  4768. height:30px;
  4769. display:flex;
  4770. font-size:14px;
  4771. }
  4772. #u96413 .text {
  4773. position:absolute;
  4774. align-self:center;
  4775. padding:2px 2px 2px 2px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u96413_text {
  4780. border-width:0px;
  4781. word-wrap:break-word;
  4782. text-transform:none;
  4783. visibility:hidden;
  4784. }
  4785. #u96414_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:144px;
  4791. height:30px;
  4792. }
  4793. #u96414 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:1075px;
  4797. top:276px;
  4798. width:144px;
  4799. height:30px;
  4800. display:flex;
  4801. font-size:14px;
  4802. }
  4803. #u96414 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 2px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u96414_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. visibility:hidden;
  4815. }
  4816. #u96415_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:68px;
  4822. height:30px;
  4823. }
  4824. #u96415 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:306px;
  4829. width:68px;
  4830. height:30px;
  4831. display:flex;
  4832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:14px;
  4836. }
  4837. #u96415 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 2px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u96415_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u96416_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:134px;
  4856. height:30px;
  4857. }
  4858. #u96416 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:68px;
  4862. top:306px;
  4863. width:134px;
  4864. height:30px;
  4865. display:flex;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:14px;
  4870. }
  4871. #u96416 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u96416_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u96417_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:135px;
  4890. height:30px;
  4891. }
  4892. #u96417 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:202px;
  4896. top:306px;
  4897. width:135px;
  4898. height:30px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. }
  4905. #u96417 .text {
  4906. position:absolute;
  4907. align-self:center;
  4908. padding:2px 2px 2px 2px;
  4909. box-sizing:border-box;
  4910. width:100%;
  4911. }
  4912. #u96417_text {
  4913. border-width:0px;
  4914. word-wrap:break-word;
  4915. text-transform:none;
  4916. visibility:hidden;
  4917. }
  4918. #u96418_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:134px;
  4924. height:30px;
  4925. }
  4926. #u96418 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:337px;
  4930. top:306px;
  4931. width:134px;
  4932. height:30px;
  4933. display:flex;
  4934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:14px;
  4938. }
  4939. #u96418 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:2px 2px 2px 2px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u96418_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. visibility:hidden;
  4951. }
  4952. #u96419_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:162px;
  4958. height:30px;
  4959. }
  4960. #u96419 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:471px;
  4964. top:306px;
  4965. width:162px;
  4966. height:30px;
  4967. display:flex;
  4968. font-size:14px;
  4969. }
  4970. #u96419 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u96419_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u96420_img {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:162px;
  4989. height:30px;
  4990. }
  4991. #u96420 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:633px;
  4995. top:306px;
  4996. width:162px;
  4997. height:30px;
  4998. display:flex;
  4999. font-size:14px;
  5000. }
  5001. #u96420 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u96420_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u96421_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:145px;
  5020. height:30px;
  5021. }
  5022. #u96421 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:795px;
  5026. top:306px;
  5027. width:145px;
  5028. height:30px;
  5029. display:flex;
  5030. font-size:14px;
  5031. }
  5032. #u96421 .text {
  5033. position:absolute;
  5034. align-self:center;
  5035. padding:2px 2px 2px 2px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u96421_text {
  5040. border-width:0px;
  5041. word-wrap:break-word;
  5042. text-transform:none;
  5043. visibility:hidden;
  5044. }
  5045. #u96422_img {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:135px;
  5051. height:30px;
  5052. }
  5053. #u96422 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:940px;
  5057. top:306px;
  5058. width:135px;
  5059. height:30px;
  5060. display:flex;
  5061. font-size:14px;
  5062. }
  5063. #u96422 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 2px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u96422_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. visibility:hidden;
  5075. }
  5076. #u96423_img {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:144px;
  5082. height:30px;
  5083. }
  5084. #u96423 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:1075px;
  5088. top:306px;
  5089. width:144px;
  5090. height:30px;
  5091. display:flex;
  5092. font-size:14px;
  5093. }
  5094. #u96423 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:2px 2px 2px 2px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u96423_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. visibility:hidden;
  5106. }
  5107. #u96424_img {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:68px;
  5113. height:30px;
  5114. }
  5115. #u96424 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:336px;
  5120. width:68px;
  5121. height:30px;
  5122. display:flex;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:14px;
  5127. }
  5128. #u96424 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 2px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u96424_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u96425_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:134px;
  5147. height:30px;
  5148. }
  5149. #u96425 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:68px;
  5153. top:336px;
  5154. width:134px;
  5155. height:30px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. }
  5162. #u96425 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u96425_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u96426_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:135px;
  5181. height:30px;
  5182. }
  5183. #u96426 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:202px;
  5187. top:336px;
  5188. width:135px;
  5189. height:30px;
  5190. display:flex;
  5191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:14px;
  5195. }
  5196. #u96426 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:2px 2px 2px 2px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u96426_text {
  5204. border-width:0px;
  5205. word-wrap:break-word;
  5206. text-transform:none;
  5207. visibility:hidden;
  5208. }
  5209. #u96427_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:134px;
  5215. height:30px;
  5216. }
  5217. #u96427 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:337px;
  5221. top:336px;
  5222. width:134px;
  5223. height:30px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. }
  5230. #u96427 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u96427_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u96428_img {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:162px;
  5249. height:30px;
  5250. }
  5251. #u96428 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:471px;
  5255. top:336px;
  5256. width:162px;
  5257. height:30px;
  5258. display:flex;
  5259. font-size:14px;
  5260. }
  5261. #u96428 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 2px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u96428_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u96429_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:162px;
  5280. height:30px;
  5281. }
  5282. #u96429 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:633px;
  5286. top:336px;
  5287. width:162px;
  5288. height:30px;
  5289. display:flex;
  5290. font-size:14px;
  5291. }
  5292. #u96429 .text {
  5293. position:absolute;
  5294. align-self:center;
  5295. padding:2px 2px 2px 2px;
  5296. box-sizing:border-box;
  5297. width:100%;
  5298. }
  5299. #u96429_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u96430_img {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:145px;
  5311. height:30px;
  5312. }
  5313. #u96430 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:795px;
  5317. top:336px;
  5318. width:145px;
  5319. height:30px;
  5320. display:flex;
  5321. font-size:14px;
  5322. }
  5323. #u96430 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:2px 2px 2px 2px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u96430_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u96431_img {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:135px;
  5342. height:30px;
  5343. }
  5344. #u96431 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:940px;
  5348. top:336px;
  5349. width:135px;
  5350. height:30px;
  5351. display:flex;
  5352. font-size:14px;
  5353. }
  5354. #u96431 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u96431_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u96432_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:144px;
  5373. height:30px;
  5374. }
  5375. #u96432 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:1075px;
  5379. top:336px;
  5380. width:144px;
  5381. height:30px;
  5382. display:flex;
  5383. font-size:14px;
  5384. }
  5385. #u96432 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u96432_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. visibility:hidden;
  5397. }
  5398. #u96433_img {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:68px;
  5404. height:30px;
  5405. }
  5406. #u96433 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:366px;
  5411. width:68px;
  5412. height:30px;
  5413. display:flex;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:14px;
  5418. }
  5419. #u96433 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 2px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u96433_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u96434_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:134px;
  5438. height:30px;
  5439. }
  5440. #u96434 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:68px;
  5444. top:366px;
  5445. width:134px;
  5446. height:30px;
  5447. display:flex;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:14px;
  5452. }
  5453. #u96434 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 2px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u96434_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u96435_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:135px;
  5472. height:30px;
  5473. }
  5474. #u96435 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:202px;
  5478. top:366px;
  5479. width:135px;
  5480. height:30px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:14px;
  5486. }
  5487. #u96435 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u96435_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. visibility:hidden;
  5499. }
  5500. #u96436_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:134px;
  5506. height:30px;
  5507. }
  5508. #u96436 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:337px;
  5512. top:366px;
  5513. width:134px;
  5514. height:30px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:14px;
  5520. }
  5521. #u96436 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u96436_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u96437_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:162px;
  5540. height:30px;
  5541. }
  5542. #u96437 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:471px;
  5546. top:366px;
  5547. width:162px;
  5548. height:30px;
  5549. display:flex;
  5550. font-size:14px;
  5551. }
  5552. #u96437 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 2px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u96437_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u96438_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:162px;
  5571. height:30px;
  5572. }
  5573. #u96438 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:633px;
  5577. top:366px;
  5578. width:162px;
  5579. height:30px;
  5580. display:flex;
  5581. font-size:14px;
  5582. }
  5583. #u96438 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 2px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u96438_text {
  5591. border-width:0px;
  5592. word-wrap:break-word;
  5593. text-transform:none;
  5594. visibility:hidden;
  5595. }
  5596. #u96439_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:145px;
  5602. height:30px;
  5603. }
  5604. #u96439 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:795px;
  5608. top:366px;
  5609. width:145px;
  5610. height:30px;
  5611. display:flex;
  5612. font-size:14px;
  5613. }
  5614. #u96439 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 2px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u96439_text {
  5622. border-width:0px;
  5623. word-wrap:break-word;
  5624. text-transform:none;
  5625. visibility:hidden;
  5626. }
  5627. #u96440_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:135px;
  5633. height:30px;
  5634. }
  5635. #u96440 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:940px;
  5639. top:366px;
  5640. width:135px;
  5641. height:30px;
  5642. display:flex;
  5643. font-size:14px;
  5644. }
  5645. #u96440 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 2px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u96440_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u96441_img {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:144px;
  5664. height:30px;
  5665. }
  5666. #u96441 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:1075px;
  5670. top:366px;
  5671. width:144px;
  5672. height:30px;
  5673. display:flex;
  5674. font-size:14px;
  5675. }
  5676. #u96441 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 2px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u96441_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. visibility:hidden;
  5688. }
  5689. #u96442_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:68px;
  5695. height:30px;
  5696. }
  5697. #u96442 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:396px;
  5702. width:68px;
  5703. height:30px;
  5704. display:flex;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:14px;
  5709. }
  5710. #u96442 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 2px 2px 2px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u96442_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u96443_img {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:134px;
  5729. height:30px;
  5730. }
  5731. #u96443 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:68px;
  5735. top:396px;
  5736. width:134px;
  5737. height:30px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:14px;
  5743. }
  5744. #u96443 .text {
  5745. position:absolute;
  5746. align-self:center;
  5747. padding:2px 2px 2px 2px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u96443_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. visibility:hidden;
  5756. }
  5757. #u96444_img {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:135px;
  5763. height:30px;
  5764. }
  5765. #u96444 {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:202px;
  5769. top:396px;
  5770. width:135px;
  5771. height:30px;
  5772. display:flex;
  5773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5774. font-weight:400;
  5775. font-style:normal;
  5776. font-size:14px;
  5777. }
  5778. #u96444 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 2px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u96444_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u96445_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:134px;
  5797. height:30px;
  5798. }
  5799. #u96445 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:337px;
  5803. top:396px;
  5804. width:134px;
  5805. height:30px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. }
  5812. #u96445 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:2px 2px 2px 2px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u96445_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u96446_img {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:162px;
  5831. height:30px;
  5832. }
  5833. #u96446 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:471px;
  5837. top:396px;
  5838. width:162px;
  5839. height:30px;
  5840. display:flex;
  5841. font-size:14px;
  5842. }
  5843. #u96446 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 2px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u96446_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. visibility:hidden;
  5855. }
  5856. #u96447_img {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:162px;
  5862. height:30px;
  5863. }
  5864. #u96447 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:633px;
  5868. top:396px;
  5869. width:162px;
  5870. height:30px;
  5871. display:flex;
  5872. font-size:14px;
  5873. }
  5874. #u96447 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u96447_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u96448_img {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:145px;
  5893. height:30px;
  5894. }
  5895. #u96448 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:795px;
  5899. top:396px;
  5900. width:145px;
  5901. height:30px;
  5902. display:flex;
  5903. font-size:14px;
  5904. }
  5905. #u96448 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 2px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u96448_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u96449_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:135px;
  5924. height:30px;
  5925. }
  5926. #u96449 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:940px;
  5930. top:396px;
  5931. width:135px;
  5932. height:30px;
  5933. display:flex;
  5934. font-size:14px;
  5935. }
  5936. #u96449 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 2px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u96449_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. visibility:hidden;
  5948. }
  5949. #u96450_img {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:144px;
  5955. height:30px;
  5956. }
  5957. #u96450 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:1075px;
  5961. top:396px;
  5962. width:144px;
  5963. height:30px;
  5964. display:flex;
  5965. font-size:14px;
  5966. }
  5967. #u96450 .text {
  5968. position:absolute;
  5969. align-self:center;
  5970. padding:2px 2px 2px 2px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u96450_text {
  5975. border-width:0px;
  5976. word-wrap:break-word;
  5977. text-transform:none;
  5978. visibility:hidden;
  5979. }
  5980. #u96451_div {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:80px;
  5986. height:30px;
  5987. background:inherit;
  5988. background-color:rgba(24, 144, 255, 1);
  5989. border:none;
  5990. border-radius:4px;
  5991. -moz-box-shadow:none;
  5992. -webkit-box-shadow:none;
  5993. box-shadow:none;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. color:#FFFFFF;
  5999. }
  6000. #u96451 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:353px;
  6004. top:167px;
  6005. width:80px;
  6006. height:30px;
  6007. display:flex;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:14px;
  6012. color:#FFFFFF;
  6013. }
  6014. #u96451 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:2px 2px 2px 2px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u96451_text {
  6022. border-width:0px;
  6023. word-wrap:break-word;
  6024. text-transform:none;
  6025. }
  6026. #u96452_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:100px;
  6032. height:30px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 1);
  6035. box-sizing:border-box;
  6036. border-width:1px;
  6037. border-style:solid;
  6038. border-color:rgba(170, 170, 170, 1);
  6039. border-radius:4px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. }
  6048. #u96452 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:443px;
  6052. top:167px;
  6053. width:100px;
  6054. height:30px;
  6055. display:flex;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:14px;
  6060. }
  6061. #u96452 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:2px 2px 2px 2px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u96452_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. }
  6073. #u96453 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:0px;
  6079. height:0px;
  6080. }
  6081. #u96454_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:140px;
  6087. height:30px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 1);
  6090. box-sizing:border-box;
  6091. border-width:1px;
  6092. border-style:solid;
  6093. border-color:rgba(215, 215, 215, 1);
  6094. border-radius:4px;
  6095. -moz-box-shadow:none;
  6096. -webkit-box-shadow:none;
  6097. box-shadow:none;
  6098. font-size:14px;
  6099. }
  6100. #u96454 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:503px;
  6104. top:117px;
  6105. width:140px;
  6106. height:30px;
  6107. display:flex;
  6108. font-size:14px;
  6109. }
  6110. #u96454 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 2px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u96454_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u96455_input {
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:134px;
  6128. height:23px;
  6129. padding:2px 2px 2px 2px;
  6130. font-family:'ArialMT', 'Arial', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:14px;
  6134. letter-spacing:normal;
  6135. color:#AAAAAA;
  6136. vertical-align:none;
  6137. text-align:left;
  6138. text-transform:none;
  6139. background-color:transparent;
  6140. border-color:transparent;
  6141. }
  6142. #u96455_input.disabled {
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:134px;
  6147. height:23px;
  6148. padding:2px 2px 2px 2px;
  6149. font-family:'ArialMT', 'Arial', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:14px;
  6153. letter-spacing:normal;
  6154. color:#AAAAAA;
  6155. vertical-align:none;
  6156. text-align:left;
  6157. text-transform:none;
  6158. background-color:transparent;
  6159. border-color:transparent;
  6160. }
  6161. #u96455_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:134px;
  6167. height:23px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 1);
  6170. border:none;
  6171. border-radius:0px;
  6172. -moz-box-shadow:none;
  6173. -webkit-box-shadow:none;
  6174. box-shadow:none;
  6175. font-size:14px;
  6176. color:#AAAAAA;
  6177. }
  6178. #u96455 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:507px;
  6182. top:119px;
  6183. width:134px;
  6184. height:23px;
  6185. display:flex;
  6186. font-size:14px;
  6187. color:#AAAAAA;
  6188. }
  6189. #u96455 .text {
  6190. position:absolute;
  6191. align-self:flex-start;
  6192. padding:2px 2px 2px 2px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u96455_div.disabled {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:134px;
  6202. height:23px;
  6203. background:inherit;
  6204. background-color:rgba(240, 240, 240, 1);
  6205. border:none;
  6206. border-radius:0px;
  6207. -moz-box-shadow:none;
  6208. -webkit-box-shadow:none;
  6209. box-shadow:none;
  6210. font-size:14px;
  6211. color:#AAAAAA;
  6212. }
  6213. #u96455.disabled {
  6214. }
  6215. .u96455_input_option {
  6216. font-size:14px;
  6217. }
  6218. #u96456 label {
  6219. left:0px;
  6220. width:100%;
  6221. }
  6222. #u96456_img {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:12px;
  6228. height:12px;
  6229. }
  6230. #u96456 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:367px;
  6234. top:224px;
  6235. width:42px;
  6236. height:16px;
  6237. display:flex;
  6238. }
  6239. #u96456 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:0px 2px 0px 2px;
  6243. box-sizing:border-box;
  6244. }
  6245. #u96456_img.selected {
  6246. }
  6247. #u96456.selected {
  6248. }
  6249. #u96456_img.disabled {
  6250. }
  6251. #u96456.disabled {
  6252. }
  6253. #u96456_img.selectedDisabled {
  6254. }
  6255. #u96456.selectedDisabled {
  6256. }
  6257. #u96456_text {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:14px;
  6261. top:0px;
  6262. width:26px;
  6263. word-wrap:break-word;
  6264. text-transform:none;
  6265. visibility:hidden;
  6266. }
  6267. #u96456_input {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:0px;
  6273. height:0px;
  6274. opacity:0;
  6275. }
  6276. #u96457 label {
  6277. left:0px;
  6278. width:100%;
  6279. }
  6280. #u96457_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:12px;
  6286. height:12px;
  6287. }
  6288. #u96457 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:367px;
  6292. top:260px;
  6293. width:42px;
  6294. height:16px;
  6295. display:flex;
  6296. }
  6297. #u96457 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:0px 2px 0px 2px;
  6301. box-sizing:border-box;
  6302. }
  6303. #u96457_img.selected {
  6304. }
  6305. #u96457.selected {
  6306. }
  6307. #u96457_img.disabled {
  6308. }
  6309. #u96457.disabled {
  6310. }
  6311. #u96457_img.selectedDisabled {
  6312. }
  6313. #u96457.selectedDisabled {
  6314. }
  6315. #u96457_text {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:14px;
  6319. top:0px;
  6320. width:26px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. visibility:hidden;
  6324. }
  6325. #u96457_input {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:0px;
  6331. height:0px;
  6332. opacity:0;
  6333. }
  6334. #u96458 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:0px;
  6340. height:0px;
  6341. }
  6342. #u96459_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:140px;
  6348. height:30px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 1);
  6351. box-sizing:border-box;
  6352. border-width:1px;
  6353. border-style:solid;
  6354. border-color:rgba(215, 215, 215, 1);
  6355. border-radius:4px;
  6356. -moz-box-shadow:none;
  6357. -webkit-box-shadow:none;
  6358. box-shadow:none;
  6359. font-size:14px;
  6360. }
  6361. #u96459 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:803px;
  6365. top:117px;
  6366. width:140px;
  6367. height:30px;
  6368. display:flex;
  6369. font-size:14px;
  6370. }
  6371. #u96459 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:2px 2px 2px 2px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u96459_text {
  6379. border-width:0px;
  6380. word-wrap:break-word;
  6381. text-transform:none;
  6382. visibility:hidden;
  6383. }
  6384. #u96460_input {
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:134px;
  6389. height:23px;
  6390. padding:2px 2px 2px 2px;
  6391. font-family:'ArialMT', 'Arial', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:14px;
  6395. letter-spacing:normal;
  6396. color:#AAAAAA;
  6397. vertical-align:none;
  6398. text-align:left;
  6399. text-transform:none;
  6400. background-color:transparent;
  6401. border-color:transparent;
  6402. }
  6403. #u96460_input.disabled {
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:134px;
  6408. height:23px;
  6409. padding:2px 2px 2px 2px;
  6410. font-family:'ArialMT', 'Arial', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:14px;
  6414. letter-spacing:normal;
  6415. color:#AAAAAA;
  6416. vertical-align:none;
  6417. text-align:left;
  6418. text-transform:none;
  6419. background-color:transparent;
  6420. border-color:transparent;
  6421. }
  6422. #u96460_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:134px;
  6428. height:23px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 1);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-size:14px;
  6437. color:#AAAAAA;
  6438. }
  6439. #u96460 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:807px;
  6443. top:119px;
  6444. width:134px;
  6445. height:23px;
  6446. display:flex;
  6447. font-size:14px;
  6448. color:#AAAAAA;
  6449. }
  6450. #u96460 .text {
  6451. position:absolute;
  6452. align-self:flex-start;
  6453. padding:2px 2px 2px 2px;
  6454. box-sizing:border-box;
  6455. width:100%;
  6456. }
  6457. #u96460_div.disabled {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:134px;
  6463. height:23px;
  6464. background:inherit;
  6465. background-color:rgba(240, 240, 240, 1);
  6466. border:none;
  6467. border-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. font-size:14px;
  6472. color:#AAAAAA;
  6473. }
  6474. #u96460.disabled {
  6475. }
  6476. .u96460_input_option {
  6477. font-size:14px;
  6478. }
  6479. #u96461 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:0px;
  6485. height:0px;
  6486. }
  6487. #u96462_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:60px;
  6493. height:30px;
  6494. background:inherit;
  6495. background-color:rgba(24, 144, 255, 1);
  6496. border:none;
  6497. border-radius:4px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. color:#FFFFFF;
  6506. }
  6507. #u96462 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:953px;
  6511. top:117px;
  6512. width:60px;
  6513. height:30px;
  6514. display:flex;
  6515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:14px;
  6519. color:#FFFFFF;
  6520. }
  6521. #u96462 .text {
  6522. position:absolute;
  6523. align-self:center;
  6524. padding:2px 2px 2px 2px;
  6525. box-sizing:border-box;
  6526. width:100%;
  6527. }
  6528. #u96462_text {
  6529. border-width:0px;
  6530. word-wrap:break-word;
  6531. text-transform:none;
  6532. }
  6533. #u96463_div {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:60px;
  6539. height:30px;
  6540. background:inherit;
  6541. background-color:rgba(255, 255, 255, 1);
  6542. box-sizing:border-box;
  6543. border-width:1px;
  6544. border-style:solid;
  6545. border-color:rgba(170, 170, 170, 1);
  6546. border-radius:4px;
  6547. -moz-box-shadow:none;
  6548. -webkit-box-shadow:none;
  6549. box-shadow:none;
  6550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:14px;
  6554. }
  6555. #u96463 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:1023px;
  6559. top:117px;
  6560. width:60px;
  6561. height:30px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:14px;
  6567. }
  6568. #u96463 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 2px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u96463_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. }
  6580. #u96464 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:0px;
  6586. height:0px;
  6587. }
  6588. #u96465_div {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:140px;
  6594. height:30px;
  6595. background:inherit;
  6596. background-color:rgba(255, 255, 255, 1);
  6597. box-sizing:border-box;
  6598. border-width:1px;
  6599. border-style:solid;
  6600. border-color:rgba(201, 201, 201, 1);
  6601. border-radius:4px;
  6602. -moz-box-shadow:none;
  6603. -webkit-box-shadow:none;
  6604. box-shadow:none;
  6605. font-family:'Microsoft YaHei', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:14px;
  6609. color:#CCCCCC;
  6610. text-align:left;
  6611. }
  6612. #u96465 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:653px;
  6616. top:117px;
  6617. width:140px;
  6618. height:30px;
  6619. display:flex;
  6620. font-family:'Microsoft YaHei', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. color:#CCCCCC;
  6625. text-align:left;
  6626. }
  6627. #u96465 .text {
  6628. position:absolute;
  6629. align-self:center;
  6630. padding:2px 8px 2px 8px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u96465_text {
  6635. border-width:0px;
  6636. word-wrap:break-word;
  6637. text-transform:none;
  6638. visibility:hidden;
  6639. }
  6640. #u96466_input {
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:127px;
  6645. height:25px;
  6646. padding:2px 2px 2px 2px;
  6647. font-family:'Microsoft YaHei', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:10px;
  6651. letter-spacing:normal;
  6652. color:#000000;
  6653. vertical-align:none;
  6654. text-align:left;
  6655. text-transform:none;
  6656. background-color:transparent;
  6657. border-color:transparent;
  6658. }
  6659. #u96466_input.disabled {
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:127px;
  6664. height:25px;
  6665. padding:2px 2px 2px 2px;
  6666. font-family:'Microsoft YaHei', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:10px;
  6670. letter-spacing:normal;
  6671. color:#000000;
  6672. vertical-align:none;
  6673. text-align:left;
  6674. text-transform:none;
  6675. background-color:transparent;
  6676. border-color:transparent;
  6677. }
  6678. #u96466_div {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:127px;
  6684. height:25px;
  6685. background:inherit;
  6686. background-color:rgba(255, 255, 255, 1);
  6687. border:none;
  6688. border-radius:0px;
  6689. -moz-box-shadow:none;
  6690. -webkit-box-shadow:none;
  6691. box-shadow:none;
  6692. font-family:'Microsoft YaHei', sans-serif;
  6693. font-weight:400;
  6694. font-style:normal;
  6695. font-size:10px;
  6696. }
  6697. #u96466 {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:661px;
  6701. top:118px;
  6702. width:127px;
  6703. height:25px;
  6704. display:flex;
  6705. font-family:'Microsoft YaHei', sans-serif;
  6706. font-weight:400;
  6707. font-style:normal;
  6708. font-size:10px;
  6709. }
  6710. #u96466 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 2px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u96466_div.disabled {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:127px;
  6723. height:25px;
  6724. background:inherit;
  6725. background-color:rgba(240, 240, 240, 1);
  6726. border:none;
  6727. border-radius:0px;
  6728. -moz-box-shadow:none;
  6729. -webkit-box-shadow:none;
  6730. box-shadow:none;
  6731. font-family:'Microsoft YaHei', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:10px;
  6735. }
  6736. #u96466.disabled {
  6737. }
  6738. #u96467_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:530px;
  6744. height:75px;
  6745. background:inherit;
  6746. background-color:rgba(255, 255, 255, 0);
  6747. border:none;
  6748. border-radius:0px;
  6749. -moz-box-shadow:none;
  6750. -webkit-box-shadow:none;
  6751. box-shadow:none;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:18px;
  6756. color:#D9001B;
  6757. }
  6758. #u96467 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:409px;
  6762. top:686px;
  6763. width:530px;
  6764. height:75px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:18px;
  6770. color:#D9001B;
  6771. }
  6772. #u96467 .text {
  6773. position:absolute;
  6774. align-self:flex-start;
  6775. padding:0px 0px 0px 0px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u96467_text {
  6780. border-width:0px;
  6781. white-space:nowrap;
  6782. text-transform:none;
  6783. }
  6784. #u96468 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:0px;
  6790. height:0px;
  6791. }
  6792. #u96469_div {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:200px;
  6798. height:1180px;
  6799. background:inherit;
  6800. background-color:rgba(255, 255, 255, 1);
  6801. border:none;
  6802. border-radius:0px;
  6803. -moz-box-shadow:none;
  6804. -webkit-box-shadow:none;
  6805. box-shadow:none;
  6806. }
  6807. #u96469 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:120px;
  6811. top:50px;
  6812. width:200px;
  6813. height:1180px;
  6814. display:flex;
  6815. }
  6816. #u96469 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 2px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u96469_text {
  6824. border-width:0px;
  6825. word-wrap:break-word;
  6826. text-transform:none;
  6827. visibility:hidden;
  6828. }
  6829. #u96470_div {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:200px;
  6835. height:60px;
  6836. background:inherit;
  6837. background-color:rgba(224, 231, 247, 1);
  6838. border:none;
  6839. border-radius:0px;
  6840. -moz-box-shadow:none;
  6841. -webkit-box-shadow:none;
  6842. box-shadow:none;
  6843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6844. font-weight:500;
  6845. font-style:normal;
  6846. font-size:18px;
  6847. }
  6848. #u96470 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:120px;
  6852. top:50px;
  6853. width:200px;
  6854. height:60px;
  6855. display:flex;
  6856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6857. font-weight:500;
  6858. font-style:normal;
  6859. font-size:18px;
  6860. }
  6861. #u96470 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:0px 0px 0px 20px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u96470_text {
  6869. border-width:0px;
  6870. word-wrap:break-word;
  6871. text-transform:none;
  6872. }
  6873. #u96471_div {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:65px;
  6879. height:22px;
  6880. background:inherit;
  6881. background-color:rgba(255, 255, 255, 0);
  6882. border:none;
  6883. border-radius:0px;
  6884. -moz-box-shadow:none;
  6885. -webkit-box-shadow:none;
  6886. box-shadow:none;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:16px;
  6891. }
  6892. #u96471 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:143px;
  6896. top:163px;
  6897. width:65px;
  6898. height:22px;
  6899. display:flex;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:16px;
  6904. }
  6905. #u96471 .text {
  6906. position:absolute;
  6907. align-self:flex-start;
  6908. padding:0px 0px 0px 0px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u96471_text {
  6913. border-width:0px;
  6914. white-space:nowrap;
  6915. text-transform:none;
  6916. }
  6917. #u96472_div {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:49px;
  6923. height:17px;
  6924. background:inherit;
  6925. background-color:rgba(255, 255, 255, 0);
  6926. border:none;
  6927. border-radius:0px;
  6928. -moz-box-shadow:none;
  6929. -webkit-box-shadow:none;
  6930. box-shadow:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:12px;
  6935. color:#AAAAAA;
  6936. }
  6937. #u96472 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:143px;
  6941. top:130px;
  6942. width:49px;
  6943. height:17px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:12px;
  6949. color:#AAAAAA;
  6950. }
  6951. #u96472 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u96472_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u96473_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:65px;
  6969. height:22px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 0);
  6972. border:none;
  6973. border-radius:0px;
  6974. -moz-box-shadow:none;
  6975. -webkit-box-shadow:none;
  6976. box-shadow:none;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:16px;
  6981. }
  6982. #u96473 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:143px;
  6986. top:205px;
  6987. width:65px;
  6988. height:22px;
  6989. display:flex;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:16px;
  6994. }
  6995. #u96473 .text {
  6996. position:absolute;
  6997. align-self:flex-start;
  6998. padding:0px 0px 0px 0px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u96473_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u96474_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:65px;
  7013. height:22px;
  7014. background:inherit;
  7015. background-color:rgba(255, 255, 255, 0);
  7016. border:none;
  7017. border-radius:0px;
  7018. -moz-box-shadow:none;
  7019. -webkit-box-shadow:none;
  7020. box-shadow:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:16px;
  7025. }
  7026. #u96474 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:143px;
  7030. top:247px;
  7031. width:65px;
  7032. height:22px;
  7033. display:flex;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:16px;
  7038. }
  7039. #u96474 .text {
  7040. position:absolute;
  7041. align-self:flex-start;
  7042. padding:0px 0px 0px 0px;
  7043. box-sizing:border-box;
  7044. width:100%;
  7045. }
  7046. #u96474_text {
  7047. border-width:0px;
  7048. white-space:nowrap;
  7049. text-transform:none;
  7050. }
  7051. #u96475_div {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:65px;
  7057. height:22px;
  7058. background:inherit;
  7059. background-color:rgba(255, 255, 255, 0);
  7060. border:none;
  7061. border-radius:0px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:16px;
  7069. }
  7070. #u96475 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:143px;
  7074. top:342px;
  7075. width:65px;
  7076. height:22px;
  7077. display:flex;
  7078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:16px;
  7082. }
  7083. #u96475 .text {
  7084. position:absolute;
  7085. align-self:flex-start;
  7086. padding:0px 0px 0px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u96475_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u96476_img {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:201px;
  7101. height:2px;
  7102. }
  7103. #u96476 {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:120px;
  7107. top:289px;
  7108. width:200px;
  7109. height:1px;
  7110. display:flex;
  7111. }
  7112. #u96476 .text {
  7113. position:absolute;
  7114. align-self:center;
  7115. padding:2px 2px 2px 2px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u96476_text {
  7120. border-width:0px;
  7121. word-wrap:break-word;
  7122. text-transform:none;
  7123. visibility:hidden;
  7124. }
  7125. #u96477_div {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:49px;
  7131. height:17px;
  7132. background:inherit;
  7133. background-color:rgba(255, 255, 255, 0);
  7134. border:none;
  7135. border-radius:0px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:12px;
  7143. color:#AAAAAA;
  7144. }
  7145. #u96477 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:143px;
  7149. top:309px;
  7150. width:49px;
  7151. height:17px;
  7152. display:flex;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:12px;
  7157. color:#AAAAAA;
  7158. }
  7159. #u96477 .text {
  7160. position:absolute;
  7161. align-self:flex-start;
  7162. padding:0px 0px 0px 0px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u96477_text {
  7167. border-width:0px;
  7168. white-space:nowrap;
  7169. text-transform:none;
  7170. }
  7171. #u96478_div {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:65px;
  7177. height:22px;
  7178. background:inherit;
  7179. background-color:rgba(255, 255, 255, 0);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:16px;
  7189. }
  7190. #u96478 {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:143px;
  7194. top:384px;
  7195. width:65px;
  7196. height:22px;
  7197. display:flex;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:16px;
  7202. }
  7203. #u96478 .text {
  7204. position:absolute;
  7205. align-self:flex-start;
  7206. padding:0px 0px 0px 0px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u96478_text {
  7211. border-width:0px;
  7212. white-space:nowrap;
  7213. text-transform:none;
  7214. }