styles.css 167 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u95077_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. #u95077 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u95077 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u95077_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u95078_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. #u95078 {
  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. #u95078 .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. #u95078_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u95079_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. #u95079 {
  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. #u95079 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u95079_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u95080 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u95081_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u95081 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u95081 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u95081_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u95082_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. #u95082 {
  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. #u95082 .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. #u95082_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u95083_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. #u95083 {
  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. #u95083 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u95083_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u95084 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u95085_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. #u95085 {
  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. #u95085 .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. #u95085_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u95086_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u95086 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u95086 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u95086_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u95087 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u95088_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. #u95088 {
  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. #u95088 .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. #u95088_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u95089_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u95089 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u95089 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u95089_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u95090 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u95091_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. #u95091 {
  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. #u95091 .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. #u95091_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u95092_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u95092 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u95092 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u95092_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u95093 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u95094_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. #u95094 {
  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. #u95094 .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. #u95094_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u95095_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u95095 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u95095 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u95095_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u95096 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u95097_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. #u95097 {
  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. #u95097 .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. #u95097_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u95098_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u95098 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u95098 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u95098_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u95099 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u95100_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. #u95100 {
  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. #u95100 .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. #u95100_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u95101_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u95101 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u95101 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u95101_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u95102 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u95103_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. #u95103 {
  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. #u95103 .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. #u95103_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u95104_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u95104 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u95104 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u95104_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u95105 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u95106_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. #u95106 {
  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. #u95106 .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. #u95106_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u95107_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u95107 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u95107 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u95107_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u95108 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u95109_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. #u95109 {
  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. #u95109 .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. #u95109_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u95110_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u95110 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u95110 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u95110_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u95111_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. #u95111 {
  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. #u95111 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u95111_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u95112_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u95112 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u95112 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u95112_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u95113_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. #u95113 {
  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. #u95113 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u95113_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u95114_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u95114 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u95114 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u95114_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u95115 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u95116_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. #u95116 {
  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. #u95116 .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. #u95116_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u95117_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u95117 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u95117 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u95117_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u95118 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u95119_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. #u95119 {
  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. #u95119 .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. #u95119_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u95120_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u95120 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u95120 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u95120_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u95121 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u95122_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. #u95122_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. #u95122_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. #u95122 {
  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. #u95122 .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. #u95122_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. #u95122.disabled {
  1428. }
  1429. .u95122_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u95123_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u95123 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u95123 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u95123_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u95124_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. #u95124 {
  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. #u95124 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u95124_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u95125_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u95125 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u95125 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u95125_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u95126_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. #u95126 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1259px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u95126 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u95126_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u95127 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:350px;
  1579. top:232px;
  1580. width:1219px;
  1581. height:313px;
  1582. }
  1583. #u95128_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:133px;
  1589. height:35px;
  1590. }
  1591. #u95128 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:133px;
  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. #u95128 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u95128_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u95129_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:78px;
  1623. height:35px;
  1624. }
  1625. #u95129 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:133px;
  1629. top:0px;
  1630. width:78px;
  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. #u95129 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u95129_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u95130_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:78px;
  1657. height:35px;
  1658. }
  1659. #u95130 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:211px;
  1663. top:0px;
  1664. width:78px;
  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. #u95130 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u95130_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u95131_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:78px;
  1691. height:35px;
  1692. }
  1693. #u95131 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:289px;
  1697. top:0px;
  1698. width:78px;
  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. #u95131 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u95131_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u95132_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:78px;
  1725. height:35px;
  1726. }
  1727. #u95132 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:367px;
  1731. top:0px;
  1732. width:78px;
  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. #u95132 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u95132_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u95133_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:81px;
  1759. height:35px;
  1760. }
  1761. #u95133 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:445px;
  1765. top:0px;
  1766. width:81px;
  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. #u95133 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u95133_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u95134_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:78px;
  1793. height:35px;
  1794. }
  1795. #u95134 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:526px;
  1799. top:0px;
  1800. width:78px;
  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. #u95134 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u95134_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u95135_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:78px;
  1827. height:35px;
  1828. }
  1829. #u95135 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:604px;
  1833. top:0px;
  1834. width:78px;
  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. #u95135 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u95135_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u95136_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:78px;
  1861. height:35px;
  1862. }
  1863. #u95136 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:682px;
  1867. top:0px;
  1868. width:78px;
  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. #u95136 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u95136_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u95137_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:78px;
  1895. height:35px;
  1896. }
  1897. #u95137 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:760px;
  1901. top:0px;
  1902. width:78px;
  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. #u95137 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u95137_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u95138_img {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:78px;
  1929. height:35px;
  1930. }
  1931. #u95138 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:838px;
  1935. top:0px;
  1936. width:78px;
  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. #u95138 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 0px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u95138_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u95139_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:78px;
  1963. height:35px;
  1964. }
  1965. #u95139 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:916px;
  1969. top:0px;
  1970. width:78px;
  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. #u95139 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u95139_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u95140_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:78px;
  1997. height:35px;
  1998. }
  1999. #u95140 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:994px;
  2003. top:0px;
  2004. width:78px;
  2005. height:35px;
  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:#FFFFFF;
  2012. }
  2013. #u95140 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 0px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u95140_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. }
  2025. #u95141_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:78px;
  2031. height:35px;
  2032. }
  2033. #u95141 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:1072px;
  2037. top:0px;
  2038. width:78px;
  2039. height:35px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. color:#FFFFFF;
  2046. }
  2047. #u95141 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 0px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u95141_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. }
  2059. #u95142_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:69px;
  2065. height:35px;
  2066. }
  2067. #u95142 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:1150px;
  2071. top:0px;
  2072. width:69px;
  2073. height:35px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:12px;
  2079. color:#FFFFFF;
  2080. }
  2081. #u95142 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u95142_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u95143_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:133px;
  2099. height:44px;
  2100. }
  2101. #u95143 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:35px;
  2106. width:133px;
  2107. height:44px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. color:#333333;
  2114. line-height:40px;
  2115. }
  2116. #u95143 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 0px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u95143_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u95144_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:78px;
  2134. height:44px;
  2135. }
  2136. #u95144 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:133px;
  2140. top:35px;
  2141. width:78px;
  2142. height:44px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. color:#333333;
  2149. line-height:40px;
  2150. }
  2151. #u95144 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u95144_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u95145_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:78px;
  2170. height:44px;
  2171. }
  2172. #u95145 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:211px;
  2176. top:35px;
  2177. width:78px;
  2178. height:44px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#333333;
  2185. line-height:40px;
  2186. }
  2187. #u95145 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 0px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u95145_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u95146_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:78px;
  2206. height:44px;
  2207. }
  2208. #u95146 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:289px;
  2212. top:35px;
  2213. width:78px;
  2214. height:44px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#333333;
  2221. line-height:40px;
  2222. }
  2223. #u95146 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u95146_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. visibility:hidden;
  2235. }
  2236. #u95147_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:78px;
  2242. height:44px;
  2243. }
  2244. #u95147 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:367px;
  2248. top:35px;
  2249. width:78px;
  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. line-height:40px;
  2258. }
  2259. #u95147 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u95147_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u95148_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:81px;
  2278. height:44px;
  2279. }
  2280. #u95148 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:445px;
  2284. top:35px;
  2285. width:81px;
  2286. height:44px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. color:#333333;
  2293. line-height:40px;
  2294. }
  2295. #u95148 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u95148_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u95149_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:78px;
  2314. height:44px;
  2315. }
  2316. #u95149 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:526px;
  2320. top:35px;
  2321. width:78px;
  2322. height:44px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u95149 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u95149_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. }
  2341. #u95150_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:78px;
  2347. height:44px;
  2348. }
  2349. #u95150 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:604px;
  2353. top:35px;
  2354. width:78px;
  2355. height:44px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#606266;
  2362. }
  2363. #u95150 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u95150_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u95151_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:78px;
  2382. height:44px;
  2383. }
  2384. #u95151 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:682px;
  2388. top:35px;
  2389. width:78px;
  2390. height:44px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. color:#333333;
  2397. }
  2398. #u95151 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u95151_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u95152_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:78px;
  2417. height:44px;
  2418. }
  2419. #u95152 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:760px;
  2423. top:35px;
  2424. width:78px;
  2425. height:44px;
  2426. display:flex;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#333333;
  2432. }
  2433. #u95152 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:2px 2px 2px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u95152_text {
  2441. border-width:0px;
  2442. word-wrap:break-word;
  2443. text-transform:none;
  2444. visibility:hidden;
  2445. }
  2446. #u95153_img {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:78px;
  2452. height:44px;
  2453. }
  2454. #u95153 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:838px;
  2458. top:35px;
  2459. width:78px;
  2460. height:44px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:12px;
  2466. color:#333333;
  2467. }
  2468. #u95153 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u95153_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u95154_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:78px;
  2487. height:44px;
  2488. }
  2489. #u95154 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:916px;
  2493. top:35px;
  2494. width:78px;
  2495. height:44px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. color:#333333;
  2502. }
  2503. #u95154 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u95154_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u95155_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:78px;
  2522. height:44px;
  2523. }
  2524. #u95155 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:994px;
  2528. top:35px;
  2529. width:78px;
  2530. height:44px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. color:#333333;
  2537. }
  2538. #u95155 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u95155_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u95156_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:78px;
  2556. height:44px;
  2557. }
  2558. #u95156 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:1072px;
  2562. top:35px;
  2563. width:78px;
  2564. height:44px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#333333;
  2571. }
  2572. #u95156 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u95156_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. visibility:hidden;
  2584. }
  2585. #u95157_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:69px;
  2591. height:44px;
  2592. }
  2593. #u95157 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:1150px;
  2597. top:35px;
  2598. width:69px;
  2599. height:44px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#298FFF;
  2606. line-height:35px;
  2607. }
  2608. #u95157 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u95157_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u95158_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:133px;
  2626. height:44px;
  2627. }
  2628. #u95158 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:79px;
  2633. width:133px;
  2634. height:44px;
  2635. display:flex;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:12px;
  2640. color:#333333;
  2641. line-height:40px;
  2642. }
  2643. #u95158 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u95158_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. }
  2655. #u95159_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:78px;
  2661. height:44px;
  2662. }
  2663. #u95159 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:133px;
  2667. top:79px;
  2668. width:78px;
  2669. height:44px;
  2670. display:flex;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. color:#333333;
  2676. line-height:40px;
  2677. }
  2678. #u95159 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 0px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u95159_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u95160_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:78px;
  2697. height:44px;
  2698. }
  2699. #u95160 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:211px;
  2703. top:79px;
  2704. width:78px;
  2705. height:44px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#333333;
  2712. line-height:40px;
  2713. }
  2714. #u95160 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u95160_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. visibility:hidden;
  2726. }
  2727. #u95161_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:78px;
  2733. height:44px;
  2734. }
  2735. #u95161 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:289px;
  2739. top:79px;
  2740. width:78px;
  2741. height:44px;
  2742. display:flex;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#333333;
  2748. line-height:40px;
  2749. }
  2750. #u95161 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u95161_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u95162_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:78px;
  2769. height:44px;
  2770. }
  2771. #u95162 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:367px;
  2775. top:79px;
  2776. width:78px;
  2777. height:44px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#333333;
  2784. line-height:40px;
  2785. }
  2786. #u95162 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u95162_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u95163_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:81px;
  2805. height:44px;
  2806. }
  2807. #u95163 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:445px;
  2811. top:79px;
  2812. width:81px;
  2813. height:44px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#333333;
  2820. line-height:40px;
  2821. }
  2822. #u95163 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 0px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u95163_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u95164_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:78px;
  2841. height:44px;
  2842. }
  2843. #u95164 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:526px;
  2847. top:79px;
  2848. width:78px;
  2849. height:44px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:12px;
  2855. }
  2856. #u95164 .text {
  2857. position:absolute;
  2858. align-self:center;
  2859. padding:2px 2px 2px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u95164_text {
  2864. border-width:0px;
  2865. word-wrap:break-word;
  2866. text-transform:none;
  2867. visibility:hidden;
  2868. }
  2869. #u95165_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:78px;
  2875. height:44px;
  2876. }
  2877. #u95165 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:604px;
  2881. top:79px;
  2882. width:78px;
  2883. height:44px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. color:#606266;
  2890. }
  2891. #u95165 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u95165_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u95166_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:78px;
  2910. height:44px;
  2911. }
  2912. #u95166 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:682px;
  2916. top:79px;
  2917. width:78px;
  2918. height:44px;
  2919. display:flex;
  2920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2921. font-weight:400;
  2922. font-style:normal;
  2923. font-size:12px;
  2924. color:#333333;
  2925. }
  2926. #u95166 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u95166_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u95167_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:78px;
  2945. height:44px;
  2946. }
  2947. #u95167 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:760px;
  2951. top:79px;
  2952. width:78px;
  2953. height:44px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:12px;
  2959. color:#333333;
  2960. }
  2961. #u95167 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u95167_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u95168_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:78px;
  2980. height:44px;
  2981. }
  2982. #u95168 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:838px;
  2986. top:79px;
  2987. width:78px;
  2988. height:44px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#333333;
  2995. }
  2996. #u95168 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u95168_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u95169_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:78px;
  3015. height:44px;
  3016. }
  3017. #u95169 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:916px;
  3021. top:79px;
  3022. width:78px;
  3023. height:44px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. color:#333333;
  3030. }
  3031. #u95169 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u95169_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. visibility:hidden;
  3043. }
  3044. #u95170_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:78px;
  3050. height:44px;
  3051. }
  3052. #u95170 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:994px;
  3056. top:79px;
  3057. width:78px;
  3058. height:44px;
  3059. display:flex;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:12px;
  3064. color:#333333;
  3065. }
  3066. #u95170 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 0px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u95170_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. }
  3078. #u95171_img {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:78px;
  3084. height:44px;
  3085. }
  3086. #u95171 {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:1072px;
  3090. top:79px;
  3091. width:78px;
  3092. height:44px;
  3093. display:flex;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:12px;
  3098. color:#333333;
  3099. }
  3100. #u95171 .text {
  3101. position:absolute;
  3102. align-self:center;
  3103. padding:2px 2px 2px 0px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u95171_text {
  3108. border-width:0px;
  3109. word-wrap:break-word;
  3110. text-transform:none;
  3111. visibility:hidden;
  3112. }
  3113. #u95172_img {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:69px;
  3119. height:44px;
  3120. }
  3121. #u95172 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:1150px;
  3125. top:79px;
  3126. width:69px;
  3127. height:44px;
  3128. display:flex;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:12px;
  3133. color:#1890FF;
  3134. }
  3135. #u95172 .text {
  3136. position:absolute;
  3137. align-self:center;
  3138. padding:2px 2px 2px 0px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u95172_text {
  3143. border-width:0px;
  3144. word-wrap:break-word;
  3145. text-transform:none;
  3146. visibility:hidden;
  3147. }
  3148. #u95173_img {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:133px;
  3154. height:38px;
  3155. }
  3156. #u95173 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:123px;
  3161. width:133px;
  3162. height:38px;
  3163. display:flex;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. color:#333333;
  3169. line-height:40px;
  3170. }
  3171. #u95173 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u95173_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u95174_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:78px;
  3190. height:38px;
  3191. }
  3192. #u95174 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:133px;
  3196. top:123px;
  3197. width:78px;
  3198. height:38px;
  3199. display:flex;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:12px;
  3204. color:#333333;
  3205. line-height:40px;
  3206. }
  3207. #u95174 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u95174_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u95175_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:78px;
  3226. height:38px;
  3227. }
  3228. #u95175 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:211px;
  3232. top:123px;
  3233. width:78px;
  3234. height:38px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. color:#333333;
  3241. line-height:40px;
  3242. }
  3243. #u95175 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u95175_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u95176_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:78px;
  3262. height:38px;
  3263. }
  3264. #u95176 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:289px;
  3268. top:123px;
  3269. width:78px;
  3270. height:38px;
  3271. display:flex;
  3272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:12px;
  3276. color:#333333;
  3277. line-height:40px;
  3278. }
  3279. #u95176 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 0px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u95176_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u95177_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:78px;
  3298. height:38px;
  3299. }
  3300. #u95177 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:367px;
  3304. top:123px;
  3305. width:78px;
  3306. height:38px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:12px;
  3312. color:#333333;
  3313. line-height:40px;
  3314. }
  3315. #u95177 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u95177_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u95178_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:81px;
  3334. height:38px;
  3335. }
  3336. #u95178 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:445px;
  3340. top:123px;
  3341. width:81px;
  3342. height:38px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. color:#333333;
  3349. line-height:40px;
  3350. }
  3351. #u95178 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:2px 2px 2px 0px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u95178_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u95179_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:78px;
  3370. height:38px;
  3371. }
  3372. #u95179 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:526px;
  3376. top:123px;
  3377. width:78px;
  3378. height:38px;
  3379. display:flex;
  3380. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. color:#606266;
  3385. }
  3386. #u95179 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u95179_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u95180_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:78px;
  3405. height:38px;
  3406. }
  3407. #u95180 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:604px;
  3411. top:123px;
  3412. width:78px;
  3413. height:38px;
  3414. display:flex;
  3415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:12px;
  3419. color:#606266;
  3420. }
  3421. #u95180 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u95180_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u95181_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:78px;
  3440. height:38px;
  3441. }
  3442. #u95181 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:682px;
  3446. top:123px;
  3447. width:78px;
  3448. height:38px;
  3449. display:flex;
  3450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:12px;
  3454. color:#606266;
  3455. }
  3456. #u95181 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 2px 2px 0px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u95181_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u95182_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:78px;
  3475. height:38px;
  3476. }
  3477. #u95182 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:760px;
  3481. top:123px;
  3482. width:78px;
  3483. height:38px;
  3484. display:flex;
  3485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:12px;
  3489. color:#606266;
  3490. }
  3491. #u95182 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u95182_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. visibility:hidden;
  3503. }
  3504. #u95183_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:78px;
  3510. height:38px;
  3511. }
  3512. #u95183 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:838px;
  3516. top:123px;
  3517. width:78px;
  3518. height:38px;
  3519. display:flex;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:12px;
  3524. color:#606266;
  3525. }
  3526. #u95183 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 0px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u95183_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. visibility:hidden;
  3538. }
  3539. #u95184_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:78px;
  3545. height:38px;
  3546. }
  3547. #u95184 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:916px;
  3551. top:123px;
  3552. width:78px;
  3553. height:38px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3556. font-weight:400;
  3557. font-style:normal;
  3558. font-size:12px;
  3559. color:#606266;
  3560. }
  3561. #u95184 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u95184_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u95185_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:78px;
  3580. height:38px;
  3581. }
  3582. #u95185 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:994px;
  3586. top:123px;
  3587. width:78px;
  3588. height:38px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:12px;
  3594. color:#606266;
  3595. }
  3596. #u95185 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u95185_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. }
  3608. #u95186_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:78px;
  3614. height:38px;
  3615. }
  3616. #u95186 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:1072px;
  3620. top:123px;
  3621. width:78px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#606266;
  3629. }
  3630. #u95186 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u95186_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u95187_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:69px;
  3649. height:38px;
  3650. }
  3651. #u95187 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:1150px;
  3655. top:123px;
  3656. width:69px;
  3657. height:38px;
  3658. display:flex;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:12px;
  3663. color:#1890FF;
  3664. }
  3665. #u95187 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u95187_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u95188_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:133px;
  3684. height:38px;
  3685. }
  3686. #u95188 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:161px;
  3691. width:133px;
  3692. height:38px;
  3693. display:flex;
  3694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#606266;
  3699. }
  3700. #u95188 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u95188_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u95189_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:78px;
  3719. height:38px;
  3720. }
  3721. #u95189 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:133px;
  3725. top:161px;
  3726. width:78px;
  3727. height:38px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u95189 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u95189_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u95190_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:78px;
  3754. height:38px;
  3755. }
  3756. #u95190 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:211px;
  3760. top:161px;
  3761. width:78px;
  3762. height:38px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u95190 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u95190_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u95191_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:78px;
  3789. height:38px;
  3790. }
  3791. #u95191 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:289px;
  3795. top:161px;
  3796. width:78px;
  3797. height:38px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u95191 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u95191_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u95192_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:78px;
  3824. height:38px;
  3825. }
  3826. #u95192 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:367px;
  3830. top:161px;
  3831. width:78px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u95192 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u95192_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u95193_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:81px;
  3859. height:38px;
  3860. }
  3861. #u95193 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:445px;
  3865. top:161px;
  3866. width:81px;
  3867. height:38px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u95193 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u95193_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u95194_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:78px;
  3894. height:38px;
  3895. }
  3896. #u95194 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:526px;
  3900. top:161px;
  3901. width:78px;
  3902. height:38px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u95194 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u95194_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u95195_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:78px;
  3929. height:38px;
  3930. }
  3931. #u95195 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:604px;
  3935. top:161px;
  3936. width:78px;
  3937. height:38px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u95195 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u95195_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u95196_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:78px;
  3964. height:38px;
  3965. }
  3966. #u95196 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:682px;
  3970. top:161px;
  3971. width:78px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u95196 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u95196_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u95197_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:78px;
  3999. height:38px;
  4000. }
  4001. #u95197 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:760px;
  4005. top:161px;
  4006. width:78px;
  4007. height:38px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u95197 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u95197_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u95198_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:78px;
  4034. height:38px;
  4035. }
  4036. #u95198 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:838px;
  4040. top:161px;
  4041. width:78px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u95198 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u95198_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u95199_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:78px;
  4069. height:38px;
  4070. }
  4071. #u95199 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:916px;
  4075. top:161px;
  4076. width:78px;
  4077. height:38px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u95199 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u95199_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u95200_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:78px;
  4104. height:38px;
  4105. }
  4106. #u95200 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:994px;
  4110. top:161px;
  4111. width:78px;
  4112. height:38px;
  4113. display:flex;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u95200 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u95200_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u95201_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:78px;
  4139. height:38px;
  4140. }
  4141. #u95201 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:1072px;
  4145. top:161px;
  4146. width:78px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u95201 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u95201_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u95202_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:69px;
  4174. height:38px;
  4175. }
  4176. #u95202 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:1150px;
  4180. top:161px;
  4181. width:69px;
  4182. height:38px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u95202 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u95202_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u95203_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:133px;
  4209. height:38px;
  4210. }
  4211. #u95203 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:199px;
  4216. width:133px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u95203 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u95203_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u95204_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:78px;
  4244. height:38px;
  4245. }
  4246. #u95204 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:133px;
  4250. top:199px;
  4251. width:78px;
  4252. height:38px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u95204 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u95204_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u95205_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:78px;
  4279. height:38px;
  4280. }
  4281. #u95205 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:211px;
  4285. top:199px;
  4286. width:78px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u95205 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u95205_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u95206_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:78px;
  4314. height:38px;
  4315. }
  4316. #u95206 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:289px;
  4320. top:199px;
  4321. width:78px;
  4322. height:38px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u95206 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u95206_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u95207_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:78px;
  4349. height:38px;
  4350. }
  4351. #u95207 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:367px;
  4355. top:199px;
  4356. width:78px;
  4357. height:38px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u95207 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u95207_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u95208_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:81px;
  4384. height:38px;
  4385. }
  4386. #u95208 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:445px;
  4390. top:199px;
  4391. width:81px;
  4392. height:38px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u95208 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u95208_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u95209_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:78px;
  4419. height:38px;
  4420. }
  4421. #u95209 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:526px;
  4425. top:199px;
  4426. width:78px;
  4427. height:38px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u95209 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u95209_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u95210_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:78px;
  4454. height:38px;
  4455. }
  4456. #u95210 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:604px;
  4460. top:199px;
  4461. width:78px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u95210 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u95210_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u95211_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:78px;
  4489. height:38px;
  4490. }
  4491. #u95211 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:682px;
  4495. top:199px;
  4496. width:78px;
  4497. height:38px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u95211 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u95211_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u95212_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:78px;
  4524. height:38px;
  4525. }
  4526. #u95212 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:760px;
  4530. top:199px;
  4531. width:78px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u95212 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u95212_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u95213_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:78px;
  4559. height:38px;
  4560. }
  4561. #u95213 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:838px;
  4565. top:199px;
  4566. width:78px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u95213 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u95213_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u95214_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:78px;
  4594. height:38px;
  4595. }
  4596. #u95214 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:916px;
  4600. top:199px;
  4601. width:78px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u95214 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u95214_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u95215_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:78px;
  4629. height:38px;
  4630. }
  4631. #u95215 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:994px;
  4635. top:199px;
  4636. width:78px;
  4637. height:38px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u95215 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u95215_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u95216_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:78px;
  4664. height:38px;
  4665. }
  4666. #u95216 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:1072px;
  4670. top:199px;
  4671. width:78px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u95216 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u95216_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u95217_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:69px;
  4699. height:38px;
  4700. }
  4701. #u95217 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1150px;
  4705. top:199px;
  4706. width:69px;
  4707. height:38px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u95217 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u95217_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u95218_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:133px;
  4734. height:38px;
  4735. }
  4736. #u95218 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:237px;
  4741. width:133px;
  4742. height:38px;
  4743. display:flex;
  4744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#606266;
  4749. }
  4750. #u95218 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u95218_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u95219_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:78px;
  4769. height:38px;
  4770. }
  4771. #u95219 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:133px;
  4775. top:237px;
  4776. width:78px;
  4777. height:38px;
  4778. display:flex;
  4779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#606266;
  4784. }
  4785. #u95219 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u95219_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u95220_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:78px;
  4804. height:38px;
  4805. }
  4806. #u95220 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:211px;
  4810. top:237px;
  4811. width:78px;
  4812. height:38px;
  4813. display:flex;
  4814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#606266;
  4819. }
  4820. #u95220 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u95220_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u95221_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:78px;
  4839. height:38px;
  4840. }
  4841. #u95221 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:289px;
  4845. top:237px;
  4846. width:78px;
  4847. height:38px;
  4848. display:flex;
  4849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u95221 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u95221_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u95222_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:78px;
  4874. height:38px;
  4875. }
  4876. #u95222 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:367px;
  4880. top:237px;
  4881. width:78px;
  4882. height:38px;
  4883. display:flex;
  4884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#606266;
  4889. }
  4890. #u95222 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u95222_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u95223_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:81px;
  4909. height:38px;
  4910. }
  4911. #u95223 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:445px;
  4915. top:237px;
  4916. width:81px;
  4917. height:38px;
  4918. display:flex;
  4919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#606266;
  4924. }
  4925. #u95223 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u95223_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u95224_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:78px;
  4944. height:38px;
  4945. }
  4946. #u95224 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:526px;
  4950. top:237px;
  4951. width:78px;
  4952. height:38px;
  4953. display:flex;
  4954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#606266;
  4959. }
  4960. #u95224 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u95224_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u95225_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:78px;
  4979. height:38px;
  4980. }
  4981. #u95225 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:604px;
  4985. top:237px;
  4986. width:78px;
  4987. height:38px;
  4988. display:flex;
  4989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#606266;
  4994. }
  4995. #u95225 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u95225_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u95226_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:78px;
  5014. height:38px;
  5015. }
  5016. #u95226 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:682px;
  5020. top:237px;
  5021. width:78px;
  5022. height:38px;
  5023. display:flex;
  5024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#606266;
  5029. }
  5030. #u95226 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u95226_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u95227_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:78px;
  5049. height:38px;
  5050. }
  5051. #u95227 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:760px;
  5055. top:237px;
  5056. width:78px;
  5057. height:38px;
  5058. display:flex;
  5059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#606266;
  5064. }
  5065. #u95227 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u95227_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u95228_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:78px;
  5084. height:38px;
  5085. }
  5086. #u95228 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:838px;
  5090. top:237px;
  5091. width:78px;
  5092. height:38px;
  5093. display:flex;
  5094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#606266;
  5099. }
  5100. #u95228 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u95228_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u95229_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:78px;
  5119. height:38px;
  5120. }
  5121. #u95229 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:916px;
  5125. top:237px;
  5126. width:78px;
  5127. height:38px;
  5128. display:flex;
  5129. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#606266;
  5134. }
  5135. #u95229 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u95229_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u95230_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:78px;
  5154. height:38px;
  5155. }
  5156. #u95230 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:994px;
  5160. top:237px;
  5161. width:78px;
  5162. height:38px;
  5163. display:flex;
  5164. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:12px;
  5168. color:#606266;
  5169. }
  5170. #u95230 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 0px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u95230_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u95231_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:78px;
  5189. height:38px;
  5190. }
  5191. #u95231 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1072px;
  5195. top:237px;
  5196. width:78px;
  5197. height:38px;
  5198. display:flex;
  5199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:12px;
  5203. color:#606266;
  5204. }
  5205. #u95231 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u95231_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u95232_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:69px;
  5224. height:38px;
  5225. }
  5226. #u95232 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:1150px;
  5230. top:237px;
  5231. width:69px;
  5232. height:38px;
  5233. display:flex;
  5234. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#606266;
  5239. }
  5240. #u95232 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u95232_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u95233_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:133px;
  5259. height:38px;
  5260. }
  5261. #u95233 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:275px;
  5266. width:133px;
  5267. height:38px;
  5268. display:flex;
  5269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#606266;
  5274. }
  5275. #u95233 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u95233_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u95234_img {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:78px;
  5294. height:38px;
  5295. }
  5296. #u95234 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:133px;
  5300. top:275px;
  5301. width:78px;
  5302. height:38px;
  5303. display:flex;
  5304. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:12px;
  5308. color:#606266;
  5309. }
  5310. #u95234 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u95234_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u95235_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:78px;
  5329. height:38px;
  5330. }
  5331. #u95235 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:211px;
  5335. top:275px;
  5336. width:78px;
  5337. height:38px;
  5338. display:flex;
  5339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#606266;
  5344. }
  5345. #u95235 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 0px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u95235_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u95236_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:78px;
  5364. height:38px;
  5365. }
  5366. #u95236 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:289px;
  5370. top:275px;
  5371. width:78px;
  5372. height:38px;
  5373. display:flex;
  5374. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#606266;
  5379. }
  5380. #u95236 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u95236_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u95237_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:78px;
  5399. height:38px;
  5400. }
  5401. #u95237 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:367px;
  5405. top:275px;
  5406. width:78px;
  5407. height:38px;
  5408. display:flex;
  5409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#606266;
  5414. }
  5415. #u95237 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u95237_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u95238_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:81px;
  5434. height:38px;
  5435. }
  5436. #u95238 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:445px;
  5440. top:275px;
  5441. width:81px;
  5442. height:38px;
  5443. display:flex;
  5444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#606266;
  5449. }
  5450. #u95238 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u95238_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u95239_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:78px;
  5469. height:38px;
  5470. }
  5471. #u95239 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:526px;
  5475. top:275px;
  5476. width:78px;
  5477. height:38px;
  5478. display:flex;
  5479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#606266;
  5484. }
  5485. #u95239 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u95239_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u95240_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:78px;
  5504. height:38px;
  5505. }
  5506. #u95240 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:604px;
  5510. top:275px;
  5511. width:78px;
  5512. height:38px;
  5513. display:flex;
  5514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#606266;
  5519. }
  5520. #u95240 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u95240_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u95241_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:78px;
  5539. height:38px;
  5540. }
  5541. #u95241 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:682px;
  5545. top:275px;
  5546. width:78px;
  5547. height:38px;
  5548. display:flex;
  5549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:12px;
  5553. color:#606266;
  5554. }
  5555. #u95241 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 0px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u95241_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u95242_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:78px;
  5574. height:38px;
  5575. }
  5576. #u95242 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:760px;
  5580. top:275px;
  5581. width:78px;
  5582. height:38px;
  5583. display:flex;
  5584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#606266;
  5589. }
  5590. #u95242 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u95242_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u95243_img {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:78px;
  5609. height:38px;
  5610. }
  5611. #u95243 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:838px;
  5615. top:275px;
  5616. width:78px;
  5617. height:38px;
  5618. display:flex;
  5619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#606266;
  5624. }
  5625. #u95243 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u95243_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u95244_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:78px;
  5644. height:38px;
  5645. }
  5646. #u95244 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:916px;
  5650. top:275px;
  5651. width:78px;
  5652. height:38px;
  5653. display:flex;
  5654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:#606266;
  5659. }
  5660. #u95244 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u95244_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u95245_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:78px;
  5679. height:38px;
  5680. }
  5681. #u95245 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:994px;
  5685. top:275px;
  5686. width:78px;
  5687. height:38px;
  5688. display:flex;
  5689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:12px;
  5693. color:#606266;
  5694. }
  5695. #u95245 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 0px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u95245_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u95246_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:78px;
  5714. height:38px;
  5715. }
  5716. #u95246 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:1072px;
  5720. top:275px;
  5721. width:78px;
  5722. height:38px;
  5723. display:flex;
  5724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#606266;
  5729. }
  5730. #u95246 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u95246_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u95247_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:69px;
  5749. height:38px;
  5750. }
  5751. #u95247 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1150px;
  5755. top:275px;
  5756. width:69px;
  5757. height:38px;
  5758. display:flex;
  5759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#606266;
  5764. }
  5765. #u95247 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u95247_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u95248_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:60px;
  5784. height:30px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 1);
  5787. box-sizing:border-box;
  5788. border-width:1px;
  5789. border-style:solid;
  5790. border-color:rgba(170, 170, 170, 1);
  5791. border-radius:4px;
  5792. -moz-box-shadow:none;
  5793. -webkit-box-shadow:none;
  5794. box-shadow:none;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. }
  5800. #u95248 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:490px;
  5804. top:192px;
  5805. width:60px;
  5806. height:30px;
  5807. display:flex;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:14px;
  5812. }
  5813. #u95248 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 2px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u95248_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. }
  5825. #u95249_div {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:60px;
  5831. height:30px;
  5832. background:inherit;
  5833. background-color:rgba(255, 255, 255, 1);
  5834. box-sizing:border-box;
  5835. border-width:1px;
  5836. border-style:solid;
  5837. border-color:rgba(170, 170, 170, 1);
  5838. border-radius:4px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. }
  5847. #u95249 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:420px;
  5851. top:192px;
  5852. width:60px;
  5853. height:30px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:14px;
  5859. }
  5860. #u95249 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 2px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u95249_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. }
  5872. #u95250_div {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:60px;
  5878. height:30px;
  5879. background:inherit;
  5880. background-color:rgba(24, 144, 255, 1);
  5881. border:none;
  5882. border-radius:4px;
  5883. -moz-box-shadow:none;
  5884. -webkit-box-shadow:none;
  5885. box-shadow:none;
  5886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:14px;
  5890. color:#FFFFFF;
  5891. }
  5892. #u95250 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:350px;
  5896. top:192px;
  5897. width:60px;
  5898. height:30px;
  5899. display:flex;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:14px;
  5904. color:#FFFFFF;
  5905. }
  5906. #u95250 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:2px 2px 2px 2px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u95250_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. }
  5918. #u95251_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:73px;
  5924. height:50px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 0);
  5927. border:none;
  5928. border-left:0px;
  5929. border-top:0px;
  5930. border-right:0px;
  5931. border-radius:0px;
  5932. border-bottom-right-radius:0px;
  5933. border-bottom-left-radius:0px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:18px;
  5941. }
  5942. #u95251 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:349px;
  5946. top:52px;
  5947. width:73px;
  5948. height:50px;
  5949. display:flex;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:18px;
  5954. }
  5955. #u95251 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:0px 0px 0px 0px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u95251_text {
  5963. border-width:0px;
  5964. white-space:nowrap;
  5965. text-transform:none;
  5966. }
  5967. #u95252 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:0px;
  5973. height:0px;
  5974. }
  5975. #u95253_div {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:100px;
  5981. height:100px;
  5982. background:inherit;
  5983. background-color:rgba(255, 255, 255, 1);
  5984. box-sizing:border-box;
  5985. border-width:1px;
  5986. border-style:solid;
  5987. border-color:rgba(242, 242, 242, 1);
  5988. border-radius:4px;
  5989. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5990. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5991. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. text-align:left;
  5997. }
  5998. #u95253 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1461px;
  6002. top:298px;
  6003. width:100px;
  6004. height:100px;
  6005. display:flex;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. text-align:left;
  6011. }
  6012. #u95253 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u95253_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u95254_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:83px;
  6031. height:40px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 1);
  6034. box-sizing:border-box;
  6035. border-width:1px;
  6036. border-style:solid;
  6037. border-color:rgba(215, 215, 215, 1);
  6038. border-left:0px;
  6039. border-top:0px;
  6040. border-right:0px;
  6041. border-radius:0px;
  6042. border-bottom-right-radius:0px;
  6043. border-bottom-left-radius:0px;
  6044. -moz-box-shadow:none;
  6045. -webkit-box-shadow:none;
  6046. box-shadow:none;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:14px;
  6051. }
  6052. #u95254 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:1469px;
  6056. top:308px;
  6057. width:83px;
  6058. height:40px;
  6059. display:flex;
  6060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. font-size:14px;
  6064. }
  6065. #u95254 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u95254_text {
  6073. border-width:0px;
  6074. word-wrap:break-word;
  6075. text-transform:none;
  6076. }
  6077. #u95255_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:83px;
  6083. height:40px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 1);
  6086. border:none;
  6087. border-left:0px;
  6088. border-top:0px;
  6089. border-right:0px;
  6090. border-radius:0px;
  6091. border-bottom-right-radius:0px;
  6092. border-bottom-left-radius:0px;
  6093. -moz-box-shadow:none;
  6094. -webkit-box-shadow:none;
  6095. box-shadow:none;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:14px;
  6100. }
  6101. #u95255 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:1469px;
  6105. top:348px;
  6106. width:83px;
  6107. height:40px;
  6108. display:flex;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:14px;
  6113. }
  6114. #u95255 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u95255_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. }
  6126. #u95256_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:60px;
  6132. height:30px;
  6133. background:inherit;
  6134. background-color:rgba(24, 144, 255, 1);
  6135. border:none;
  6136. border-radius:4px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. color:#FFFFFF;
  6145. }
  6146. #u95256 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:950px;
  6150. top:143px;
  6151. width:60px;
  6152. height:30px;
  6153. display:flex;
  6154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:14px;
  6158. color:#FFFFFF;
  6159. }
  6160. #u95256 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u95256_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. }
  6172. #u95257_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:60px;
  6178. height:30px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 1);
  6181. box-sizing:border-box;
  6182. border-width:1px;
  6183. border-style:solid;
  6184. border-color:rgba(170, 170, 170, 1);
  6185. border-radius:4px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:14px;
  6193. }
  6194. #u95257 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:1020px;
  6198. top:143px;
  6199. width:60px;
  6200. height:30px;
  6201. display:flex;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:14px;
  6206. }
  6207. #u95257 .text {
  6208. position:absolute;
  6209. align-self:center;
  6210. padding:2px 2px 2px 2px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u95257_text {
  6215. border-width:0px;
  6216. word-wrap:break-word;
  6217. text-transform:none;
  6218. }
  6219. #u95258 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:0px;
  6225. height:0px;
  6226. }
  6227. #u95259_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:140px;
  6233. height:30px;
  6234. background:inherit;
  6235. background-color:rgba(255, 255, 255, 1);
  6236. box-sizing:border-box;
  6237. border-width:1px;
  6238. border-style:solid;
  6239. border-color:rgba(215, 215, 215, 1);
  6240. border-radius:4px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-size:14px;
  6245. }
  6246. #u95259 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:500px;
  6250. top:103px;
  6251. width:140px;
  6252. height:30px;
  6253. display:flex;
  6254. font-size:14px;
  6255. }
  6256. #u95259 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u95259_text {
  6264. border-width:0px;
  6265. word-wrap:break-word;
  6266. text-transform:none;
  6267. visibility:hidden;
  6268. }
  6269. #u95260_input {
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:134px;
  6274. height:23px;
  6275. padding:2px 2px 2px 2px;
  6276. font-family:'ArialMT', 'Arial', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. letter-spacing:normal;
  6281. color:#AAAAAA;
  6282. vertical-align:none;
  6283. text-align:left;
  6284. text-transform:none;
  6285. background-color:transparent;
  6286. border-color:transparent;
  6287. }
  6288. #u95260_input.disabled {
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:134px;
  6293. height:23px;
  6294. padding:2px 2px 2px 2px;
  6295. font-family:'ArialMT', 'Arial', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:14px;
  6299. letter-spacing:normal;
  6300. color:#AAAAAA;
  6301. vertical-align:none;
  6302. text-align:left;
  6303. text-transform:none;
  6304. background-color:transparent;
  6305. border-color:transparent;
  6306. }
  6307. #u95260_div {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:134px;
  6313. height:23px;
  6314. background:inherit;
  6315. background-color:rgba(255, 255, 255, 1);
  6316. border:none;
  6317. border-radius:0px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-size:14px;
  6322. color:#AAAAAA;
  6323. }
  6324. #u95260 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:504px;
  6328. top:105px;
  6329. width:134px;
  6330. height:23px;
  6331. display:flex;
  6332. font-size:14px;
  6333. color:#AAAAAA;
  6334. }
  6335. #u95260 .text {
  6336. position:absolute;
  6337. align-self:flex-start;
  6338. padding:2px 2px 2px 2px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u95260_div.disabled {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:134px;
  6348. height:23px;
  6349. background:inherit;
  6350. background-color:rgba(240, 240, 240, 1);
  6351. border:none;
  6352. border-radius:0px;
  6353. -moz-box-shadow:none;
  6354. -webkit-box-shadow:none;
  6355. box-shadow:none;
  6356. font-size:14px;
  6357. color:#AAAAAA;
  6358. }
  6359. #u95260.disabled {
  6360. }
  6361. .u95260_input_option {
  6362. font-size:14px;
  6363. }
  6364. #u95261 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:0px;
  6370. height:0px;
  6371. }
  6372. #u95262_div {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:140px;
  6378. height:30px;
  6379. background:inherit;
  6380. background-color:rgba(255, 255, 255, 1);
  6381. box-sizing:border-box;
  6382. border-width:1px;
  6383. border-style:solid;
  6384. border-color:rgba(215, 215, 215, 1);
  6385. border-radius:4px;
  6386. -moz-box-shadow:none;
  6387. -webkit-box-shadow:none;
  6388. box-shadow:none;
  6389. font-size:14px;
  6390. }
  6391. #u95262 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:650px;
  6395. top:103px;
  6396. width:140px;
  6397. height:30px;
  6398. display:flex;
  6399. font-size:14px;
  6400. }
  6401. #u95262 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u95262_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u95263_input {
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:134px;
  6419. height:23px;
  6420. padding:2px 2px 2px 2px;
  6421. font-family:'ArialMT', 'Arial', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. letter-spacing:normal;
  6426. color:#AAAAAA;
  6427. vertical-align:none;
  6428. text-align:left;
  6429. text-transform:none;
  6430. background-color:transparent;
  6431. border-color:transparent;
  6432. }
  6433. #u95263_input.disabled {
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:134px;
  6438. height:23px;
  6439. padding:2px 2px 2px 2px;
  6440. font-family:'ArialMT', 'Arial', sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:14px;
  6444. letter-spacing:normal;
  6445. color:#AAAAAA;
  6446. vertical-align:none;
  6447. text-align:left;
  6448. text-transform:none;
  6449. background-color:transparent;
  6450. border-color:transparent;
  6451. }
  6452. #u95263_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:134px;
  6458. height:23px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. border:none;
  6462. border-radius:0px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-size:14px;
  6467. color:#AAAAAA;
  6468. }
  6469. #u95263 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:654px;
  6473. top:105px;
  6474. width:134px;
  6475. height:23px;
  6476. display:flex;
  6477. font-size:14px;
  6478. color:#AAAAAA;
  6479. }
  6480. #u95263 .text {
  6481. position:absolute;
  6482. align-self:flex-start;
  6483. padding:2px 2px 2px 2px;
  6484. box-sizing:border-box;
  6485. width:100%;
  6486. }
  6487. #u95263_div.disabled {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:134px;
  6493. height:23px;
  6494. background:inherit;
  6495. background-color:rgba(240, 240, 240, 1);
  6496. border:none;
  6497. border-radius:0px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-size:14px;
  6502. color:#AAAAAA;
  6503. }
  6504. #u95263.disabled {
  6505. }
  6506. .u95263_input_option {
  6507. font-size:14px;
  6508. }
  6509. #u95264 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:0px;
  6515. height:0px;
  6516. }
  6517. #u95265_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:140px;
  6523. height:30px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 1);
  6526. box-sizing:border-box;
  6527. border-width:1px;
  6528. border-style:solid;
  6529. border-color:rgba(215, 215, 215, 1);
  6530. border-radius:4px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-size:14px;
  6535. }
  6536. #u95265 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:800px;
  6540. top:103px;
  6541. width:140px;
  6542. height:30px;
  6543. display:flex;
  6544. font-size:14px;
  6545. }
  6546. #u95265 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 2px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u95265_text {
  6554. border-width:0px;
  6555. word-wrap:break-word;
  6556. text-transform:none;
  6557. visibility:hidden;
  6558. }
  6559. #u95266_input {
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:134px;
  6564. height:23px;
  6565. padding:2px 2px 2px 2px;
  6566. font-family:'ArialMT', 'Arial', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:14px;
  6570. letter-spacing:normal;
  6571. color:#AAAAAA;
  6572. vertical-align:none;
  6573. text-align:left;
  6574. text-transform:none;
  6575. background-color:transparent;
  6576. border-color:transparent;
  6577. }
  6578. #u95266_input.disabled {
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:134px;
  6583. height:23px;
  6584. padding:2px 2px 2px 2px;
  6585. font-family:'ArialMT', 'Arial', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:14px;
  6589. letter-spacing:normal;
  6590. color:#AAAAAA;
  6591. vertical-align:none;
  6592. text-align:left;
  6593. text-transform:none;
  6594. background-color:transparent;
  6595. border-color:transparent;
  6596. }
  6597. #u95266_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:134px;
  6603. height:23px;
  6604. background:inherit;
  6605. background-color:rgba(255, 255, 255, 1);
  6606. border:none;
  6607. border-radius:0px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. font-size:14px;
  6612. color:#AAAAAA;
  6613. }
  6614. #u95266 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:804px;
  6618. top:105px;
  6619. width:134px;
  6620. height:23px;
  6621. display:flex;
  6622. font-size:14px;
  6623. color:#AAAAAA;
  6624. }
  6625. #u95266 .text {
  6626. position:absolute;
  6627. align-self:flex-start;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u95266_div.disabled {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:0px;
  6636. top:0px;
  6637. width:134px;
  6638. height:23px;
  6639. background:inherit;
  6640. background-color:rgba(240, 240, 240, 1);
  6641. border:none;
  6642. border-radius:0px;
  6643. -moz-box-shadow:none;
  6644. -webkit-box-shadow:none;
  6645. box-shadow:none;
  6646. font-size:14px;
  6647. color:#AAAAAA;
  6648. }
  6649. #u95266.disabled {
  6650. }
  6651. .u95266_input_option {
  6652. font-size:14px;
  6653. }
  6654. #u95267 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:0px;
  6660. height:0px;
  6661. }
  6662. #u95268_div {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:140px;
  6668. height:30px;
  6669. background:inherit;
  6670. background-color:rgba(255, 255, 255, 1);
  6671. box-sizing:border-box;
  6672. border-width:1px;
  6673. border-style:solid;
  6674. border-color:rgba(215, 215, 215, 1);
  6675. border-radius:4px;
  6676. -moz-box-shadow:none;
  6677. -webkit-box-shadow:none;
  6678. box-shadow:none;
  6679. font-size:14px;
  6680. }
  6681. #u95268 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:950px;
  6685. top:103px;
  6686. width:140px;
  6687. height:30px;
  6688. display:flex;
  6689. font-size:14px;
  6690. }
  6691. #u95268 .text {
  6692. position:absolute;
  6693. align-self:center;
  6694. padding:2px 2px 2px 2px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u95268_text {
  6699. border-width:0px;
  6700. word-wrap:break-word;
  6701. text-transform:none;
  6702. visibility:hidden;
  6703. }
  6704. #u95269_input {
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:134px;
  6709. height:23px;
  6710. padding:2px 2px 2px 2px;
  6711. font-family:'ArialMT', 'Arial', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:14px;
  6715. letter-spacing:normal;
  6716. color:#AAAAAA;
  6717. vertical-align:none;
  6718. text-align:left;
  6719. text-transform:none;
  6720. background-color:transparent;
  6721. border-color:transparent;
  6722. }
  6723. #u95269_input.disabled {
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:134px;
  6728. height:23px;
  6729. padding:2px 2px 2px 2px;
  6730. font-family:'ArialMT', 'Arial', sans-serif;
  6731. font-weight:400;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. letter-spacing:normal;
  6735. color:#AAAAAA;
  6736. vertical-align:none;
  6737. text-align:left;
  6738. text-transform:none;
  6739. background-color:transparent;
  6740. border-color:transparent;
  6741. }
  6742. #u95269_div {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:134px;
  6748. height:23px;
  6749. background:inherit;
  6750. background-color:rgba(255, 255, 255, 1);
  6751. border:none;
  6752. border-radius:0px;
  6753. -moz-box-shadow:none;
  6754. -webkit-box-shadow:none;
  6755. box-shadow:none;
  6756. font-size:14px;
  6757. color:#AAAAAA;
  6758. }
  6759. #u95269 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:954px;
  6763. top:105px;
  6764. width:134px;
  6765. height:23px;
  6766. display:flex;
  6767. font-size:14px;
  6768. color:#AAAAAA;
  6769. }
  6770. #u95269 .text {
  6771. position:absolute;
  6772. align-self:flex-start;
  6773. padding:2px 2px 2px 2px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u95269_div.disabled {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:134px;
  6783. height:23px;
  6784. background:inherit;
  6785. background-color:rgba(240, 240, 240, 1);
  6786. border:none;
  6787. border-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-size:14px;
  6792. color:#AAAAAA;
  6793. }
  6794. #u95269.disabled {
  6795. }
  6796. .u95269_input_option {
  6797. font-size:14px;
  6798. }
  6799. #u95270 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:0px;
  6805. height:0px;
  6806. }
  6807. #u95271_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:140px;
  6813. height:30px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 1);
  6816. box-sizing:border-box;
  6817. border-width:1px;
  6818. border-style:solid;
  6819. border-color:rgba(201, 201, 201, 1);
  6820. border-radius:4px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. font-family:'Microsoft YaHei', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:14px;
  6828. color:#CCCCCC;
  6829. text-align:left;
  6830. }
  6831. #u95271 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:348px;
  6835. top:143px;
  6836. width:140px;
  6837. height:30px;
  6838. display:flex;
  6839. font-family:'Microsoft YaHei', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:14px;
  6843. color:#CCCCCC;
  6844. text-align:left;
  6845. }
  6846. #u95271 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 8px 2px 8px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u95271_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u95272_input {
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:127px;
  6864. height:25px;
  6865. padding:2px 2px 2px 2px;
  6866. font-family:'Microsoft YaHei', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:10px;
  6870. letter-spacing:normal;
  6871. color:#000000;
  6872. vertical-align:none;
  6873. text-align:left;
  6874. text-transform:none;
  6875. background-color:transparent;
  6876. border-color:transparent;
  6877. }
  6878. #u95272_input.disabled {
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:127px;
  6883. height:25px;
  6884. padding:2px 2px 2px 2px;
  6885. font-family:'Microsoft YaHei', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:10px;
  6889. letter-spacing:normal;
  6890. color:#000000;
  6891. vertical-align:none;
  6892. text-align:left;
  6893. text-transform:none;
  6894. background-color:transparent;
  6895. border-color:transparent;
  6896. }
  6897. #u95272_div {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:127px;
  6903. height:25px;
  6904. background:inherit;
  6905. background-color:rgba(255, 255, 255, 1);
  6906. border:none;
  6907. border-radius:0px;
  6908. -moz-box-shadow:none;
  6909. -webkit-box-shadow:none;
  6910. box-shadow:none;
  6911. font-family:'Microsoft YaHei', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:10px;
  6915. }
  6916. #u95272 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:356px;
  6920. top:144px;
  6921. width:127px;
  6922. height:25px;
  6923. display:flex;
  6924. font-family:'Microsoft YaHei', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:10px;
  6928. }
  6929. #u95272 .text {
  6930. position:absolute;
  6931. align-self:center;
  6932. padding:2px 2px 2px 2px;
  6933. box-sizing:border-box;
  6934. width:100%;
  6935. }
  6936. #u95272_div.disabled {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:127px;
  6942. height:25px;
  6943. background:inherit;
  6944. background-color:rgba(240, 240, 240, 1);
  6945. border:none;
  6946. border-radius:0px;
  6947. -moz-box-shadow:none;
  6948. -webkit-box-shadow:none;
  6949. box-shadow:none;
  6950. font-family:'Microsoft YaHei', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:10px;
  6954. }
  6955. #u95272.disabled {
  6956. }
  6957. #u95273 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:0px;
  6963. height:0px;
  6964. }
  6965. #u95274_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:140px;
  6971. height:30px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 1);
  6974. box-sizing:border-box;
  6975. border-width:1px;
  6976. border-style:solid;
  6977. border-color:rgba(201, 201, 201, 1);
  6978. border-radius:4px;
  6979. -moz-box-shadow:none;
  6980. -webkit-box-shadow:none;
  6981. box-shadow:none;
  6982. font-family:'Microsoft YaHei', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:14px;
  6986. color:#CCCCCC;
  6987. text-align:left;
  6988. }
  6989. #u95274 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:498px;
  6993. top:143px;
  6994. width:140px;
  6995. height:30px;
  6996. display:flex;
  6997. font-family:'Microsoft YaHei', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:14px;
  7001. color:#CCCCCC;
  7002. text-align:left;
  7003. }
  7004. #u95274 .text {
  7005. position:absolute;
  7006. align-self:center;
  7007. padding:2px 8px 2px 8px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u95274_text {
  7012. border-width:0px;
  7013. word-wrap:break-word;
  7014. text-transform:none;
  7015. visibility:hidden;
  7016. }
  7017. #u95275_input {
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:127px;
  7022. height:25px;
  7023. padding:2px 2px 2px 2px;
  7024. font-family:'Microsoft YaHei', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:10px;
  7028. letter-spacing:normal;
  7029. color:#000000;
  7030. vertical-align:none;
  7031. text-align:left;
  7032. text-transform:none;
  7033. background-color:transparent;
  7034. border-color:transparent;
  7035. }
  7036. #u95275_input.disabled {
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:127px;
  7041. height:25px;
  7042. padding:2px 2px 2px 2px;
  7043. font-family:'Microsoft YaHei', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:10px;
  7047. letter-spacing:normal;
  7048. color:#000000;
  7049. vertical-align:none;
  7050. text-align:left;
  7051. text-transform:none;
  7052. background-color:transparent;
  7053. border-color:transparent;
  7054. }
  7055. #u95275_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:127px;
  7061. height:25px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 1);
  7064. border:none;
  7065. border-radius:0px;
  7066. -moz-box-shadow:none;
  7067. -webkit-box-shadow:none;
  7068. box-shadow:none;
  7069. font-family:'Microsoft YaHei', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:10px;
  7073. }
  7074. #u95275 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:506px;
  7078. top:144px;
  7079. width:127px;
  7080. height:25px;
  7081. display:flex;
  7082. font-family:'Microsoft YaHei', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:10px;
  7086. }
  7087. #u95275 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u95275_div.disabled {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:0px;
  7098. top:0px;
  7099. width:127px;
  7100. height:25px;
  7101. background:inherit;
  7102. background-color:rgba(240, 240, 240, 1);
  7103. border:none;
  7104. border-radius:0px;
  7105. -moz-box-shadow:none;
  7106. -webkit-box-shadow:none;
  7107. box-shadow:none;
  7108. font-family:'Microsoft YaHei', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:10px;
  7112. }
  7113. #u95275.disabled {
  7114. }
  7115. #u95276 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:0px;
  7121. height:0px;
  7122. }
  7123. #u95277_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:140px;
  7129. height:30px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 1);
  7132. box-sizing:border-box;
  7133. border-width:1px;
  7134. border-style:solid;
  7135. border-color:rgba(215, 215, 215, 1);
  7136. border-radius:4px;
  7137. -moz-box-shadow:none;
  7138. -webkit-box-shadow:none;
  7139. box-shadow:none;
  7140. font-size:14px;
  7141. }
  7142. #u95277 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:650px;
  7146. top:143px;
  7147. width:140px;
  7148. height:30px;
  7149. display:flex;
  7150. font-size:14px;
  7151. }
  7152. #u95277 .text {
  7153. position:absolute;
  7154. align-self:center;
  7155. padding:2px 2px 2px 2px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u95277_text {
  7160. border-width:0px;
  7161. word-wrap:break-word;
  7162. text-transform:none;
  7163. visibility:hidden;
  7164. }
  7165. #u95278_input {
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:134px;
  7170. height:23px;
  7171. padding:2px 2px 2px 2px;
  7172. font-family:'ArialMT', 'Arial', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:14px;
  7176. letter-spacing:normal;
  7177. color:#AAAAAA;
  7178. vertical-align:none;
  7179. text-align:left;
  7180. text-transform:none;
  7181. background-color:transparent;
  7182. border-color:transparent;
  7183. }
  7184. #u95278_input.disabled {
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:134px;
  7189. height:23px;
  7190. padding:2px 2px 2px 2px;
  7191. font-family:'ArialMT', 'Arial', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. letter-spacing:normal;
  7196. color:#AAAAAA;
  7197. vertical-align:none;
  7198. text-align:left;
  7199. text-transform:none;
  7200. background-color:transparent;
  7201. border-color:transparent;
  7202. }
  7203. #u95278_div {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:0px;
  7207. top:0px;
  7208. width:134px;
  7209. height:23px;
  7210. background:inherit;
  7211. background-color:rgba(255, 255, 255, 1);
  7212. border:none;
  7213. border-radius:0px;
  7214. -moz-box-shadow:none;
  7215. -webkit-box-shadow:none;
  7216. box-shadow:none;
  7217. font-size:14px;
  7218. color:#AAAAAA;
  7219. }
  7220. #u95278 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:654px;
  7224. top:145px;
  7225. width:134px;
  7226. height:23px;
  7227. display:flex;
  7228. font-size:14px;
  7229. color:#AAAAAA;
  7230. }
  7231. #u95278 .text {
  7232. position:absolute;
  7233. align-self:flex-start;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u95278_div.disabled {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:134px;
  7244. height:23px;
  7245. background:inherit;
  7246. background-color:rgba(240, 240, 240, 1);
  7247. border:none;
  7248. border-radius:0px;
  7249. -moz-box-shadow:none;
  7250. -webkit-box-shadow:none;
  7251. box-shadow:none;
  7252. font-size:14px;
  7253. color:#AAAAAA;
  7254. }
  7255. #u95278.disabled {
  7256. }
  7257. .u95278_input_option {
  7258. font-size:14px;
  7259. }
  7260. #u95279 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:0px;
  7266. height:0px;
  7267. }
  7268. #u95280_div {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:140px;
  7274. height:30px;
  7275. background:inherit;
  7276. background-color:rgba(255, 255, 255, 1);
  7277. box-sizing:border-box;
  7278. border-width:1px;
  7279. border-style:solid;
  7280. border-color:rgba(201, 201, 201, 1);
  7281. border-radius:4px;
  7282. -moz-box-shadow:none;
  7283. -webkit-box-shadow:none;
  7284. box-shadow:none;
  7285. font-family:'Microsoft YaHei', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#CCCCCC;
  7290. text-align:left;
  7291. }
  7292. #u95280 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:800px;
  7296. top:143px;
  7297. width:140px;
  7298. height:30px;
  7299. display:flex;
  7300. font-family:'Microsoft YaHei', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:14px;
  7304. color:#CCCCCC;
  7305. text-align:left;
  7306. }
  7307. #u95280 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 8px 2px 8px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u95280_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u95281_input {
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:127px;
  7325. height:25px;
  7326. padding:2px 2px 2px 2px;
  7327. font-family:'Microsoft YaHei', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:10px;
  7331. letter-spacing:normal;
  7332. color:#000000;
  7333. vertical-align:none;
  7334. text-align:left;
  7335. text-transform:none;
  7336. background-color:transparent;
  7337. border-color:transparent;
  7338. }
  7339. #u95281_input.disabled {
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:127px;
  7344. height:25px;
  7345. padding:2px 2px 2px 2px;
  7346. font-family:'Microsoft YaHei', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:10px;
  7350. letter-spacing:normal;
  7351. color:#000000;
  7352. vertical-align:none;
  7353. text-align:left;
  7354. text-transform:none;
  7355. background-color:transparent;
  7356. border-color:transparent;
  7357. }
  7358. #u95281_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:127px;
  7364. height:25px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 1);
  7367. border:none;
  7368. border-radius:0px;
  7369. -moz-box-shadow:none;
  7370. -webkit-box-shadow:none;
  7371. box-shadow:none;
  7372. font-family:'Microsoft YaHei', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:10px;
  7376. }
  7377. #u95281 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:808px;
  7381. top:144px;
  7382. width:127px;
  7383. height:25px;
  7384. display:flex;
  7385. font-family:'Microsoft YaHei', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:10px;
  7389. }
  7390. #u95281 .text {
  7391. position:absolute;
  7392. align-self:center;
  7393. padding:2px 2px 2px 2px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u95281_div.disabled {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:127px;
  7403. height:25px;
  7404. background:inherit;
  7405. background-color:rgba(240, 240, 240, 1);
  7406. border:none;
  7407. border-radius:0px;
  7408. -moz-box-shadow:none;
  7409. -webkit-box-shadow:none;
  7410. box-shadow:none;
  7411. font-family:'Microsoft YaHei', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:10px;
  7415. }
  7416. #u95281.disabled {
  7417. }
  7418. #u95282 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:0px;
  7424. height:0px;
  7425. }
  7426. #u95283_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:140px;
  7432. height:30px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 1);
  7435. box-sizing:border-box;
  7436. border-width:1px;
  7437. border-style:solid;
  7438. border-color:rgba(201, 201, 201, 1);
  7439. border-radius:4px;
  7440. -moz-box-shadow:none;
  7441. -webkit-box-shadow:none;
  7442. box-shadow:none;
  7443. font-family:'Microsoft YaHei', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:14px;
  7447. color:#CCCCCC;
  7448. text-align:left;
  7449. }
  7450. #u95283 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:1250px;
  7454. top:103px;
  7455. width:140px;
  7456. height:30px;
  7457. display:flex;
  7458. font-family:'Microsoft YaHei', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:14px;
  7462. color:#CCCCCC;
  7463. text-align:left;
  7464. }
  7465. #u95283 .text {
  7466. position:absolute;
  7467. align-self:center;
  7468. padding:2px 8px 2px 8px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u95283_text {
  7473. border-width:0px;
  7474. word-wrap:break-word;
  7475. text-transform:none;
  7476. visibility:hidden;
  7477. }
  7478. #u95284_input {
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:127px;
  7483. height:25px;
  7484. padding:2px 2px 2px 2px;
  7485. font-family:'Microsoft YaHei', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:10px;
  7489. letter-spacing:normal;
  7490. color:#000000;
  7491. vertical-align:none;
  7492. text-align:left;
  7493. text-transform:none;
  7494. background-color:transparent;
  7495. border-color:transparent;
  7496. }
  7497. #u95284_input.disabled {
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:127px;
  7502. height:25px;
  7503. padding:2px 2px 2px 2px;
  7504. font-family:'Microsoft YaHei', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:10px;
  7508. letter-spacing:normal;
  7509. color:#000000;
  7510. vertical-align:none;
  7511. text-align:left;
  7512. text-transform:none;
  7513. background-color:transparent;
  7514. border-color:transparent;
  7515. }
  7516. #u95284_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:127px;
  7522. height:25px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 1);
  7525. border:none;
  7526. border-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'Microsoft YaHei', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:10px;
  7534. }
  7535. #u95284 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:1258px;
  7539. top:104px;
  7540. width:127px;
  7541. height:25px;
  7542. display:flex;
  7543. font-family:'Microsoft YaHei', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:10px;
  7547. }
  7548. #u95284 .text {
  7549. position:absolute;
  7550. align-self:center;
  7551. padding:2px 2px 2px 2px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u95284_div.disabled {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:127px;
  7561. height:25px;
  7562. background:inherit;
  7563. background-color:rgba(240, 240, 240, 1);
  7564. border:none;
  7565. border-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'Microsoft YaHei', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:10px;
  7573. }
  7574. #u95284.disabled {
  7575. }
  7576. #u95285 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:0px;
  7580. top:0px;
  7581. width:0px;
  7582. height:0px;
  7583. }
  7584. #u95286_div {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:140px;
  7590. height:30px;
  7591. background:inherit;
  7592. background-color:rgba(255, 255, 255, 1);
  7593. box-sizing:border-box;
  7594. border-width:1px;
  7595. border-style:solid;
  7596. border-color:rgba(215, 215, 215, 1);
  7597. border-radius:4px;
  7598. -moz-box-shadow:none;
  7599. -webkit-box-shadow:none;
  7600. box-shadow:none;
  7601. font-size:14px;
  7602. }
  7603. #u95286 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:1100px;
  7607. top:103px;
  7608. width:140px;
  7609. height:30px;
  7610. display:flex;
  7611. font-size:14px;
  7612. }
  7613. #u95286 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:2px 2px 2px 2px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u95286_text {
  7621. border-width:0px;
  7622. word-wrap:break-word;
  7623. text-transform:none;
  7624. visibility:hidden;
  7625. }
  7626. #u95287_input {
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:134px;
  7631. height:23px;
  7632. padding:2px 2px 2px 2px;
  7633. font-family:'ArialMT', 'Arial', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:14px;
  7637. letter-spacing:normal;
  7638. color:#AAAAAA;
  7639. vertical-align:none;
  7640. text-align:left;
  7641. text-transform:none;
  7642. background-color:transparent;
  7643. border-color:transparent;
  7644. }
  7645. #u95287_input.disabled {
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:134px;
  7650. height:23px;
  7651. padding:2px 2px 2px 2px;
  7652. font-family:'ArialMT', 'Arial', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:14px;
  7656. letter-spacing:normal;
  7657. color:#AAAAAA;
  7658. vertical-align:none;
  7659. text-align:left;
  7660. text-transform:none;
  7661. background-color:transparent;
  7662. border-color:transparent;
  7663. }
  7664. #u95287_div {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:134px;
  7670. height:23px;
  7671. background:inherit;
  7672. background-color:rgba(255, 255, 255, 1);
  7673. border:none;
  7674. border-radius:0px;
  7675. -moz-box-shadow:none;
  7676. -webkit-box-shadow:none;
  7677. box-shadow:none;
  7678. font-size:14px;
  7679. color:#AAAAAA;
  7680. }
  7681. #u95287 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:1104px;
  7685. top:105px;
  7686. width:134px;
  7687. height:23px;
  7688. display:flex;
  7689. font-size:14px;
  7690. color:#AAAAAA;
  7691. }
  7692. #u95287 .text {
  7693. position:absolute;
  7694. align-self:flex-start;
  7695. padding:2px 2px 2px 2px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u95287_div.disabled {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:134px;
  7705. height:23px;
  7706. background:inherit;
  7707. background-color:rgba(240, 240, 240, 1);
  7708. border:none;
  7709. border-radius:0px;
  7710. -moz-box-shadow:none;
  7711. -webkit-box-shadow:none;
  7712. box-shadow:none;
  7713. font-size:14px;
  7714. color:#AAAAAA;
  7715. }
  7716. #u95287.disabled {
  7717. }
  7718. .u95287_input_option {
  7719. font-size:14px;
  7720. }
  7721. #u95288 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:0px;
  7727. height:0px;
  7728. }
  7729. #u95289_div {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:0px;
  7733. top:0px;
  7734. width:400px;
  7735. height:160px;
  7736. background:inherit;
  7737. background-color:rgba(255, 255, 255, 1);
  7738. box-sizing:border-box;
  7739. border-width:1px;
  7740. border-style:solid;
  7741. border-color:rgba(204, 204, 204, 1);
  7742. border-radius:0px;
  7743. -moz-box-shadow:none;
  7744. -webkit-box-shadow:none;
  7745. box-shadow:none;
  7746. font-family:'Microsoft YaHei', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. }
  7750. #u95289 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:984px;
  7754. top:609px;
  7755. width:400px;
  7756. height:160px;
  7757. display:flex;
  7758. font-family:'Microsoft YaHei', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. }
  7762. #u95289 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 2px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u95289_text {
  7770. border-width:0px;
  7771. word-wrap:break-word;
  7772. text-transform:none;
  7773. visibility:hidden;
  7774. }
  7775. #u95290_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:127px;
  7781. height:21px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 0);
  7784. border:none;
  7785. border-radius:0px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7790. font-weight:650;
  7791. font-style:normal;
  7792. font-size:18px;
  7793. color:#000000;
  7794. line-height:22px;
  7795. }
  7796. #u95290 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:1034px;
  7800. top:634px;
  7801. width:127px;
  7802. height:21px;
  7803. display:flex;
  7804. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7805. font-weight:650;
  7806. font-style:normal;
  7807. font-size:18px;
  7808. color:#000000;
  7809. line-height:22px;
  7810. }
  7811. #u95290 .text {
  7812. position:absolute;
  7813. align-self:flex-start;
  7814. padding:0px 0px 0px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u95290_text {
  7819. border-width:0px;
  7820. white-space:nowrap;
  7821. text-transform:none;
  7822. }
  7823. #u95291_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:61px;
  7829. height:32px;
  7830. background:inherit;
  7831. background-color:rgba(24, 144, 255, 1);
  7832. border:none;
  7833. border-radius:4px;
  7834. -moz-box-shadow:none;
  7835. -webkit-box-shadow:none;
  7836. box-shadow:none;
  7837. font-family:'Microsoft YaHei', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:14px;
  7841. color:#FFFFFF;
  7842. }
  7843. #u95291 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:1303px;
  7847. top:717px;
  7848. width:61px;
  7849. height:32px;
  7850. display:flex;
  7851. font-family:'Microsoft YaHei', sans-serif;
  7852. font-weight:400;
  7853. font-style:normal;
  7854. font-size:14px;
  7855. color:#FFFFFF;
  7856. }
  7857. #u95291 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 16px 2px 16px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u95291_text {
  7865. border-width:0px;
  7866. white-space:nowrap;
  7867. text-transform:none;
  7868. }
  7869. #u95292_div {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:66px;
  7875. height:32px;
  7876. background:inherit;
  7877. background-color:rgba(255, 255, 255, 1);
  7878. box-sizing:border-box;
  7879. border-width:1px;
  7880. border-style:solid;
  7881. border-color:rgba(217, 217, 217, 1);
  7882. border-radius:4px;
  7883. -moz-box-shadow:none;
  7884. -webkit-box-shadow:none;
  7885. box-shadow:none;
  7886. font-family:'Microsoft YaHei', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:14px;
  7890. color:rgba(0, 0, 0, 0.647058823529412);
  7891. line-height:21px;
  7892. }
  7893. #u95292 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:1221px;
  7897. top:717px;
  7898. width:66px;
  7899. height:32px;
  7900. display:flex;
  7901. font-family:'Microsoft YaHei', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:14px;
  7905. color:rgba(0, 0, 0, 0.647058823529412);
  7906. line-height:21px;
  7907. }
  7908. #u95292 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 16px 2px 16px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u95292_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u95293_img {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:24px;
  7926. height:24px;
  7927. }
  7928. #u95293 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:998px;
  7932. top:632px;
  7933. width:24px;
  7934. height:24px;
  7935. display:flex;
  7936. font-family:'Microsoft YaHei', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:52px;
  7940. color:#FAAD14;
  7941. }
  7942. #u95293 .text {
  7943. position:absolute;
  7944. align-self:center;
  7945. padding:2px 2px 2px 2px;
  7946. box-sizing:border-box;
  7947. width:100%;
  7948. }
  7949. #u95293_text {
  7950. border-width:0px;
  7951. word-wrap:break-word;
  7952. text-transform:none;
  7953. visibility:hidden;
  7954. }
  7955. #u95294_div {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:326px;
  7961. height:44px;
  7962. background:inherit;
  7963. background-color:rgba(255, 255, 255, 0);
  7964. border:none;
  7965. border-radius:0px;
  7966. -moz-box-shadow:none;
  7967. -webkit-box-shadow:none;
  7968. box-shadow:none;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:12px;
  7973. color:#7F7F7F;
  7974. line-height:22px;
  7975. }
  7976. #u95294 {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:1034px;
  7980. top:666px;
  7981. width:326px;
  7982. height:44px;
  7983. display:flex;
  7984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:12px;
  7988. color:#7F7F7F;
  7989. line-height:22px;
  7990. }
  7991. #u95294 .text {
  7992. position:absolute;
  7993. align-self:flex-start;
  7994. padding:0px 0px 0px 0px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u95294_text {
  7999. border-width:0px;
  8000. word-wrap:break-word;
  8001. text-transform:none;
  8002. }
  8003. #u95295 {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:0px;
  8009. height:0px;
  8010. }
  8011. #u95296_div {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:0px;
  8015. top:0px;
  8016. width:400px;
  8017. height:160px;
  8018. background:inherit;
  8019. background-color:rgba(255, 255, 255, 1);
  8020. box-sizing:border-box;
  8021. border-width:1px;
  8022. border-style:solid;
  8023. border-color:rgba(204, 204, 204, 1);
  8024. border-radius:0px;
  8025. -moz-box-shadow:none;
  8026. -webkit-box-shadow:none;
  8027. box-shadow:none;
  8028. font-family:'Microsoft YaHei', sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. }
  8032. #u95296 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:984px;
  8036. top:794px;
  8037. width:400px;
  8038. height:160px;
  8039. display:flex;
  8040. font-family:'Microsoft YaHei', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. }
  8044. #u95296 .text {
  8045. position:absolute;
  8046. align-self:center;
  8047. padding:2px 2px 2px 2px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u95296_text {
  8052. border-width:0px;
  8053. word-wrap:break-word;
  8054. text-transform:none;
  8055. visibility:hidden;
  8056. }
  8057. #u95297_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:127px;
  8063. height:21px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 0);
  8066. border:none;
  8067. border-radius:0px;
  8068. -moz-box-shadow:none;
  8069. -webkit-box-shadow:none;
  8070. box-shadow:none;
  8071. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8072. font-weight:650;
  8073. font-style:normal;
  8074. font-size:18px;
  8075. color:#000000;
  8076. line-height:22px;
  8077. }
  8078. #u95297 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:1044px;
  8082. top:829px;
  8083. width:127px;
  8084. height:21px;
  8085. display:flex;
  8086. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8087. font-weight:650;
  8088. font-style:normal;
  8089. font-size:18px;
  8090. color:#000000;
  8091. line-height:22px;
  8092. }
  8093. #u95297 .text {
  8094. position:absolute;
  8095. align-self:flex-start;
  8096. padding:0px 0px 0px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u95297_text {
  8101. border-width:0px;
  8102. white-space:nowrap;
  8103. text-transform:none;
  8104. }
  8105. #u95298_div {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:61px;
  8111. height:32px;
  8112. background:inherit;
  8113. background-color:rgba(24, 144, 255, 1);
  8114. border:none;
  8115. border-radius:4px;
  8116. -moz-box-shadow:none;
  8117. -webkit-box-shadow:none;
  8118. box-shadow:none;
  8119. font-family:'Microsoft YaHei', sans-serif;
  8120. font-weight:400;
  8121. font-style:normal;
  8122. font-size:14px;
  8123. color:#FFFFFF;
  8124. }
  8125. #u95298 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:1303px;
  8129. top:899px;
  8130. width:61px;
  8131. height:32px;
  8132. display:flex;
  8133. font-family:'Microsoft YaHei', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:14px;
  8137. color:#FFFFFF;
  8138. }
  8139. #u95298 .text {
  8140. position:absolute;
  8141. align-self:center;
  8142. padding:2px 16px 2px 16px;
  8143. box-sizing:border-box;
  8144. width:100%;
  8145. }
  8146. #u95298_text {
  8147. border-width:0px;
  8148. white-space:nowrap;
  8149. text-transform:none;
  8150. }
  8151. #u95299_div {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:66px;
  8157. height:32px;
  8158. background:inherit;
  8159. background-color:rgba(255, 255, 255, 1);
  8160. box-sizing:border-box;
  8161. border-width:1px;
  8162. border-style:solid;
  8163. border-color:rgba(217, 217, 217, 1);
  8164. border-radius:4px;
  8165. -moz-box-shadow:none;
  8166. -webkit-box-shadow:none;
  8167. box-shadow:none;
  8168. font-family:'Microsoft YaHei', sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. font-size:14px;
  8172. color:rgba(0, 0, 0, 0.647058823529412);
  8173. line-height:21px;
  8174. }
  8175. #u95299 {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:1221px;
  8179. top:899px;
  8180. width:66px;
  8181. height:32px;
  8182. display:flex;
  8183. font-family:'Microsoft YaHei', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:14px;
  8187. color:rgba(0, 0, 0, 0.647058823529412);
  8188. line-height:21px;
  8189. }
  8190. #u95299 .text {
  8191. position:absolute;
  8192. align-self:center;
  8193. padding:2px 16px 2px 16px;
  8194. box-sizing:border-box;
  8195. width:100%;
  8196. }
  8197. #u95299_text {
  8198. border-width:0px;
  8199. white-space:nowrap;
  8200. text-transform:none;
  8201. }
  8202. #u95300_div {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:241px;
  8208. height:22px;
  8209. background:inherit;
  8210. background-color:rgba(255, 255, 255, 0);
  8211. border:none;
  8212. border-radius:0px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. color:#7F7F7F;
  8221. line-height:22px;
  8222. }
  8223. #u95300 {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:1044px;
  8227. top:861px;
  8228. width:241px;
  8229. height:22px;
  8230. display:flex;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:12px;
  8235. color:#7F7F7F;
  8236. line-height:22px;
  8237. }
  8238. #u95300 .text {
  8239. position:absolute;
  8240. align-self:flex-start;
  8241. padding:0px 0px 0px 0px;
  8242. box-sizing:border-box;
  8243. width:100%;
  8244. }
  8245. #u95300_text {
  8246. border-width:0px;
  8247. white-space:nowrap;
  8248. text-transform:none;
  8249. }
  8250. #u95301_img {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:24px;
  8256. height:24px;
  8257. }
  8258. #u95301 {
  8259. border-width:0px;
  8260. position:absolute;
  8261. left:1008px;
  8262. top:829px;
  8263. width:24px;
  8264. height:24px;
  8265. display:flex;
  8266. }
  8267. #u95301 .text {
  8268. position:absolute;
  8269. align-self:center;
  8270. padding:2px 2px 2px 2px;
  8271. box-sizing:border-box;
  8272. width:100%;
  8273. }
  8274. #u95301_text {
  8275. border-width:0px;
  8276. word-wrap:break-word;
  8277. text-transform:none;
  8278. visibility:hidden;
  8279. }
  8280. #u95302 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:0px;
  8284. top:0px;
  8285. width:0px;
  8286. height:0px;
  8287. }
  8288. #u95303_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:140px;
  8294. height:30px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 1);
  8297. box-sizing:border-box;
  8298. border-width:1px;
  8299. border-style:solid;
  8300. border-color:rgba(215, 215, 215, 1);
  8301. border-radius:4px;
  8302. -moz-box-shadow:none;
  8303. -webkit-box-shadow:none;
  8304. box-shadow:none;
  8305. font-size:14px;
  8306. }
  8307. #u95303 {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:350px;
  8311. top:103px;
  8312. width:140px;
  8313. height:30px;
  8314. display:flex;
  8315. font-size:14px;
  8316. }
  8317. #u95303 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:2px 2px 2px 2px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u95303_text {
  8325. border-width:0px;
  8326. word-wrap:break-word;
  8327. text-transform:none;
  8328. visibility:hidden;
  8329. }
  8330. #u95304_input {
  8331. position:absolute;
  8332. left:0px;
  8333. top:0px;
  8334. width:134px;
  8335. height:23px;
  8336. padding:2px 2px 2px 2px;
  8337. font-family:'ArialMT', 'Arial', sans-serif;
  8338. font-weight:400;
  8339. font-style:normal;
  8340. font-size:14px;
  8341. letter-spacing:normal;
  8342. color:#AAAAAA;
  8343. vertical-align:none;
  8344. text-align:left;
  8345. text-transform:none;
  8346. background-color:transparent;
  8347. border-color:transparent;
  8348. }
  8349. #u95304_input.disabled {
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:134px;
  8354. height:23px;
  8355. padding:2px 2px 2px 2px;
  8356. font-family:'ArialMT', 'Arial', sans-serif;
  8357. font-weight:400;
  8358. font-style:normal;
  8359. font-size:14px;
  8360. letter-spacing:normal;
  8361. color:#AAAAAA;
  8362. vertical-align:none;
  8363. text-align:left;
  8364. text-transform:none;
  8365. background-color:transparent;
  8366. border-color:transparent;
  8367. }
  8368. #u95304_div {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:134px;
  8374. height:23px;
  8375. background:inherit;
  8376. background-color:rgba(255, 255, 255, 1);
  8377. border:none;
  8378. border-radius:0px;
  8379. -moz-box-shadow:none;
  8380. -webkit-box-shadow:none;
  8381. box-shadow:none;
  8382. font-size:14px;
  8383. color:#AAAAAA;
  8384. }
  8385. #u95304 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:354px;
  8389. top:105px;
  8390. width:134px;
  8391. height:23px;
  8392. display:flex;
  8393. font-size:14px;
  8394. color:#AAAAAA;
  8395. }
  8396. #u95304 .text {
  8397. position:absolute;
  8398. align-self:flex-start;
  8399. padding:2px 2px 2px 2px;
  8400. box-sizing:border-box;
  8401. width:100%;
  8402. }
  8403. #u95304_div.disabled {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:134px;
  8409. height:23px;
  8410. background:inherit;
  8411. background-color:rgba(240, 240, 240, 1);
  8412. border:none;
  8413. border-radius:0px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-size:14px;
  8418. color:#AAAAAA;
  8419. }
  8420. #u95304.disabled {
  8421. }
  8422. .u95304_input_option {
  8423. font-size:14px;
  8424. }
  8425. #u95305 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:0px;
  8431. height:0px;
  8432. }
  8433. #u95306_div {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:200px;
  8439. height:1180px;
  8440. background:inherit;
  8441. background-color:rgba(255, 255, 255, 1);
  8442. border:none;
  8443. border-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. }
  8448. #u95306 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:120px;
  8452. top:50px;
  8453. width:200px;
  8454. height:1180px;
  8455. display:flex;
  8456. }
  8457. #u95306 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:2px 2px 2px 2px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u95306_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. visibility:hidden;
  8469. }
  8470. #u95307_div {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:200px;
  8476. height:60px;
  8477. background:inherit;
  8478. background-color:rgba(224, 231, 247, 1);
  8479. border:none;
  8480. border-radius:0px;
  8481. -moz-box-shadow:none;
  8482. -webkit-box-shadow:none;
  8483. box-shadow:none;
  8484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8485. font-weight:500;
  8486. font-style:normal;
  8487. font-size:18px;
  8488. }
  8489. #u95307 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:120px;
  8493. top:50px;
  8494. width:200px;
  8495. height:60px;
  8496. display:flex;
  8497. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8498. font-weight:500;
  8499. font-style:normal;
  8500. font-size:18px;
  8501. }
  8502. #u95307 .text {
  8503. position:absolute;
  8504. align-self:center;
  8505. padding:0px 0px 0px 20px;
  8506. box-sizing:border-box;
  8507. width:100%;
  8508. }
  8509. #u95307_text {
  8510. border-width:0px;
  8511. word-wrap:break-word;
  8512. text-transform:none;
  8513. }
  8514. #u95308_div {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:65px;
  8520. height:22px;
  8521. background:inherit;
  8522. background-color:rgba(255, 255, 255, 0);
  8523. border:none;
  8524. border-radius:0px;
  8525. -moz-box-shadow:none;
  8526. -webkit-box-shadow:none;
  8527. box-shadow:none;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:16px;
  8532. }
  8533. #u95308 {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:145px;
  8537. top:500px;
  8538. width:65px;
  8539. height:22px;
  8540. display:flex;
  8541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8542. font-weight:400;
  8543. font-style:normal;
  8544. font-size:16px;
  8545. }
  8546. #u95308 .text {
  8547. position:absolute;
  8548. align-self:flex-start;
  8549. padding:0px 0px 0px 0px;
  8550. box-sizing:border-box;
  8551. width:100%;
  8552. }
  8553. #u95308_text {
  8554. border-width:0px;
  8555. white-space:nowrap;
  8556. text-transform:none;
  8557. }
  8558. #u95309_div {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:79px;
  8564. height:17px;
  8565. background:inherit;
  8566. background-color:rgba(255, 255, 255, 0);
  8567. border:none;
  8568. border-radius:0px;
  8569. -moz-box-shadow:none;
  8570. -webkit-box-shadow:none;
  8571. box-shadow:none;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:12px;
  8576. color:#AAAAAA;
  8577. }
  8578. #u95309 {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:143px;
  8582. top:463px;
  8583. width:79px;
  8584. height:17px;
  8585. display:flex;
  8586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:12px;
  8590. color:#AAAAAA;
  8591. }
  8592. #u95309 .text {
  8593. position:absolute;
  8594. align-self:flex-start;
  8595. padding:0px 0px 0px 0px;
  8596. box-sizing:border-box;
  8597. width:100%;
  8598. }
  8599. #u95309_text {
  8600. border-width:0px;
  8601. white-space:nowrap;
  8602. text-transform:none;
  8603. }
  8604. #u95310_div {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:0px;
  8608. top:0px;
  8609. width:49px;
  8610. height:17px;
  8611. background:inherit;
  8612. background-color:rgba(255, 255, 255, 0);
  8613. border:none;
  8614. border-radius:0px;
  8615. -moz-box-shadow:none;
  8616. -webkit-box-shadow:none;
  8617. box-shadow:none;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:12px;
  8622. color:#AAAAAA;
  8623. }
  8624. #u95310 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:144px;
  8628. top:131px;
  8629. width:49px;
  8630. height:17px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:12px;
  8636. color:#AAAAAA;
  8637. }
  8638. #u95310 .text {
  8639. position:absolute;
  8640. align-self:flex-start;
  8641. padding:0px 0px 0px 0px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u95310_text {
  8646. border-width:0px;
  8647. white-space:nowrap;
  8648. text-transform:none;
  8649. }
  8650. #u95311_div {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:65px;
  8656. height:22px;
  8657. background:inherit;
  8658. background-color:rgba(255, 255, 255, 0);
  8659. border:none;
  8660. border-radius:0px;
  8661. -moz-box-shadow:none;
  8662. -webkit-box-shadow:none;
  8663. box-shadow:none;
  8664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8665. font-weight:400;
  8666. font-style:normal;
  8667. font-size:16px;
  8668. }
  8669. #u95311 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:146px;
  8673. top:168px;
  8674. width:65px;
  8675. height:22px;
  8676. display:flex;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:16px;
  8681. }
  8682. #u95311 .text {
  8683. position:absolute;
  8684. align-self:flex-start;
  8685. padding:0px 0px 0px 0px;
  8686. box-sizing:border-box;
  8687. width:100%;
  8688. }
  8689. #u95311_text {
  8690. border-width:0px;
  8691. white-space:nowrap;
  8692. text-transform:none;
  8693. }
  8694. #u95312_img {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:0px;
  8698. top:0px;
  8699. width:201px;
  8700. height:2px;
  8701. }
  8702. #u95312 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:120px;
  8706. top:442px;
  8707. width:200px;
  8708. height:1px;
  8709. display:flex;
  8710. }
  8711. #u95312 .text {
  8712. position:absolute;
  8713. align-self:center;
  8714. padding:2px 2px 2px 2px;
  8715. box-sizing:border-box;
  8716. width:100%;
  8717. }
  8718. #u95312_text {
  8719. border-width:0px;
  8720. word-wrap:break-word;
  8721. text-transform:none;
  8722. visibility:hidden;
  8723. }
  8724. #u95313_div {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:65px;
  8730. height:22px;
  8731. background:inherit;
  8732. background-color:rgba(255, 255, 255, 0);
  8733. border:none;
  8734. border-radius:0px;
  8735. -moz-box-shadow:none;
  8736. -webkit-box-shadow:none;
  8737. box-shadow:none;
  8738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8739. font-weight:400;
  8740. font-style:normal;
  8741. font-size:16px;
  8742. }
  8743. #u95313 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:145px;
  8747. top:542px;
  8748. width:65px;
  8749. height:22px;
  8750. display:flex;
  8751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. font-size:16px;
  8755. }
  8756. #u95313 .text {
  8757. position:absolute;
  8758. align-self:flex-start;
  8759. padding:0px 0px 0px 0px;
  8760. box-sizing:border-box;
  8761. width:100%;
  8762. }
  8763. #u95313_text {
  8764. border-width:0px;
  8765. white-space:nowrap;
  8766. text-transform:none;
  8767. }
  8768. #u95314_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:65px;
  8774. height:22px;
  8775. background:inherit;
  8776. background-color:rgba(255, 255, 255, 0);
  8777. border:none;
  8778. border-radius:0px;
  8779. -moz-box-shadow:none;
  8780. -webkit-box-shadow:none;
  8781. box-shadow:none;
  8782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:16px;
  8786. }
  8787. #u95314 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:146px;
  8791. top:272px;
  8792. width:65px;
  8793. height:22px;
  8794. display:flex;
  8795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8796. font-weight:400;
  8797. font-style:normal;
  8798. font-size:16px;
  8799. }
  8800. #u95314 .text {
  8801. position:absolute;
  8802. align-self:flex-start;
  8803. padding:0px 0px 0px 0px;
  8804. box-sizing:border-box;
  8805. width:100%;
  8806. }
  8807. #u95314_text {
  8808. border-width:0px;
  8809. white-space:nowrap;
  8810. text-transform:none;
  8811. }
  8812. #u95315_div {
  8813. border-width:0px;
  8814. position:absolute;
  8815. left:0px;
  8816. top:0px;
  8817. width:49px;
  8818. height:17px;
  8819. background:inherit;
  8820. background-color:rgba(255, 255, 255, 0);
  8821. border:none;
  8822. border-radius:0px;
  8823. -moz-box-shadow:none;
  8824. -webkit-box-shadow:none;
  8825. box-shadow:none;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:12px;
  8830. color:#AAAAAA;
  8831. }
  8832. #u95315 {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:144px;
  8836. top:235px;
  8837. width:49px;
  8838. height:17px;
  8839. display:flex;
  8840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8841. font-weight:400;
  8842. font-style:normal;
  8843. font-size:12px;
  8844. color:#AAAAAA;
  8845. }
  8846. #u95315 .text {
  8847. position:absolute;
  8848. align-self:flex-start;
  8849. padding:0px 0px 0px 0px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u95315_text {
  8854. border-width:0px;
  8855. white-space:nowrap;
  8856. text-transform:none;
  8857. }
  8858. #u95316_img {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:201px;
  8864. height:2px;
  8865. }
  8866. #u95316 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:121px;
  8870. top:214px;
  8871. width:200px;
  8872. height:1px;
  8873. display:flex;
  8874. }
  8875. #u95316 .text {
  8876. position:absolute;
  8877. align-self:center;
  8878. padding:2px 2px 2px 2px;
  8879. box-sizing:border-box;
  8880. width:100%;
  8881. }
  8882. #u95316_text {
  8883. border-width:0px;
  8884. word-wrap:break-word;
  8885. text-transform:none;
  8886. visibility:hidden;
  8887. }
  8888. #u95317_div {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:0px;
  8892. top:0px;
  8893. width:65px;
  8894. height:22px;
  8895. background:inherit;
  8896. background-color:rgba(255, 255, 255, 0);
  8897. border:none;
  8898. border-radius:0px;
  8899. -moz-box-shadow:none;
  8900. -webkit-box-shadow:none;
  8901. box-shadow:none;
  8902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8903. font-weight:400;
  8904. font-style:normal;
  8905. font-size:16px;
  8906. }
  8907. #u95317 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:146px;
  8911. top:314px;
  8912. width:65px;
  8913. height:22px;
  8914. display:flex;
  8915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8916. font-weight:400;
  8917. font-style:normal;
  8918. font-size:16px;
  8919. }
  8920. #u95317 .text {
  8921. position:absolute;
  8922. align-self:flex-start;
  8923. padding:0px 0px 0px 0px;
  8924. box-sizing:border-box;
  8925. width:100%;
  8926. }
  8927. #u95317_text {
  8928. border-width:0px;
  8929. white-space:nowrap;
  8930. text-transform:none;
  8931. }
  8932. #u95318_div {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:65px;
  8938. height:22px;
  8939. background:inherit;
  8940. background-color:rgba(255, 255, 255, 0);
  8941. border:none;
  8942. border-radius:0px;
  8943. -moz-box-shadow:none;
  8944. -webkit-box-shadow:none;
  8945. box-shadow:none;
  8946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. font-size:16px;
  8950. }
  8951. #u95318 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:146px;
  8955. top:356px;
  8956. width:65px;
  8957. height:22px;
  8958. display:flex;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:16px;
  8963. }
  8964. #u95318 .text {
  8965. position:absolute;
  8966. align-self:flex-start;
  8967. padding:0px 0px 0px 0px;
  8968. box-sizing:border-box;
  8969. width:100%;
  8970. }
  8971. #u95318_text {
  8972. border-width:0px;
  8973. white-space:nowrap;
  8974. text-transform:none;
  8975. }
  8976. #u95319_div {
  8977. border-width:0px;
  8978. position:absolute;
  8979. left:0px;
  8980. top:0px;
  8981. width:81px;
  8982. height:22px;
  8983. background:inherit;
  8984. background-color:rgba(255, 255, 255, 0);
  8985. border:none;
  8986. border-radius:0px;
  8987. -moz-box-shadow:none;
  8988. -webkit-box-shadow:none;
  8989. box-shadow:none;
  8990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:16px;
  8994. }
  8995. #u95319 {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:146px;
  8999. top:398px;
  9000. width:81px;
  9001. height:22px;
  9002. display:flex;
  9003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:16px;
  9007. }
  9008. #u95319 .text {
  9009. position:absolute;
  9010. align-self:flex-start;
  9011. padding:0px 0px 0px 0px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u95319_text {
  9016. border-width:0px;
  9017. white-space:nowrap;
  9018. text-transform:none;
  9019. }
  9020. #u95320_div {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:0px;
  9024. top:0px;
  9025. width:65px;
  9026. height:22px;
  9027. background:inherit;
  9028. background-color:rgba(255, 255, 255, 0);
  9029. border:none;
  9030. border-radius:0px;
  9031. -moz-box-shadow:none;
  9032. -webkit-box-shadow:none;
  9033. box-shadow:none;
  9034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9035. font-weight:400;
  9036. font-style:normal;
  9037. font-size:16px;
  9038. }
  9039. #u95320 {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:145px;
  9043. top:810px;
  9044. width:65px;
  9045. height:22px;
  9046. display:flex;
  9047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:16px;
  9051. }
  9052. #u95320 .text {
  9053. position:absolute;
  9054. align-self:flex-start;
  9055. padding:0px 0px 0px 0px;
  9056. box-sizing:border-box;
  9057. width:100%;
  9058. }
  9059. #u95320_text {
  9060. border-width:0px;
  9061. white-space:nowrap;
  9062. text-transform:none;
  9063. }
  9064. #u95321_div {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:0px;
  9068. top:0px;
  9069. width:65px;
  9070. height:22px;
  9071. background:inherit;
  9072. background-color:rgba(255, 255, 255, 0);
  9073. border:none;
  9074. border-radius:0px;
  9075. -moz-box-shadow:none;
  9076. -webkit-box-shadow:none;
  9077. box-shadow:none;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. font-size:16px;
  9082. }
  9083. #u95321 {
  9084. border-width:0px;
  9085. position:absolute;
  9086. left:145px;
  9087. top:642px;
  9088. width:65px;
  9089. height:22px;
  9090. display:flex;
  9091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9092. font-weight:400;
  9093. font-style:normal;
  9094. font-size:16px;
  9095. }
  9096. #u95321 .text {
  9097. position:absolute;
  9098. align-self:flex-start;
  9099. padding:0px 0px 0px 0px;
  9100. box-sizing:border-box;
  9101. width:100%;
  9102. }
  9103. #u95321_text {
  9104. border-width:0px;
  9105. white-space:nowrap;
  9106. text-transform:none;
  9107. }
  9108. #u95322_div {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:0px;
  9112. top:0px;
  9113. width:49px;
  9114. height:17px;
  9115. background:inherit;
  9116. background-color:rgba(255, 255, 255, 0);
  9117. border:none;
  9118. border-radius:0px;
  9119. -moz-box-shadow:none;
  9120. -webkit-box-shadow:none;
  9121. box-shadow:none;
  9122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. font-size:12px;
  9126. color:#AAAAAA;
  9127. }
  9128. #u95322 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:143px;
  9132. top:605px;
  9133. width:49px;
  9134. height:17px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:12px;
  9140. color:#AAAAAA;
  9141. }
  9142. #u95322 .text {
  9143. position:absolute;
  9144. align-self:flex-start;
  9145. padding:0px 0px 0px 0px;
  9146. box-sizing:border-box;
  9147. width:100%;
  9148. }
  9149. #u95322_text {
  9150. border-width:0px;
  9151. white-space:nowrap;
  9152. text-transform:none;
  9153. }
  9154. #u95323_img {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:201px;
  9160. height:2px;
  9161. }
  9162. #u95323 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:120px;
  9166. top:584px;
  9167. width:200px;
  9168. height:1px;
  9169. display:flex;
  9170. }
  9171. #u95323 .text {
  9172. position:absolute;
  9173. align-self:center;
  9174. padding:2px 2px 2px 2px;
  9175. box-sizing:border-box;
  9176. width:100%;
  9177. }
  9178. #u95323_text {
  9179. border-width:0px;
  9180. word-wrap:break-word;
  9181. text-transform:none;
  9182. visibility:hidden;
  9183. }
  9184. #u95324_div {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:65px;
  9190. height:22px;
  9191. background:inherit;
  9192. background-color:rgba(255, 255, 255, 0);
  9193. border:none;
  9194. border-radius:0px;
  9195. -moz-box-shadow:none;
  9196. -webkit-box-shadow:none;
  9197. box-shadow:none;
  9198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9199. font-weight:400;
  9200. font-style:normal;
  9201. font-size:16px;
  9202. }
  9203. #u95324 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:145px;
  9207. top:684px;
  9208. width:65px;
  9209. height:22px;
  9210. display:flex;
  9211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9212. font-weight:400;
  9213. font-style:normal;
  9214. font-size:16px;
  9215. }
  9216. #u95324 .text {
  9217. position:absolute;
  9218. align-self:flex-start;
  9219. padding:0px 0px 0px 0px;
  9220. box-sizing:border-box;
  9221. width:100%;
  9222. }
  9223. #u95324_text {
  9224. border-width:0px;
  9225. white-space:nowrap;
  9226. text-transform:none;
  9227. }
  9228. #u95325_div {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:65px;
  9234. height:22px;
  9235. background:inherit;
  9236. background-color:rgba(255, 255, 255, 0);
  9237. border:none;
  9238. border-radius:0px;
  9239. -moz-box-shadow:none;
  9240. -webkit-box-shadow:none;
  9241. box-shadow:none;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:16px;
  9246. }
  9247. #u95325 {
  9248. border-width:0px;
  9249. position:absolute;
  9250. left:145px;
  9251. top:726px;
  9252. width:65px;
  9253. height:22px;
  9254. display:flex;
  9255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9256. font-weight:400;
  9257. font-style:normal;
  9258. font-size:16px;
  9259. }
  9260. #u95325 .text {
  9261. position:absolute;
  9262. align-self:flex-start;
  9263. padding:0px 0px 0px 0px;
  9264. box-sizing:border-box;
  9265. width:100%;
  9266. }
  9267. #u95325_text {
  9268. border-width:0px;
  9269. white-space:nowrap;
  9270. text-transform:none;
  9271. }
  9272. #u95326_div {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:0px;
  9276. top:0px;
  9277. width:97px;
  9278. height:22px;
  9279. background:inherit;
  9280. background-color:rgba(255, 255, 255, 0);
  9281. border:none;
  9282. border-radius:0px;
  9283. -moz-box-shadow:none;
  9284. -webkit-box-shadow:none;
  9285. box-shadow:none;
  9286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9287. font-weight:400;
  9288. font-style:normal;
  9289. font-size:16px;
  9290. }
  9291. #u95326 {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:145px;
  9295. top:768px;
  9296. width:97px;
  9297. height:22px;
  9298. display:flex;
  9299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9300. font-weight:400;
  9301. font-style:normal;
  9302. font-size:16px;
  9303. }
  9304. #u95326 .text {
  9305. position:absolute;
  9306. align-self:flex-start;
  9307. padding:0px 0px 0px 0px;
  9308. box-sizing:border-box;
  9309. width:100%;
  9310. }
  9311. #u95326_text {
  9312. border-width:0px;
  9313. white-space:nowrap;
  9314. text-transform:none;
  9315. }
  9316. #u95327_div {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:65px;
  9322. height:22px;
  9323. background:inherit;
  9324. background-color:rgba(255, 255, 255, 0);
  9325. border:none;
  9326. border-radius:0px;
  9327. -moz-box-shadow:none;
  9328. -webkit-box-shadow:none;
  9329. box-shadow:none;
  9330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9331. font-weight:400;
  9332. font-style:normal;
  9333. font-size:16px;
  9334. }
  9335. #u95327 {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:145px;
  9339. top:910px;
  9340. width:65px;
  9341. height:22px;
  9342. display:flex;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:16px;
  9347. }
  9348. #u95327 .text {
  9349. position:absolute;
  9350. align-self:flex-start;
  9351. padding:0px 0px 0px 0px;
  9352. box-sizing:border-box;
  9353. width:100%;
  9354. }
  9355. #u95327_text {
  9356. border-width:0px;
  9357. white-space:nowrap;
  9358. text-transform:none;
  9359. }
  9360. #u95328_div {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:49px;
  9366. height:17px;
  9367. background:inherit;
  9368. background-color:rgba(255, 255, 255, 0);
  9369. border:none;
  9370. border-radius:0px;
  9371. -moz-box-shadow:none;
  9372. -webkit-box-shadow:none;
  9373. box-shadow:none;
  9374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9375. font-weight:400;
  9376. font-style:normal;
  9377. font-size:12px;
  9378. color:#AAAAAA;
  9379. }
  9380. #u95328 {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:143px;
  9384. top:873px;
  9385. width:49px;
  9386. height:17px;
  9387. display:flex;
  9388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9389. font-weight:400;
  9390. font-style:normal;
  9391. font-size:12px;
  9392. color:#AAAAAA;
  9393. }
  9394. #u95328 .text {
  9395. position:absolute;
  9396. align-self:flex-start;
  9397. padding:0px 0px 0px 0px;
  9398. box-sizing:border-box;
  9399. width:100%;
  9400. }
  9401. #u95328_text {
  9402. border-width:0px;
  9403. white-space:nowrap;
  9404. text-transform:none;
  9405. }
  9406. #u95329_img {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:0px;
  9410. top:0px;
  9411. width:201px;
  9412. height:2px;
  9413. }
  9414. #u95329 {
  9415. border-width:0px;
  9416. position:absolute;
  9417. left:120px;
  9418. top:852px;
  9419. width:200px;
  9420. height:1px;
  9421. display:flex;
  9422. }
  9423. #u95329 .text {
  9424. position:absolute;
  9425. align-self:center;
  9426. padding:2px 2px 2px 2px;
  9427. box-sizing:border-box;
  9428. width:100%;
  9429. }
  9430. #u95329_text {
  9431. border-width:0px;
  9432. word-wrap:break-word;
  9433. text-transform:none;
  9434. visibility:hidden;
  9435. }
  9436. #u95330_div {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:65px;
  9442. height:22px;
  9443. background:inherit;
  9444. background-color:rgba(255, 255, 255, 0);
  9445. border:none;
  9446. border-radius:0px;
  9447. -moz-box-shadow:none;
  9448. -webkit-box-shadow:none;
  9449. box-shadow:none;
  9450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9451. font-weight:400;
  9452. font-style:normal;
  9453. font-size:16px;
  9454. }
  9455. #u95330 {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:145px;
  9459. top:952px;
  9460. width:65px;
  9461. height:22px;
  9462. display:flex;
  9463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9464. font-weight:400;
  9465. font-style:normal;
  9466. font-size:16px;
  9467. }
  9468. #u95330 .text {
  9469. position:absolute;
  9470. align-self:flex-start;
  9471. padding:0px 0px 0px 0px;
  9472. box-sizing:border-box;
  9473. width:100%;
  9474. }
  9475. #u95330_text {
  9476. border-width:0px;
  9477. white-space:nowrap;
  9478. text-transform:none;
  9479. }