styles.css 155 KB

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