styles.css 144 KB

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