styles.css 199 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341
  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. #u24740_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u24740 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u24740 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u24740_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u24741_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u24741 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u24741 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u24741_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u24742 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u24743_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u24743 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u24743 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u24743_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u24744_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u24744 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u24744 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u24744_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u24745_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u24745 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u24745 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u24745_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u24746_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u24746 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u24746 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u24746_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u24747 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u24748_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u24748 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u24748 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u24748_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u24749_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u24749 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u24749 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u24749_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u24750 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u24751_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u24751 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u24751 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u24751_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u24752_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u24752 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u24752 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u24752_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u24753 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u24754_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u24754 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u24754 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u24754_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u24755_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u24755 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u24755 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u24755_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u24756 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u24757_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u24757 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u24757 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u24757_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u24758_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u24758 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u24758 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u24758_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u24759 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u24760_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u24760 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u24760 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u24760_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u24761_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u24761 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u24761 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u24761_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u24762 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u24763_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u24763 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u24763 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u24763_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u24764_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u24764 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u24764 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u24764_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u24765 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u24766_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u24766 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u24766 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u24766_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u24767_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u24767 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u24767 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u24767_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u24768 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u24769_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u24769 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u24769 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u24769_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u24770_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u24770 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u24770 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u24770_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u24771 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u24772_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u24772 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u24772 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u24772_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u24773_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u24773 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u24773 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u24773_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u24774 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u24775_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u24775 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u24775 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u24775_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u24776_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u24776 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u24776 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u24776_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u24777_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u24777_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u24777_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u24777 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u24777 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u24777_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u24777.disabled {
  1184. }
  1185. .u24777_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u24778_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u24778 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u24778 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u24778_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u24779_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u24779 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u24779 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u24779_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u24780_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u24780 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u24780 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u24780_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u24781 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u24782_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u24782 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u24782 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u24782_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u24783_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u24783 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u24783 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u24783_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u24784 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u24785_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u24785 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u24785 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u24785_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u24786_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u24786 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u24786 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u24786_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u24787 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u24788_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u24788 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u24788 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u24788_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u24789_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u24789 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u24789 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u24789_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u24790 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u24791_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u24791 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u24791 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u24791_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u24792_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u24792 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u24792 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u24792_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u24793 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u24794_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u24794 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u24794 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u24794_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u24795_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u24795 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u24795 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u24795_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u24796_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:160px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. }
  1729. #u24796 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1259px;
  1735. height:160px;
  1736. display:flex;
  1737. }
  1738. #u24796 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u24796_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u24797_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:73px;
  1757. height:50px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-left:0px;
  1762. border-top:0px;
  1763. border-right:0px;
  1764. border-radius:0px;
  1765. border-bottom-right-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1771. font-weight:500;
  1772. font-style:normal;
  1773. font-size:18px;
  1774. }
  1775. #u24797 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:350px;
  1779. top:50px;
  1780. width:73px;
  1781. height:50px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1784. font-weight:500;
  1785. font-style:normal;
  1786. font-size:18px;
  1787. }
  1788. #u24797 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:0px 0px 0px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u24797_text {
  1796. border-width:0px;
  1797. white-space:nowrap;
  1798. text-transform:none;
  1799. }
  1800. #u24798_div {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:1259px;
  1806. height:1010px;
  1807. background:inherit;
  1808. background-color:rgba(255, 255, 255, 1);
  1809. border:none;
  1810. border-radius:0px;
  1811. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1812. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1813. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1814. }
  1815. #u24798 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:330px;
  1819. top:220px;
  1820. width:1259px;
  1821. height:1010px;
  1822. display:flex;
  1823. }
  1824. #u24798 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u24798_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. visibility:hidden;
  1836. }
  1837. #u24799 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:0px;
  1843. height:0px;
  1844. }
  1845. #u24800_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:200px;
  1851. height:20px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border:none;
  1855. border-radius:0px;
  1856. -moz-box-shadow:none;
  1857. -webkit-box-shadow:none;
  1858. box-shadow:none;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. }
  1864. #u24800 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:387px;
  1868. top:163px;
  1869. width:200px;
  1870. height:20px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. }
  1877. #u24800 .text {
  1878. position:absolute;
  1879. align-self:flex-start;
  1880. padding:0px 0px 0px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u24800_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u24801_div {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:200px;
  1895. height:40px;
  1896. background:inherit;
  1897. background-color:rgba(255, 255, 255, 0);
  1898. border:none;
  1899. border-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1904. font-weight:650;
  1905. font-style:normal;
  1906. font-size:28px;
  1907. }
  1908. #u24801 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:387px;
  1912. top:123px;
  1913. width:200px;
  1914. height:40px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1917. font-weight:650;
  1918. font-style:normal;
  1919. font-size:28px;
  1920. }
  1921. #u24801 .text {
  1922. position:absolute;
  1923. align-self:flex-start;
  1924. padding:0px 0px 0px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u24801_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u24802 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:0px;
  1939. height:0px;
  1940. }
  1941. #u24803_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:200px;
  1947. height:20px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 0);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. }
  1960. #u24803 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:625px;
  1964. top:163px;
  1965. width:200px;
  1966. height:20px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. }
  1973. #u24803 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:0px 0px 0px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u24803_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u24804_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:200px;
  1991. height:40px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 0);
  1994. border:none;
  1995. border-radius:0px;
  1996. -moz-box-shadow:none;
  1997. -webkit-box-shadow:none;
  1998. box-shadow:none;
  1999. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2000. font-weight:650;
  2001. font-style:normal;
  2002. font-size:28px;
  2003. }
  2004. #u24804 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:625px;
  2008. top:123px;
  2009. width:200px;
  2010. height:40px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2013. font-weight:650;
  2014. font-style:normal;
  2015. font-size:28px;
  2016. }
  2017. #u24804 .text {
  2018. position:absolute;
  2019. align-self:flex-start;
  2020. padding:0px 0px 0px 0px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u24804_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u24805 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:0px;
  2035. height:0px;
  2036. }
  2037. #u24806_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:200px;
  2043. height:20px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 0);
  2046. border:none;
  2047. border-radius:0px;
  2048. -moz-box-shadow:none;
  2049. -webkit-box-shadow:none;
  2050. box-shadow:none;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. }
  2056. #u24806 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:863px;
  2060. top:163px;
  2061. width:200px;
  2062. height:20px;
  2063. display:flex;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:14px;
  2068. }
  2069. #u24806 .text {
  2070. position:absolute;
  2071. align-self:flex-start;
  2072. padding:0px 0px 0px 0px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u24806_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. }
  2081. #u24807_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:200px;
  2087. height:40px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border:none;
  2091. border-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2096. font-weight:650;
  2097. font-style:normal;
  2098. font-size:28px;
  2099. }
  2100. #u24807 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:863px;
  2104. top:123px;
  2105. width:200px;
  2106. height:40px;
  2107. display:flex;
  2108. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2109. font-weight:650;
  2110. font-style:normal;
  2111. font-size:28px;
  2112. }
  2113. #u24807 .text {
  2114. position:absolute;
  2115. align-self:flex-start;
  2116. padding:0px 0px 0px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u24807_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. }
  2125. #u24808 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:0px;
  2131. height:0px;
  2132. }
  2133. #u24809_div {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:200px;
  2139. height:20px;
  2140. background:inherit;
  2141. background-color:rgba(255, 255, 255, 0);
  2142. border:none;
  2143. border-radius:0px;
  2144. -moz-box-shadow:none;
  2145. -webkit-box-shadow:none;
  2146. box-shadow:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:14px;
  2151. }
  2152. #u24809 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:1100px;
  2156. top:163px;
  2157. width:200px;
  2158. height:20px;
  2159. display:flex;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:14px;
  2164. }
  2165. #u24809 .text {
  2166. position:absolute;
  2167. align-self:flex-start;
  2168. padding:0px 0px 0px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u24809_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. }
  2177. #u24810_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:200px;
  2183. height:40px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 0);
  2186. border:none;
  2187. border-radius:0px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2192. font-weight:650;
  2193. font-style:normal;
  2194. font-size:28px;
  2195. }
  2196. #u24810 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:1100px;
  2200. top:123px;
  2201. width:200px;
  2202. height:40px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2205. font-weight:650;
  2206. font-style:normal;
  2207. font-size:28px;
  2208. }
  2209. #u24810 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u24810_text {
  2217. border-width:0px;
  2218. word-wrap:break-word;
  2219. text-transform:none;
  2220. }
  2221. #u24811 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:0px;
  2227. height:0px;
  2228. }
  2229. #u24812_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:200px;
  2235. height:20px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 0);
  2238. border:none;
  2239. border-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:14px;
  2247. }
  2248. #u24812 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:1338px;
  2252. top:163px;
  2253. width:200px;
  2254. height:20px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. }
  2261. #u24812 .text {
  2262. position:absolute;
  2263. align-self:flex-start;
  2264. padding:0px 0px 0px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u24812_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u24813_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:200px;
  2279. height:40px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-radius:0px;
  2284. -moz-box-shadow:none;
  2285. -webkit-box-shadow:none;
  2286. box-shadow:none;
  2287. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2288. font-weight:650;
  2289. font-style:normal;
  2290. font-size:28px;
  2291. }
  2292. #u24813 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:1338px;
  2296. top:123px;
  2297. width:200px;
  2298. height:40px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2301. font-weight:650;
  2302. font-style:normal;
  2303. font-size:28px;
  2304. }
  2305. #u24813 .text {
  2306. position:absolute;
  2307. align-self:flex-start;
  2308. padding:0px 0px 0px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u24813_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u24814 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:0px;
  2323. height:0px;
  2324. }
  2325. #u24815_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:60px;
  2331. height:30px;
  2332. background:inherit;
  2333. background-color:rgba(24, 144, 255, 1);
  2334. border:none;
  2335. border-radius:0px;
  2336. -moz-box-shadow:none;
  2337. -webkit-box-shadow:none;
  2338. box-shadow:none;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. color:#FFFFFF;
  2343. text-align:center;
  2344. }
  2345. #u24815 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:1267px;
  2349. top:60px;
  2350. width:60px;
  2351. height:30px;
  2352. display:flex;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. color:#FFFFFF;
  2357. text-align:center;
  2358. }
  2359. #u24815 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 2px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u24815_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u24816_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:60px;
  2377. height:30px;
  2378. background:inherit;
  2379. background-color:rgba(255, 255, 255, 1);
  2380. box-sizing:border-box;
  2381. border-width:1px;
  2382. border-style:solid;
  2383. border-color:rgba(215, 215, 215, 1);
  2384. border-radius:0px;
  2385. -moz-box-shadow:none;
  2386. -webkit-box-shadow:none;
  2387. box-shadow:none;
  2388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. text-align:center;
  2392. }
  2393. #u24816 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:1386px;
  2397. top:60px;
  2398. width:60px;
  2399. height:30px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. text-align:center;
  2405. }
  2406. #u24816 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 2px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u24816_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. }
  2418. #u24817_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:60px;
  2424. height:30px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 1);
  2427. box-sizing:border-box;
  2428. border-width:1px;
  2429. border-style:solid;
  2430. border-color:rgba(215, 215, 215, 1);
  2431. border-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. text-align:center;
  2439. }
  2440. #u24817 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:1445px;
  2444. top:60px;
  2445. width:60px;
  2446. height:30px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. text-align:center;
  2452. }
  2453. #u24817 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u24817_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. }
  2465. #u24818_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:60px;
  2471. height:30px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 1);
  2474. box-sizing:border-box;
  2475. border-width:1px;
  2476. border-style:solid;
  2477. border-color:rgba(215, 215, 215, 1);
  2478. border-radius:0px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. text-align:center;
  2486. }
  2487. #u24818 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:1327px;
  2491. top:60px;
  2492. width:60px;
  2493. height:30px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. text-align:center;
  2499. }
  2500. #u24818 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u24818_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. }
  2512. #u24819_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:60px;
  2518. height:30px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 1);
  2521. box-sizing:border-box;
  2522. border-width:1px;
  2523. border-style:solid;
  2524. border-color:rgba(215, 215, 215, 1);
  2525. border-radius:0px;
  2526. -moz-box-shadow:none;
  2527. -webkit-box-shadow:none;
  2528. box-shadow:none;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. text-align:center;
  2533. }
  2534. #u24819 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:1504px;
  2538. top:60px;
  2539. width:60px;
  2540. height:30px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. text-align:center;
  2546. }
  2547. #u24819 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u24819_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. }
  2559. #u24820 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:350px;
  2563. top:370px;
  2564. width:1227px;
  2565. height:292px;
  2566. }
  2567. #u24821_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:30px;
  2573. height:38px;
  2574. }
  2575. #u24821 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:30px;
  2581. height:38px;
  2582. display:flex;
  2583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. color:#FFFFFF;
  2588. }
  2589. #u24821 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u24821_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u24822_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:60px;
  2607. height:38px;
  2608. }
  2609. #u24822 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:30px;
  2613. top:0px;
  2614. width:60px;
  2615. height:38px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:12px;
  2621. color:#FFFFFF;
  2622. }
  2623. #u24822 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u24822_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. }
  2635. #u24823_img {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:60px;
  2641. height:38px;
  2642. }
  2643. #u24823 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:90px;
  2647. top:0px;
  2648. width:60px;
  2649. height:38px;
  2650. display:flex;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:12px;
  2655. color:#FFFFFF;
  2656. }
  2657. #u24823 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 0px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u24823_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u24824_img {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:60px;
  2675. height:38px;
  2676. }
  2677. #u24824 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:150px;
  2681. top:0px;
  2682. width:60px;
  2683. height:38px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. color:#FFFFFF;
  2690. }
  2691. #u24824 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u24824_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. }
  2703. #u24825_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:60px;
  2709. height:38px;
  2710. }
  2711. #u24825 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:210px;
  2715. top:0px;
  2716. width:60px;
  2717. height:38px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:12px;
  2723. color:#FFFFFF;
  2724. }
  2725. #u24825 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u24825_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. }
  2737. #u24826_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:60px;
  2743. height:38px;
  2744. }
  2745. #u24826 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:270px;
  2749. top:0px;
  2750. width:60px;
  2751. height:38px;
  2752. display:flex;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:12px;
  2757. color:#FFFFFF;
  2758. }
  2759. #u24826 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u24826_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. }
  2771. #u24827_img {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:60px;
  2777. height:38px;
  2778. }
  2779. #u24827 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:330px;
  2783. top:0px;
  2784. width:60px;
  2785. height:38px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. color:#FFFFFF;
  2792. }
  2793. #u24827 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u24827_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. }
  2805. #u24828_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:60px;
  2811. height:38px;
  2812. }
  2813. #u24828 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:390px;
  2817. top:0px;
  2818. width:60px;
  2819. height:38px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. color:#FFFFFF;
  2826. }
  2827. #u24828 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 0px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u24828_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. }
  2839. #u24829_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:60px;
  2845. height:38px;
  2846. }
  2847. #u24829 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:450px;
  2851. top:0px;
  2852. width:60px;
  2853. height:38px;
  2854. display:flex;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:12px;
  2859. color:#FFFFFF;
  2860. }
  2861. #u24829 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 2px 2px 0px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u24829_text {
  2869. border-width:0px;
  2870. word-wrap:break-word;
  2871. text-transform:none;
  2872. }
  2873. #u24830_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:60px;
  2879. height:38px;
  2880. }
  2881. #u24830 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:510px;
  2885. top:0px;
  2886. width:60px;
  2887. height:38px;
  2888. display:flex;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:12px;
  2893. color:#FFFFFF;
  2894. }
  2895. #u24830 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u24830_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u24831_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:60px;
  2913. height:38px;
  2914. }
  2915. #u24831 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:570px;
  2919. top:0px;
  2920. width:60px;
  2921. height:38px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#FFFFFF;
  2928. }
  2929. #u24831 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:2px 2px 2px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u24831_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. }
  2941. #u24832_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:60px;
  2947. height:38px;
  2948. }
  2949. #u24832 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:630px;
  2953. top:0px;
  2954. width:60px;
  2955. height:38px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:#FFFFFF;
  2962. }
  2963. #u24832 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 0px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u24832_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. }
  2975. #u24833_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:60px;
  2981. height:38px;
  2982. }
  2983. #u24833 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:690px;
  2987. top:0px;
  2988. width:60px;
  2989. height:38px;
  2990. display:flex;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. color:#FFFFFF;
  2996. }
  2997. #u24833 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u24833_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. }
  3009. #u24834_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:60px;
  3015. height:38px;
  3016. }
  3017. #u24834 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:750px;
  3021. top:0px;
  3022. width:60px;
  3023. height:38px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. color:#FFFFFF;
  3030. }
  3031. #u24834 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u24834_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. }
  3043. #u24835_img {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:68px;
  3049. height:38px;
  3050. }
  3051. #u24835 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:810px;
  3055. top:0px;
  3056. width:68px;
  3057. height:38px;
  3058. display:flex;
  3059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3060. font-weight:400;
  3061. font-style:normal;
  3062. font-size:12px;
  3063. color:#FFFFFF;
  3064. }
  3065. #u24835 .text {
  3066. position:absolute;
  3067. align-self:center;
  3068. padding:2px 2px 2px 0px;
  3069. box-sizing:border-box;
  3070. width:100%;
  3071. }
  3072. #u24835_text {
  3073. border-width:0px;
  3074. word-wrap:break-word;
  3075. text-transform:none;
  3076. }
  3077. #u24836_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:60px;
  3083. height:38px;
  3084. }
  3085. #u24836 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:878px;
  3089. top:0px;
  3090. width:60px;
  3091. height:38px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. color:#FFFFFF;
  3098. }
  3099. #u24836 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u24836_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. }
  3111. #u24837_img {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:60px;
  3117. height:38px;
  3118. }
  3119. #u24837 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:938px;
  3123. top:0px;
  3124. width:60px;
  3125. height:38px;
  3126. display:flex;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:12px;
  3131. color:#FFFFFF;
  3132. }
  3133. #u24837 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 0px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u24837_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. }
  3145. #u24838_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:60px;
  3151. height:38px;
  3152. }
  3153. #u24838 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:998px;
  3157. top:0px;
  3158. width:60px;
  3159. height:38px;
  3160. display:flex;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:12px;
  3165. color:#FFFFFF;
  3166. }
  3167. #u24838 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u24838_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. }
  3179. #u24839_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:60px;
  3185. height:38px;
  3186. }
  3187. #u24839 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:1058px;
  3191. top:0px;
  3192. width:60px;
  3193. height:38px;
  3194. display:flex;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:12px;
  3199. color:#FFFFFF;
  3200. }
  3201. #u24839 .text {
  3202. position:absolute;
  3203. align-self:center;
  3204. padding:2px 2px 2px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u24839_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. }
  3213. #u24840_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:60px;
  3219. height:38px;
  3220. }
  3221. #u24840 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:1118px;
  3225. top:0px;
  3226. width:60px;
  3227. height:38px;
  3228. display:flex;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#FFFFFF;
  3234. }
  3235. #u24840 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u24840_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. }
  3247. #u24841_img {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:50px;
  3253. height:38px;
  3254. }
  3255. #u24841 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:1178px;
  3259. top:0px;
  3260. width:50px;
  3261. height:38px;
  3262. display:flex;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:12px;
  3267. color:#FFFFFF;
  3268. }
  3269. #u24841 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:2px 2px 2px 0px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u24841_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. }
  3281. #u24842_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:30px;
  3287. height:38px;
  3288. }
  3289. #u24842 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:38px;
  3294. width:30px;
  3295. height:38px;
  3296. display:flex;
  3297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:12px;
  3301. }
  3302. #u24842 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u24842_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. }
  3314. #u24843_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:60px;
  3320. height:38px;
  3321. }
  3322. #u24843 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:30px;
  3326. top:38px;
  3327. width:60px;
  3328. height:38px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. }
  3335. #u24843 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u24843_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u24844_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:60px;
  3354. height:38px;
  3355. }
  3356. #u24844 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:90px;
  3360. top:38px;
  3361. width:60px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. }
  3369. #u24844 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u24844_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u24845_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:60px;
  3388. height:38px;
  3389. }
  3390. #u24845 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:150px;
  3394. top:38px;
  3395. width:60px;
  3396. height:38px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. }
  3403. #u24845 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u24845_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u24846_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:60px;
  3422. height:38px;
  3423. }
  3424. #u24846 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:210px;
  3428. top:38px;
  3429. width:60px;
  3430. height:38px;
  3431. display:flex;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. }
  3437. #u24846 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u24846_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u24847_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:60px;
  3456. height:38px;
  3457. }
  3458. #u24847 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:270px;
  3462. top:38px;
  3463. width:60px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. }
  3471. #u24847 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u24847_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u24848_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:60px;
  3490. height:38px;
  3491. }
  3492. #u24848 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:330px;
  3496. top:38px;
  3497. width:60px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. }
  3505. #u24848 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u24848_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u24849_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:60px;
  3524. height:38px;
  3525. }
  3526. #u24849 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:390px;
  3530. top:38px;
  3531. width:60px;
  3532. height:38px;
  3533. display:flex;
  3534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. }
  3539. #u24849 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u24849_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u24850_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:60px;
  3558. height:38px;
  3559. }
  3560. #u24850 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:450px;
  3564. top:38px;
  3565. width:60px;
  3566. height:38px;
  3567. display:flex;
  3568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. }
  3573. #u24850 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u24850_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u24851_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:60px;
  3592. height:38px;
  3593. }
  3594. #u24851 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:510px;
  3598. top:38px;
  3599. width:60px;
  3600. height:38px;
  3601. display:flex;
  3602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. }
  3607. #u24851 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 0px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u24851_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u24852_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:60px;
  3626. height:38px;
  3627. }
  3628. #u24852 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:570px;
  3632. top:38px;
  3633. width:60px;
  3634. height:38px;
  3635. display:flex;
  3636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:12px;
  3640. }
  3641. #u24852 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 0px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u24852_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u24853_img {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:60px;
  3660. height:38px;
  3661. }
  3662. #u24853 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:630px;
  3666. top:38px;
  3667. width:60px;
  3668. height:38px;
  3669. display:flex;
  3670. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. }
  3675. #u24853 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u24853_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u24854_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:60px;
  3694. height:38px;
  3695. }
  3696. #u24854 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:690px;
  3700. top:38px;
  3701. width:60px;
  3702. height:38px;
  3703. display:flex;
  3704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. }
  3709. #u24854 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u24854_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u24855_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:60px;
  3728. height:38px;
  3729. }
  3730. #u24855 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:750px;
  3734. top:38px;
  3735. width:60px;
  3736. height:38px;
  3737. display:flex;
  3738. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:12px;
  3742. }
  3743. #u24855 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u24855_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u24856_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:68px;
  3762. height:38px;
  3763. }
  3764. #u24856 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:810px;
  3768. top:38px;
  3769. width:68px;
  3770. height:38px;
  3771. display:flex;
  3772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. }
  3777. #u24856 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u24856_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u24857_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:60px;
  3796. height:38px;
  3797. }
  3798. #u24857 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:878px;
  3802. top:38px;
  3803. width:60px;
  3804. height:38px;
  3805. display:flex;
  3806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. }
  3811. #u24857 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 0px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u24857_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. visibility:hidden;
  3823. }
  3824. #u24858_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:60px;
  3830. height:38px;
  3831. }
  3832. #u24858 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:938px;
  3836. top:38px;
  3837. width:60px;
  3838. height:38px;
  3839. display:flex;
  3840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:12px;
  3844. }
  3845. #u24858 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u24858_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u24859_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:60px;
  3864. height:38px;
  3865. }
  3866. #u24859 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:998px;
  3870. top:38px;
  3871. width:60px;
  3872. height:38px;
  3873. display:flex;
  3874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. }
  3879. #u24859 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u24859_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. visibility:hidden;
  3891. }
  3892. #u24860_img {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:60px;
  3898. height:38px;
  3899. }
  3900. #u24860 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:1058px;
  3904. top:38px;
  3905. width:60px;
  3906. height:38px;
  3907. display:flex;
  3908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. }
  3913. #u24860 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u24860_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u24861_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:60px;
  3932. height:38px;
  3933. }
  3934. #u24861 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:1118px;
  3938. top:38px;
  3939. width:60px;
  3940. height:38px;
  3941. display:flex;
  3942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. }
  3947. #u24861 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u24861_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u24862_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:50px;
  3966. height:38px;
  3967. }
  3968. #u24862 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:1178px;
  3972. top:38px;
  3973. width:50px;
  3974. height:38px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. color:#1890FF;
  3981. }
  3982. #u24862 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u24862_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. }
  3994. #u24863_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:30px;
  4000. height:38px;
  4001. }
  4002. #u24863 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:76px;
  4007. width:30px;
  4008. height:38px;
  4009. display:flex;
  4010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. color:#606266;
  4015. }
  4016. #u24863 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:2px 2px 2px 0px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u24863_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. }
  4028. #u24864_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:60px;
  4034. height:38px;
  4035. }
  4036. #u24864 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:30px;
  4040. top:76px;
  4041. width:60px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u24864 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u24864_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u24865_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:60px;
  4069. height:38px;
  4070. }
  4071. #u24865 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:90px;
  4075. top:76px;
  4076. width:60px;
  4077. height:38px;
  4078. display:flex;
  4079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u24865 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u24865_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u24866_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:60px;
  4104. height:38px;
  4105. }
  4106. #u24866 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:150px;
  4110. top:76px;
  4111. width:60px;
  4112. height:38px;
  4113. display:flex;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u24866 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u24866_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u24867_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:60px;
  4139. height:38px;
  4140. }
  4141. #u24867 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:210px;
  4145. top:76px;
  4146. width:60px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u24867 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u24867_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u24868_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:60px;
  4174. height:38px;
  4175. }
  4176. #u24868 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:270px;
  4180. top:76px;
  4181. width:60px;
  4182. height:38px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u24868 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u24868_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u24869_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:60px;
  4209. height:38px;
  4210. }
  4211. #u24869 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:330px;
  4215. top:76px;
  4216. width:60px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u24869 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u24869_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u24870_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:60px;
  4244. height:38px;
  4245. }
  4246. #u24870 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:390px;
  4250. top:76px;
  4251. width:60px;
  4252. height:38px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u24870 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u24870_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u24871_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:60px;
  4279. height:38px;
  4280. }
  4281. #u24871 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:450px;
  4285. top:76px;
  4286. width:60px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u24871 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u24871_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u24872_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:60px;
  4314. height:38px;
  4315. }
  4316. #u24872 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:510px;
  4320. top:76px;
  4321. width:60px;
  4322. height:38px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u24872 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u24872_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u24873_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:60px;
  4349. height:38px;
  4350. }
  4351. #u24873 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:570px;
  4355. top:76px;
  4356. width:60px;
  4357. height:38px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u24873 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u24873_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u24874_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:60px;
  4384. height:38px;
  4385. }
  4386. #u24874 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:630px;
  4390. top:76px;
  4391. width:60px;
  4392. height:38px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u24874 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u24874_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u24875_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:60px;
  4419. height:38px;
  4420. }
  4421. #u24875 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:690px;
  4425. top:76px;
  4426. width:60px;
  4427. height:38px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u24875 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u24875_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u24876_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:60px;
  4454. height:38px;
  4455. }
  4456. #u24876 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:750px;
  4460. top:76px;
  4461. width:60px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u24876 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u24876_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u24877_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:68px;
  4489. height:38px;
  4490. }
  4491. #u24877 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:810px;
  4495. top:76px;
  4496. width:68px;
  4497. height:38px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u24877 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u24877_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u24878_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:60px;
  4524. height:38px;
  4525. }
  4526. #u24878 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:878px;
  4530. top:76px;
  4531. width:60px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u24878 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u24878_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u24879_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:60px;
  4559. height:38px;
  4560. }
  4561. #u24879 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:938px;
  4565. top:76px;
  4566. width:60px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u24879 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u24879_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u24880_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:60px;
  4594. height:38px;
  4595. }
  4596. #u24880 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:998px;
  4600. top:76px;
  4601. width:60px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u24880 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u24880_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u24881_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:60px;
  4629. height:38px;
  4630. }
  4631. #u24881 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:1058px;
  4635. top:76px;
  4636. width:60px;
  4637. height:38px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u24881 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u24881_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u24882_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:60px;
  4664. height:38px;
  4665. }
  4666. #u24882 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:1118px;
  4670. top:76px;
  4671. width:60px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u24882 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u24882_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u24883_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:50px;
  4699. height:38px;
  4700. }
  4701. #u24883 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1178px;
  4705. top:76px;
  4706. width:50px;
  4707. height:38px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#1890FF;
  4714. }
  4715. #u24883 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u24883_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. }
  4727. #u24884_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:30px;
  4733. height:38px;
  4734. }
  4735. #u24884 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:114px;
  4740. width:30px;
  4741. height:38px;
  4742. display:flex;
  4743. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#606266;
  4748. }
  4749. #u24884 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u24884_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. }
  4761. #u24885_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:60px;
  4767. height:38px;
  4768. }
  4769. #u24885 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:30px;
  4773. top:114px;
  4774. width:60px;
  4775. height:38px;
  4776. display:flex;
  4777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#606266;
  4782. }
  4783. #u24885 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u24885_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u24886_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:60px;
  4802. height:38px;
  4803. }
  4804. #u24886 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:90px;
  4808. top:114px;
  4809. width:60px;
  4810. height:38px;
  4811. display:flex;
  4812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. color:#606266;
  4817. }
  4818. #u24886 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u24886_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u24887_img {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:60px;
  4837. height:38px;
  4838. }
  4839. #u24887 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:150px;
  4843. top:114px;
  4844. width:60px;
  4845. height:38px;
  4846. display:flex;
  4847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#606266;
  4852. }
  4853. #u24887 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u24887_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u24888_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:60px;
  4872. height:38px;
  4873. }
  4874. #u24888 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:210px;
  4878. top:114px;
  4879. width:60px;
  4880. height:38px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#606266;
  4887. }
  4888. #u24888 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u24888_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u24889_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:60px;
  4907. height:38px;
  4908. }
  4909. #u24889 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:270px;
  4913. top:114px;
  4914. width:60px;
  4915. height:38px;
  4916. display:flex;
  4917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#606266;
  4922. }
  4923. #u24889 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u24889_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u24890_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:60px;
  4942. height:38px;
  4943. }
  4944. #u24890 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:330px;
  4948. top:114px;
  4949. width:60px;
  4950. height:38px;
  4951. display:flex;
  4952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:12px;
  4956. color:#606266;
  4957. }
  4958. #u24890 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u24890_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. visibility:hidden;
  4970. }
  4971. #u24891_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:60px;
  4977. height:38px;
  4978. }
  4979. #u24891 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:390px;
  4983. top:114px;
  4984. width:60px;
  4985. height:38px;
  4986. display:flex;
  4987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#606266;
  4992. }
  4993. #u24891 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u24891_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u24892_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:60px;
  5012. height:38px;
  5013. }
  5014. #u24892 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:450px;
  5018. top:114px;
  5019. width:60px;
  5020. height:38px;
  5021. display:flex;
  5022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. color:#606266;
  5027. }
  5028. #u24892 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 2px 2px 0px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u24892_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. visibility:hidden;
  5040. }
  5041. #u24893_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:60px;
  5047. height:38px;
  5048. }
  5049. #u24893 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:510px;
  5053. top:114px;
  5054. width:60px;
  5055. height:38px;
  5056. display:flex;
  5057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:12px;
  5061. color:#606266;
  5062. }
  5063. #u24893 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u24893_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. visibility:hidden;
  5075. }
  5076. #u24894_img {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:60px;
  5082. height:38px;
  5083. }
  5084. #u24894 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:570px;
  5088. top:114px;
  5089. width:60px;
  5090. height:38px;
  5091. display:flex;
  5092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. color:#606266;
  5097. }
  5098. #u24894 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u24894_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u24895_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:60px;
  5117. height:38px;
  5118. }
  5119. #u24895 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:630px;
  5123. top:114px;
  5124. width:60px;
  5125. height:38px;
  5126. display:flex;
  5127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:12px;
  5131. color:#606266;
  5132. }
  5133. #u24895 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u24895_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u24896_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:60px;
  5152. height:38px;
  5153. }
  5154. #u24896 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:690px;
  5158. top:114px;
  5159. width:60px;
  5160. height:38px;
  5161. display:flex;
  5162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#606266;
  5167. }
  5168. #u24896 .text {
  5169. position:absolute;
  5170. align-self:center;
  5171. padding:2px 2px 2px 0px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u24896_text {
  5176. border-width:0px;
  5177. word-wrap:break-word;
  5178. text-transform:none;
  5179. visibility:hidden;
  5180. }
  5181. #u24897_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:60px;
  5187. height:38px;
  5188. }
  5189. #u24897 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:750px;
  5193. top:114px;
  5194. width:60px;
  5195. height:38px;
  5196. display:flex;
  5197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. color:#606266;
  5202. }
  5203. #u24897 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 0px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u24897_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u24898_img {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:68px;
  5222. height:38px;
  5223. }
  5224. #u24898 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:810px;
  5228. top:114px;
  5229. width:68px;
  5230. height:38px;
  5231. display:flex;
  5232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:12px;
  5236. color:#606266;
  5237. }
  5238. #u24898 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 0px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u24898_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u24899_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:60px;
  5257. height:38px;
  5258. }
  5259. #u24899 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:878px;
  5263. top:114px;
  5264. width:60px;
  5265. height:38px;
  5266. display:flex;
  5267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:12px;
  5271. color:#606266;
  5272. }
  5273. #u24899 .text {
  5274. position:absolute;
  5275. align-self:center;
  5276. padding:2px 2px 2px 0px;
  5277. box-sizing:border-box;
  5278. width:100%;
  5279. }
  5280. #u24899_text {
  5281. border-width:0px;
  5282. word-wrap:break-word;
  5283. text-transform:none;
  5284. visibility:hidden;
  5285. }
  5286. #u24900_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:60px;
  5292. height:38px;
  5293. }
  5294. #u24900 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:938px;
  5298. top:114px;
  5299. width:60px;
  5300. height:38px;
  5301. display:flex;
  5302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:12px;
  5306. color:#606266;
  5307. }
  5308. #u24900 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:2px 2px 2px 0px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u24900_text {
  5316. border-width:0px;
  5317. word-wrap:break-word;
  5318. text-transform:none;
  5319. visibility:hidden;
  5320. }
  5321. #u24901_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:60px;
  5327. height:38px;
  5328. }
  5329. #u24901 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:998px;
  5333. top:114px;
  5334. width:60px;
  5335. height:38px;
  5336. display:flex;
  5337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. color:#606266;
  5342. }
  5343. #u24901 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u24901_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u24902_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:60px;
  5362. height:38px;
  5363. }
  5364. #u24902 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1058px;
  5368. top:114px;
  5369. width:60px;
  5370. height:38px;
  5371. display:flex;
  5372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#606266;
  5377. }
  5378. #u24902 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u24902_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. visibility:hidden;
  5390. }
  5391. #u24903_img {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:60px;
  5397. height:38px;
  5398. }
  5399. #u24903 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:1118px;
  5403. top:114px;
  5404. width:60px;
  5405. height:38px;
  5406. display:flex;
  5407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:12px;
  5411. color:#606266;
  5412. }
  5413. #u24903 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u24903_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u24904_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:50px;
  5432. height:38px;
  5433. }
  5434. #u24904 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:1178px;
  5438. top:114px;
  5439. width:50px;
  5440. height:38px;
  5441. display:flex;
  5442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. color:#1890FF;
  5447. }
  5448. #u24904 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u24904_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. }
  5460. #u24905_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:30px;
  5466. height:35px;
  5467. }
  5468. #u24905 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:152px;
  5473. width:30px;
  5474. height:35px;
  5475. display:flex;
  5476. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:12px;
  5480. color:#606266;
  5481. }
  5482. #u24905 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u24905_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. }
  5494. #u24906_img {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:60px;
  5500. height:35px;
  5501. }
  5502. #u24906 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:30px;
  5506. top:152px;
  5507. width:60px;
  5508. height:35px;
  5509. display:flex;
  5510. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:#606266;
  5515. }
  5516. #u24906 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 0px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u24906_text {
  5524. border-width:0px;
  5525. word-wrap:break-word;
  5526. text-transform:none;
  5527. visibility:hidden;
  5528. }
  5529. #u24907_img {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:60px;
  5535. height:35px;
  5536. }
  5537. #u24907 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:90px;
  5541. top:152px;
  5542. width:60px;
  5543. height:35px;
  5544. display:flex;
  5545. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. color:#606266;
  5550. }
  5551. #u24907 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 0px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u24907_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u24908_img {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:60px;
  5570. height:35px;
  5571. }
  5572. #u24908 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:150px;
  5576. top:152px;
  5577. width:60px;
  5578. height:35px;
  5579. display:flex;
  5580. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:12px;
  5584. color:#606266;
  5585. }
  5586. #u24908 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 0px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u24908_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. visibility:hidden;
  5598. }
  5599. #u24909_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:60px;
  5605. height:35px;
  5606. }
  5607. #u24909 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:210px;
  5611. top:152px;
  5612. width:60px;
  5613. height:35px;
  5614. display:flex;
  5615. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. font-size:12px;
  5619. color:#606266;
  5620. }
  5621. #u24909 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u24909_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. visibility:hidden;
  5633. }
  5634. #u24910_img {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:60px;
  5640. height:35px;
  5641. }
  5642. #u24910 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:270px;
  5646. top:152px;
  5647. width:60px;
  5648. height:35px;
  5649. display:flex;
  5650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:12px;
  5654. color:#606266;
  5655. }
  5656. #u24910 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u24910_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. visibility:hidden;
  5668. }
  5669. #u24911_img {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:60px;
  5675. height:35px;
  5676. }
  5677. #u24911 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:330px;
  5681. top:152px;
  5682. width:60px;
  5683. height:35px;
  5684. display:flex;
  5685. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#606266;
  5690. }
  5691. #u24911 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 0px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u24911_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u24912_img {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:60px;
  5710. height:35px;
  5711. }
  5712. #u24912 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:390px;
  5716. top:152px;
  5717. width:60px;
  5718. height:35px;
  5719. display:flex;
  5720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:12px;
  5724. color:#606266;
  5725. }
  5726. #u24912 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 0px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u24912_text {
  5734. border-width:0px;
  5735. word-wrap:break-word;
  5736. text-transform:none;
  5737. visibility:hidden;
  5738. }
  5739. #u24913_img {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:60px;
  5745. height:35px;
  5746. }
  5747. #u24913 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:450px;
  5751. top:152px;
  5752. width:60px;
  5753. height:35px;
  5754. display:flex;
  5755. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:12px;
  5759. color:#606266;
  5760. }
  5761. #u24913 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 0px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u24913_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u24914_img {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:60px;
  5780. height:35px;
  5781. }
  5782. #u24914 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:510px;
  5786. top:152px;
  5787. width:60px;
  5788. height:35px;
  5789. display:flex;
  5790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:12px;
  5794. color:#606266;
  5795. }
  5796. #u24914 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 2px 2px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u24914_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. visibility:hidden;
  5808. }
  5809. #u24915_img {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:60px;
  5815. height:35px;
  5816. }
  5817. #u24915 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:570px;
  5821. top:152px;
  5822. width:60px;
  5823. height:35px;
  5824. display:flex;
  5825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. color:#606266;
  5830. }
  5831. #u24915 .text {
  5832. position:absolute;
  5833. align-self:center;
  5834. padding:2px 2px 2px 0px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u24915_text {
  5839. border-width:0px;
  5840. word-wrap:break-word;
  5841. text-transform:none;
  5842. visibility:hidden;
  5843. }
  5844. #u24916_img {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:60px;
  5850. height:35px;
  5851. }
  5852. #u24916 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:630px;
  5856. top:152px;
  5857. width:60px;
  5858. height:35px;
  5859. display:flex;
  5860. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:12px;
  5864. color:#606266;
  5865. }
  5866. #u24916 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:2px 2px 2px 0px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u24916_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u24917_img {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:60px;
  5885. height:35px;
  5886. }
  5887. #u24917 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:690px;
  5891. top:152px;
  5892. width:60px;
  5893. height:35px;
  5894. display:flex;
  5895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:12px;
  5899. color:#606266;
  5900. }
  5901. #u24917 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 0px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u24917_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u24918_img {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:60px;
  5920. height:35px;
  5921. }
  5922. #u24918 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:750px;
  5926. top:152px;
  5927. width:60px;
  5928. height:35px;
  5929. display:flex;
  5930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:12px;
  5934. color:#606266;
  5935. }
  5936. #u24918 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u24918_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. visibility:hidden;
  5948. }
  5949. #u24919_img {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:68px;
  5955. height:35px;
  5956. }
  5957. #u24919 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:810px;
  5961. top:152px;
  5962. width:68px;
  5963. height:35px;
  5964. display:flex;
  5965. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:12px;
  5969. color:#606266;
  5970. }
  5971. #u24919 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 0px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u24919_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. visibility:hidden;
  5983. }
  5984. #u24920_img {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:60px;
  5990. height:35px;
  5991. }
  5992. #u24920 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:878px;
  5996. top:152px;
  5997. width:60px;
  5998. height:35px;
  5999. display:flex;
  6000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:12px;
  6004. color:#606266;
  6005. }
  6006. #u24920 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 2px 2px 0px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u24920_text {
  6014. border-width:0px;
  6015. word-wrap:break-word;
  6016. text-transform:none;
  6017. visibility:hidden;
  6018. }
  6019. #u24921_img {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:60px;
  6025. height:35px;
  6026. }
  6027. #u24921 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:938px;
  6031. top:152px;
  6032. width:60px;
  6033. height:35px;
  6034. display:flex;
  6035. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. color:#606266;
  6040. }
  6041. #u24921 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:2px 2px 2px 0px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u24921_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. visibility:hidden;
  6053. }
  6054. #u24922_img {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:60px;
  6060. height:35px;
  6061. }
  6062. #u24922 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:998px;
  6066. top:152px;
  6067. width:60px;
  6068. height:35px;
  6069. display:flex;
  6070. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:12px;
  6074. color:#606266;
  6075. }
  6076. #u24922 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u24922_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u24923_img {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:60px;
  6095. height:35px;
  6096. }
  6097. #u24923 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:1058px;
  6101. top:152px;
  6102. width:60px;
  6103. height:35px;
  6104. display:flex;
  6105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:12px;
  6109. color:#606266;
  6110. }
  6111. #u24923 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 0px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u24923_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. visibility:hidden;
  6123. }
  6124. #u24924_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:60px;
  6130. height:35px;
  6131. }
  6132. #u24924 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:1118px;
  6136. top:152px;
  6137. width:60px;
  6138. height:35px;
  6139. display:flex;
  6140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:12px;
  6144. color:#606266;
  6145. }
  6146. #u24924 .text {
  6147. position:absolute;
  6148. align-self:center;
  6149. padding:2px 2px 2px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u24924_text {
  6154. border-width:0px;
  6155. word-wrap:break-word;
  6156. text-transform:none;
  6157. visibility:hidden;
  6158. }
  6159. #u24925_img {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:50px;
  6165. height:35px;
  6166. }
  6167. #u24925 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:1178px;
  6171. top:152px;
  6172. width:50px;
  6173. height:35px;
  6174. display:flex;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:12px;
  6179. color:#02A7F0;
  6180. }
  6181. #u24925 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 2px 2px 0px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u24925_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u24926_img {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:30px;
  6200. height:35px;
  6201. }
  6202. #u24926 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:187px;
  6207. width:30px;
  6208. height:35px;
  6209. display:flex;
  6210. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:12px;
  6214. color:#606266;
  6215. }
  6216. #u24926 .text {
  6217. position:absolute;
  6218. align-self:center;
  6219. padding:2px 2px 2px 0px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u24926_text {
  6224. border-width:0px;
  6225. word-wrap:break-word;
  6226. text-transform:none;
  6227. visibility:hidden;
  6228. }
  6229. #u24927_img {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:60px;
  6235. height:35px;
  6236. }
  6237. #u24927 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:30px;
  6241. top:187px;
  6242. width:60px;
  6243. height:35px;
  6244. display:flex;
  6245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:12px;
  6249. color:#606266;
  6250. }
  6251. #u24927 .text {
  6252. position:absolute;
  6253. align-self:center;
  6254. padding:2px 2px 2px 0px;
  6255. box-sizing:border-box;
  6256. width:100%;
  6257. }
  6258. #u24927_text {
  6259. border-width:0px;
  6260. word-wrap:break-word;
  6261. text-transform:none;
  6262. visibility:hidden;
  6263. }
  6264. #u24928_img {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:60px;
  6270. height:35px;
  6271. }
  6272. #u24928 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:90px;
  6276. top:187px;
  6277. width:60px;
  6278. height:35px;
  6279. display:flex;
  6280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:12px;
  6284. color:#606266;
  6285. }
  6286. #u24928 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 0px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u24928_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u24929_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:60px;
  6305. height:35px;
  6306. }
  6307. #u24929 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:150px;
  6311. top:187px;
  6312. width:60px;
  6313. height:35px;
  6314. display:flex;
  6315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:12px;
  6319. color:#606266;
  6320. }
  6321. #u24929 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 2px 2px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u24929_text {
  6329. border-width:0px;
  6330. word-wrap:break-word;
  6331. text-transform:none;
  6332. visibility:hidden;
  6333. }
  6334. #u24930_img {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:60px;
  6340. height:35px;
  6341. }
  6342. #u24930 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:210px;
  6346. top:187px;
  6347. width:60px;
  6348. height:35px;
  6349. display:flex;
  6350. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:12px;
  6354. color:#606266;
  6355. }
  6356. #u24930 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:2px 2px 2px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u24930_text {
  6364. border-width:0px;
  6365. word-wrap:break-word;
  6366. text-transform:none;
  6367. visibility:hidden;
  6368. }
  6369. #u24931_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:60px;
  6375. height:35px;
  6376. }
  6377. #u24931 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:270px;
  6381. top:187px;
  6382. width:60px;
  6383. height:35px;
  6384. display:flex;
  6385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:12px;
  6389. color:#606266;
  6390. }
  6391. #u24931 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:2px 2px 2px 0px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u24931_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. visibility:hidden;
  6403. }
  6404. #u24932_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:60px;
  6410. height:35px;
  6411. }
  6412. #u24932 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:330px;
  6416. top:187px;
  6417. width:60px;
  6418. height:35px;
  6419. display:flex;
  6420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:12px;
  6424. color:#606266;
  6425. }
  6426. #u24932 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:2px 2px 2px 0px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u24932_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. visibility:hidden;
  6438. }
  6439. #u24933_img {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:60px;
  6445. height:35px;
  6446. }
  6447. #u24933 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:390px;
  6451. top:187px;
  6452. width:60px;
  6453. height:35px;
  6454. display:flex;
  6455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:12px;
  6459. color:#606266;
  6460. }
  6461. #u24933 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 0px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u24933_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u24934_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:60px;
  6480. height:35px;
  6481. }
  6482. #u24934 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:450px;
  6486. top:187px;
  6487. width:60px;
  6488. height:35px;
  6489. display:flex;
  6490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:12px;
  6494. color:#606266;
  6495. }
  6496. #u24934 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 2px 2px 0px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u24934_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u24935_img {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:60px;
  6515. height:35px;
  6516. }
  6517. #u24935 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:510px;
  6521. top:187px;
  6522. width:60px;
  6523. height:35px;
  6524. display:flex;
  6525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:12px;
  6529. color:#606266;
  6530. }
  6531. #u24935 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:2px 2px 2px 0px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u24935_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u24936_img {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:60px;
  6550. height:35px;
  6551. }
  6552. #u24936 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:570px;
  6556. top:187px;
  6557. width:60px;
  6558. height:35px;
  6559. display:flex;
  6560. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#606266;
  6565. }
  6566. #u24936 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:2px 2px 2px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u24936_text {
  6574. border-width:0px;
  6575. word-wrap:break-word;
  6576. text-transform:none;
  6577. visibility:hidden;
  6578. }
  6579. #u24937_img {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:60px;
  6585. height:35px;
  6586. }
  6587. #u24937 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:630px;
  6591. top:187px;
  6592. width:60px;
  6593. height:35px;
  6594. display:flex;
  6595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:12px;
  6599. color:#606266;
  6600. }
  6601. #u24937 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:2px 2px 2px 0px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u24937_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u24938_img {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:60px;
  6620. height:35px;
  6621. }
  6622. #u24938 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:690px;
  6626. top:187px;
  6627. width:60px;
  6628. height:35px;
  6629. display:flex;
  6630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:12px;
  6634. color:#606266;
  6635. }
  6636. #u24938 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 0px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u24938_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u24939_img {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:60px;
  6655. height:35px;
  6656. }
  6657. #u24939 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:750px;
  6661. top:187px;
  6662. width:60px;
  6663. height:35px;
  6664. display:flex;
  6665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:12px;
  6669. color:#606266;
  6670. }
  6671. #u24939 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 0px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u24939_text {
  6679. border-width:0px;
  6680. word-wrap:break-word;
  6681. text-transform:none;
  6682. visibility:hidden;
  6683. }
  6684. #u24940_img {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:68px;
  6690. height:35px;
  6691. }
  6692. #u24940 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:810px;
  6696. top:187px;
  6697. width:68px;
  6698. height:35px;
  6699. display:flex;
  6700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:12px;
  6704. color:#606266;
  6705. }
  6706. #u24940 .text {
  6707. position:absolute;
  6708. align-self:center;
  6709. padding:2px 2px 2px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u24940_text {
  6714. border-width:0px;
  6715. word-wrap:break-word;
  6716. text-transform:none;
  6717. visibility:hidden;
  6718. }
  6719. #u24941_img {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:60px;
  6725. height:35px;
  6726. }
  6727. #u24941 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:878px;
  6731. top:187px;
  6732. width:60px;
  6733. height:35px;
  6734. display:flex;
  6735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:12px;
  6739. color:#606266;
  6740. }
  6741. #u24941 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 0px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u24941_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. visibility:hidden;
  6753. }
  6754. #u24942_img {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:60px;
  6760. height:35px;
  6761. }
  6762. #u24942 {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:938px;
  6766. top:187px;
  6767. width:60px;
  6768. height:35px;
  6769. display:flex;
  6770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:12px;
  6774. color:#606266;
  6775. }
  6776. #u24942 .text {
  6777. position:absolute;
  6778. align-self:center;
  6779. padding:2px 2px 2px 0px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u24942_text {
  6784. border-width:0px;
  6785. word-wrap:break-word;
  6786. text-transform:none;
  6787. visibility:hidden;
  6788. }
  6789. #u24943_img {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:60px;
  6795. height:35px;
  6796. }
  6797. #u24943 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:998px;
  6801. top:187px;
  6802. width:60px;
  6803. height:35px;
  6804. display:flex;
  6805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:12px;
  6809. color:#606266;
  6810. }
  6811. #u24943 .text {
  6812. position:absolute;
  6813. align-self:center;
  6814. padding:2px 2px 2px 0px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u24943_text {
  6819. border-width:0px;
  6820. word-wrap:break-word;
  6821. text-transform:none;
  6822. visibility:hidden;
  6823. }
  6824. #u24944_img {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:60px;
  6830. height:35px;
  6831. }
  6832. #u24944 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:1058px;
  6836. top:187px;
  6837. width:60px;
  6838. height:35px;
  6839. display:flex;
  6840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:12px;
  6844. color:#606266;
  6845. }
  6846. #u24944 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 0px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u24944_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u24945_img {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:60px;
  6865. height:35px;
  6866. }
  6867. #u24945 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:1118px;
  6871. top:187px;
  6872. width:60px;
  6873. height:35px;
  6874. display:flex;
  6875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:12px;
  6879. color:#606266;
  6880. }
  6881. #u24945 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:2px 2px 2px 0px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u24945_text {
  6889. border-width:0px;
  6890. word-wrap:break-word;
  6891. text-transform:none;
  6892. visibility:hidden;
  6893. }
  6894. #u24946_img {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:50px;
  6900. height:35px;
  6901. }
  6902. #u24946 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:1178px;
  6906. top:187px;
  6907. width:50px;
  6908. height:35px;
  6909. display:flex;
  6910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:12px;
  6914. color:#606266;
  6915. }
  6916. #u24946 .text {
  6917. position:absolute;
  6918. align-self:center;
  6919. padding:2px 2px 2px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u24946_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. visibility:hidden;
  6928. }
  6929. #u24947_img {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:30px;
  6935. height:38px;
  6936. }
  6937. #u24947 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:222px;
  6942. width:30px;
  6943. height:38px;
  6944. display:flex;
  6945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:12px;
  6949. color:#606266;
  6950. }
  6951. #u24947 .text {
  6952. position:absolute;
  6953. align-self:center;
  6954. padding:2px 2px 2px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u24947_text {
  6959. border-width:0px;
  6960. word-wrap:break-word;
  6961. text-transform:none;
  6962. visibility:hidden;
  6963. }
  6964. #u24948_img {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:60px;
  6970. height:38px;
  6971. }
  6972. #u24948 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:30px;
  6976. top:222px;
  6977. width:60px;
  6978. height:38px;
  6979. display:flex;
  6980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:12px;
  6984. color:#606266;
  6985. }
  6986. #u24948 .text {
  6987. position:absolute;
  6988. align-self:center;
  6989. padding:2px 2px 2px 0px;
  6990. box-sizing:border-box;
  6991. width:100%;
  6992. }
  6993. #u24948_text {
  6994. border-width:0px;
  6995. word-wrap:break-word;
  6996. text-transform:none;
  6997. visibility:hidden;
  6998. }
  6999. #u24949_img {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:60px;
  7005. height:38px;
  7006. }
  7007. #u24949 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:90px;
  7011. top:222px;
  7012. width:60px;
  7013. height:38px;
  7014. display:flex;
  7015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:12px;
  7019. color:#606266;
  7020. }
  7021. #u24949 .text {
  7022. position:absolute;
  7023. align-self:center;
  7024. padding:2px 2px 2px 0px;
  7025. box-sizing:border-box;
  7026. width:100%;
  7027. }
  7028. #u24949_text {
  7029. border-width:0px;
  7030. word-wrap:break-word;
  7031. text-transform:none;
  7032. visibility:hidden;
  7033. }
  7034. #u24950_img {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:60px;
  7040. height:38px;
  7041. }
  7042. #u24950 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:150px;
  7046. top:222px;
  7047. width:60px;
  7048. height:38px;
  7049. display:flex;
  7050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:12px;
  7054. color:#606266;
  7055. }
  7056. #u24950 .text {
  7057. position:absolute;
  7058. align-self:center;
  7059. padding:2px 2px 2px 0px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u24950_text {
  7064. border-width:0px;
  7065. word-wrap:break-word;
  7066. text-transform:none;
  7067. visibility:hidden;
  7068. }
  7069. #u24951_img {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:60px;
  7075. height:38px;
  7076. }
  7077. #u24951 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:210px;
  7081. top:222px;
  7082. width:60px;
  7083. height:38px;
  7084. display:flex;
  7085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:12px;
  7089. color:#606266;
  7090. }
  7091. #u24951 .text {
  7092. position:absolute;
  7093. align-self:center;
  7094. padding:2px 2px 2px 0px;
  7095. box-sizing:border-box;
  7096. width:100%;
  7097. }
  7098. #u24951_text {
  7099. border-width:0px;
  7100. word-wrap:break-word;
  7101. text-transform:none;
  7102. visibility:hidden;
  7103. }
  7104. #u24952_img {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:60px;
  7110. height:38px;
  7111. }
  7112. #u24952 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:270px;
  7116. top:222px;
  7117. width:60px;
  7118. height:38px;
  7119. display:flex;
  7120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:12px;
  7124. color:#606266;
  7125. }
  7126. #u24952 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u24952_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. visibility:hidden;
  7138. }
  7139. #u24953_img {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:60px;
  7145. height:38px;
  7146. }
  7147. #u24953 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:330px;
  7151. top:222px;
  7152. width:60px;
  7153. height:38px;
  7154. display:flex;
  7155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. color:#606266;
  7160. }
  7161. #u24953 .text {
  7162. position:absolute;
  7163. align-self:center;
  7164. padding:2px 2px 2px 0px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u24953_text {
  7169. border-width:0px;
  7170. word-wrap:break-word;
  7171. text-transform:none;
  7172. visibility:hidden;
  7173. }
  7174. #u24954_img {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:60px;
  7180. height:38px;
  7181. }
  7182. #u24954 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:390px;
  7186. top:222px;
  7187. width:60px;
  7188. height:38px;
  7189. display:flex;
  7190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:12px;
  7194. color:#606266;
  7195. }
  7196. #u24954 .text {
  7197. position:absolute;
  7198. align-self:center;
  7199. padding:2px 2px 2px 0px;
  7200. box-sizing:border-box;
  7201. width:100%;
  7202. }
  7203. #u24954_text {
  7204. border-width:0px;
  7205. word-wrap:break-word;
  7206. text-transform:none;
  7207. visibility:hidden;
  7208. }
  7209. #u24955_img {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:0px;
  7213. top:0px;
  7214. width:60px;
  7215. height:38px;
  7216. }
  7217. #u24955 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:450px;
  7221. top:222px;
  7222. width:60px;
  7223. height:38px;
  7224. display:flex;
  7225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:12px;
  7229. color:#606266;
  7230. }
  7231. #u24955 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 0px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u24955_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. visibility:hidden;
  7243. }
  7244. #u24956_img {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:60px;
  7250. height:38px;
  7251. }
  7252. #u24956 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:510px;
  7256. top:222px;
  7257. width:60px;
  7258. height:38px;
  7259. display:flex;
  7260. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:12px;
  7264. color:#606266;
  7265. }
  7266. #u24956 .text {
  7267. position:absolute;
  7268. align-self:center;
  7269. padding:2px 2px 2px 0px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u24956_text {
  7274. border-width:0px;
  7275. word-wrap:break-word;
  7276. text-transform:none;
  7277. visibility:hidden;
  7278. }
  7279. #u24957_img {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:60px;
  7285. height:38px;
  7286. }
  7287. #u24957 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:570px;
  7291. top:222px;
  7292. width:60px;
  7293. height:38px;
  7294. display:flex;
  7295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:12px;
  7299. color:#606266;
  7300. }
  7301. #u24957 .text {
  7302. position:absolute;
  7303. align-self:center;
  7304. padding:2px 2px 2px 0px;
  7305. box-sizing:border-box;
  7306. width:100%;
  7307. }
  7308. #u24957_text {
  7309. border-width:0px;
  7310. word-wrap:break-word;
  7311. text-transform:none;
  7312. visibility:hidden;
  7313. }
  7314. #u24958_img {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:60px;
  7320. height:38px;
  7321. }
  7322. #u24958 {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:630px;
  7326. top:222px;
  7327. width:60px;
  7328. height:38px;
  7329. display:flex;
  7330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7331. font-weight:400;
  7332. font-style:normal;
  7333. font-size:12px;
  7334. color:#606266;
  7335. }
  7336. #u24958 .text {
  7337. position:absolute;
  7338. align-self:center;
  7339. padding:2px 2px 2px 0px;
  7340. box-sizing:border-box;
  7341. width:100%;
  7342. }
  7343. #u24958_text {
  7344. border-width:0px;
  7345. word-wrap:break-word;
  7346. text-transform:none;
  7347. visibility:hidden;
  7348. }
  7349. #u24959_img {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:60px;
  7355. height:38px;
  7356. }
  7357. #u24959 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:690px;
  7361. top:222px;
  7362. width:60px;
  7363. height:38px;
  7364. display:flex;
  7365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:12px;
  7369. color:#606266;
  7370. }
  7371. #u24959 .text {
  7372. position:absolute;
  7373. align-self:center;
  7374. padding:2px 2px 2px 0px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u24959_text {
  7379. border-width:0px;
  7380. word-wrap:break-word;
  7381. text-transform:none;
  7382. visibility:hidden;
  7383. }
  7384. #u24960_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:60px;
  7390. height:38px;
  7391. }
  7392. #u24960 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:750px;
  7396. top:222px;
  7397. width:60px;
  7398. height:38px;
  7399. display:flex;
  7400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:12px;
  7404. color:#606266;
  7405. }
  7406. #u24960 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:2px 2px 2px 0px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u24960_text {
  7414. border-width:0px;
  7415. word-wrap:break-word;
  7416. text-transform:none;
  7417. visibility:hidden;
  7418. }
  7419. #u24961_img {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:68px;
  7425. height:38px;
  7426. }
  7427. #u24961 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:810px;
  7431. top:222px;
  7432. width:68px;
  7433. height:38px;
  7434. display:flex;
  7435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7436. font-weight:400;
  7437. font-style:normal;
  7438. font-size:12px;
  7439. color:#606266;
  7440. }
  7441. #u24961 .text {
  7442. position:absolute;
  7443. align-self:center;
  7444. padding:2px 2px 2px 0px;
  7445. box-sizing:border-box;
  7446. width:100%;
  7447. }
  7448. #u24961_text {
  7449. border-width:0px;
  7450. word-wrap:break-word;
  7451. text-transform:none;
  7452. visibility:hidden;
  7453. }
  7454. #u24962_img {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:0px;
  7459. width:60px;
  7460. height:38px;
  7461. }
  7462. #u24962 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:878px;
  7466. top:222px;
  7467. width:60px;
  7468. height:38px;
  7469. display:flex;
  7470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:12px;
  7474. color:#606266;
  7475. }
  7476. #u24962 .text {
  7477. position:absolute;
  7478. align-self:center;
  7479. padding:2px 2px 2px 0px;
  7480. box-sizing:border-box;
  7481. width:100%;
  7482. }
  7483. #u24962_text {
  7484. border-width:0px;
  7485. word-wrap:break-word;
  7486. text-transform:none;
  7487. visibility:hidden;
  7488. }
  7489. #u24963_img {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:0px;
  7493. top:0px;
  7494. width:60px;
  7495. height:38px;
  7496. }
  7497. #u24963 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:938px;
  7501. top:222px;
  7502. width:60px;
  7503. height:38px;
  7504. display:flex;
  7505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:12px;
  7509. color:#606266;
  7510. }
  7511. #u24963 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 0px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u24963_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u24964_img {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:60px;
  7530. height:38px;
  7531. }
  7532. #u24964 {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:998px;
  7536. top:222px;
  7537. width:60px;
  7538. height:38px;
  7539. display:flex;
  7540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:12px;
  7544. color:#606266;
  7545. }
  7546. #u24964 .text {
  7547. position:absolute;
  7548. align-self:center;
  7549. padding:2px 2px 2px 0px;
  7550. box-sizing:border-box;
  7551. width:100%;
  7552. }
  7553. #u24964_text {
  7554. border-width:0px;
  7555. word-wrap:break-word;
  7556. text-transform:none;
  7557. visibility:hidden;
  7558. }
  7559. #u24965_img {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:0px;
  7564. width:60px;
  7565. height:38px;
  7566. }
  7567. #u24965 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:1058px;
  7571. top:222px;
  7572. width:60px;
  7573. height:38px;
  7574. display:flex;
  7575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7576. font-weight:400;
  7577. font-style:normal;
  7578. font-size:12px;
  7579. color:#606266;
  7580. }
  7581. #u24965 .text {
  7582. position:absolute;
  7583. align-self:center;
  7584. padding:2px 2px 2px 0px;
  7585. box-sizing:border-box;
  7586. width:100%;
  7587. }
  7588. #u24965_text {
  7589. border-width:0px;
  7590. word-wrap:break-word;
  7591. text-transform:none;
  7592. visibility:hidden;
  7593. }
  7594. #u24966_img {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:60px;
  7600. height:38px;
  7601. }
  7602. #u24966 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:1118px;
  7606. top:222px;
  7607. width:60px;
  7608. height:38px;
  7609. display:flex;
  7610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:12px;
  7614. color:#606266;
  7615. }
  7616. #u24966 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:2px 2px 2px 0px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u24966_text {
  7624. border-width:0px;
  7625. word-wrap:break-word;
  7626. text-transform:none;
  7627. visibility:hidden;
  7628. }
  7629. #u24967_img {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:0px;
  7633. top:0px;
  7634. width:50px;
  7635. height:38px;
  7636. }
  7637. #u24967 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1178px;
  7641. top:222px;
  7642. width:50px;
  7643. height:38px;
  7644. display:flex;
  7645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:12px;
  7649. color:#606266;
  7650. }
  7651. #u24967 .text {
  7652. position:absolute;
  7653. align-self:center;
  7654. padding:2px 2px 2px 0px;
  7655. box-sizing:border-box;
  7656. width:100%;
  7657. }
  7658. #u24967_text {
  7659. border-width:0px;
  7660. word-wrap:break-word;
  7661. text-transform:none;
  7662. visibility:hidden;
  7663. }
  7664. #u24968_img {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:30px;
  7670. height:32px;
  7671. }
  7672. #u24968 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:260px;
  7677. width:30px;
  7678. height:32px;
  7679. display:flex;
  7680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:12px;
  7684. color:#606266;
  7685. }
  7686. #u24968 .text {
  7687. position:absolute;
  7688. align-self:center;
  7689. padding:2px 2px 2px 0px;
  7690. box-sizing:border-box;
  7691. width:100%;
  7692. }
  7693. #u24968_text {
  7694. border-width:0px;
  7695. word-wrap:break-word;
  7696. text-transform:none;
  7697. visibility:hidden;
  7698. }
  7699. #u24969_img {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:60px;
  7705. height:32px;
  7706. }
  7707. #u24969 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:30px;
  7711. top:260px;
  7712. width:60px;
  7713. height:32px;
  7714. display:flex;
  7715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:12px;
  7719. color:#606266;
  7720. }
  7721. #u24969 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:2px 2px 2px 0px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u24969_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. visibility:hidden;
  7733. }
  7734. #u24970_img {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:60px;
  7740. height:32px;
  7741. }
  7742. #u24970 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:90px;
  7746. top:260px;
  7747. width:60px;
  7748. height:32px;
  7749. display:flex;
  7750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:12px;
  7754. color:#606266;
  7755. }
  7756. #u24970 .text {
  7757. position:absolute;
  7758. align-self:center;
  7759. padding:2px 2px 2px 0px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u24970_text {
  7764. border-width:0px;
  7765. word-wrap:break-word;
  7766. text-transform:none;
  7767. visibility:hidden;
  7768. }
  7769. #u24971_img {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:60px;
  7775. height:32px;
  7776. }
  7777. #u24971 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:150px;
  7781. top:260px;
  7782. width:60px;
  7783. height:32px;
  7784. display:flex;
  7785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:12px;
  7789. color:#606266;
  7790. }
  7791. #u24971 .text {
  7792. position:absolute;
  7793. align-self:center;
  7794. padding:2px 2px 2px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u24971_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. visibility:hidden;
  7803. }
  7804. #u24972_img {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:60px;
  7810. height:32px;
  7811. }
  7812. #u24972 {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:210px;
  7816. top:260px;
  7817. width:60px;
  7818. height:32px;
  7819. display:flex;
  7820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:12px;
  7824. color:#606266;
  7825. }
  7826. #u24972 .text {
  7827. position:absolute;
  7828. align-self:center;
  7829. padding:2px 2px 2px 0px;
  7830. box-sizing:border-box;
  7831. width:100%;
  7832. }
  7833. #u24972_text {
  7834. border-width:0px;
  7835. word-wrap:break-word;
  7836. text-transform:none;
  7837. visibility:hidden;
  7838. }
  7839. #u24973_img {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:60px;
  7845. height:32px;
  7846. }
  7847. #u24973 {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:270px;
  7851. top:260px;
  7852. width:60px;
  7853. height:32px;
  7854. display:flex;
  7855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:12px;
  7859. color:#606266;
  7860. }
  7861. #u24973 .text {
  7862. position:absolute;
  7863. align-self:center;
  7864. padding:2px 2px 2px 0px;
  7865. box-sizing:border-box;
  7866. width:100%;
  7867. }
  7868. #u24973_text {
  7869. border-width:0px;
  7870. word-wrap:break-word;
  7871. text-transform:none;
  7872. visibility:hidden;
  7873. }
  7874. #u24974_img {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:60px;
  7880. height:32px;
  7881. }
  7882. #u24974 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:330px;
  7886. top:260px;
  7887. width:60px;
  7888. height:32px;
  7889. display:flex;
  7890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:12px;
  7894. color:#606266;
  7895. }
  7896. #u24974 .text {
  7897. position:absolute;
  7898. align-self:center;
  7899. padding:2px 2px 2px 0px;
  7900. box-sizing:border-box;
  7901. width:100%;
  7902. }
  7903. #u24974_text {
  7904. border-width:0px;
  7905. word-wrap:break-word;
  7906. text-transform:none;
  7907. visibility:hidden;
  7908. }
  7909. #u24975_img {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:60px;
  7915. height:32px;
  7916. }
  7917. #u24975 {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:390px;
  7921. top:260px;
  7922. width:60px;
  7923. height:32px;
  7924. display:flex;
  7925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:12px;
  7929. color:#606266;
  7930. }
  7931. #u24975 .text {
  7932. position:absolute;
  7933. align-self:center;
  7934. padding:2px 2px 2px 0px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u24975_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. visibility:hidden;
  7943. }
  7944. #u24976_img {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:60px;
  7950. height:32px;
  7951. }
  7952. #u24976 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:450px;
  7956. top:260px;
  7957. width:60px;
  7958. height:32px;
  7959. display:flex;
  7960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:12px;
  7964. color:#606266;
  7965. }
  7966. #u24976 .text {
  7967. position:absolute;
  7968. align-self:center;
  7969. padding:2px 2px 2px 0px;
  7970. box-sizing:border-box;
  7971. width:100%;
  7972. }
  7973. #u24976_text {
  7974. border-width:0px;
  7975. word-wrap:break-word;
  7976. text-transform:none;
  7977. visibility:hidden;
  7978. }
  7979. #u24977_img {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:60px;
  7985. height:32px;
  7986. }
  7987. #u24977 {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:510px;
  7991. top:260px;
  7992. width:60px;
  7993. height:32px;
  7994. display:flex;
  7995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:12px;
  7999. color:#606266;
  8000. }
  8001. #u24977 .text {
  8002. position:absolute;
  8003. align-self:center;
  8004. padding:2px 2px 2px 0px;
  8005. box-sizing:border-box;
  8006. width:100%;
  8007. }
  8008. #u24977_text {
  8009. border-width:0px;
  8010. word-wrap:break-word;
  8011. text-transform:none;
  8012. visibility:hidden;
  8013. }
  8014. #u24978_img {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:0px;
  8018. top:0px;
  8019. width:60px;
  8020. height:32px;
  8021. }
  8022. #u24978 {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:570px;
  8026. top:260px;
  8027. width:60px;
  8028. height:32px;
  8029. display:flex;
  8030. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:12px;
  8034. color:#606266;
  8035. }
  8036. #u24978 .text {
  8037. position:absolute;
  8038. align-self:center;
  8039. padding:2px 2px 2px 0px;
  8040. box-sizing:border-box;
  8041. width:100%;
  8042. }
  8043. #u24978_text {
  8044. border-width:0px;
  8045. word-wrap:break-word;
  8046. text-transform:none;
  8047. visibility:hidden;
  8048. }
  8049. #u24979_img {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:60px;
  8055. height:32px;
  8056. }
  8057. #u24979 {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:630px;
  8061. top:260px;
  8062. width:60px;
  8063. height:32px;
  8064. display:flex;
  8065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:12px;
  8069. color:#606266;
  8070. }
  8071. #u24979 .text {
  8072. position:absolute;
  8073. align-self:center;
  8074. padding:2px 2px 2px 0px;
  8075. box-sizing:border-box;
  8076. width:100%;
  8077. }
  8078. #u24979_text {
  8079. border-width:0px;
  8080. word-wrap:break-word;
  8081. text-transform:none;
  8082. visibility:hidden;
  8083. }
  8084. #u24980_img {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:60px;
  8090. height:32px;
  8091. }
  8092. #u24980 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:690px;
  8096. top:260px;
  8097. width:60px;
  8098. height:32px;
  8099. display:flex;
  8100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:12px;
  8104. color:#606266;
  8105. }
  8106. #u24980 .text {
  8107. position:absolute;
  8108. align-self:center;
  8109. padding:2px 2px 2px 0px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u24980_text {
  8114. border-width:0px;
  8115. word-wrap:break-word;
  8116. text-transform:none;
  8117. visibility:hidden;
  8118. }
  8119. #u24981_img {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:60px;
  8125. height:32px;
  8126. }
  8127. #u24981 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:750px;
  8131. top:260px;
  8132. width:60px;
  8133. height:32px;
  8134. display:flex;
  8135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:12px;
  8139. color:#606266;
  8140. }
  8141. #u24981 .text {
  8142. position:absolute;
  8143. align-self:center;
  8144. padding:2px 2px 2px 0px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u24981_text {
  8149. border-width:0px;
  8150. word-wrap:break-word;
  8151. text-transform:none;
  8152. visibility:hidden;
  8153. }
  8154. #u24982_img {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:0px;
  8158. top:0px;
  8159. width:68px;
  8160. height:32px;
  8161. }
  8162. #u24982 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:810px;
  8166. top:260px;
  8167. width:68px;
  8168. height:32px;
  8169. display:flex;
  8170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8171. font-weight:400;
  8172. font-style:normal;
  8173. font-size:12px;
  8174. color:#606266;
  8175. }
  8176. #u24982 .text {
  8177. position:absolute;
  8178. align-self:center;
  8179. padding:2px 2px 2px 0px;
  8180. box-sizing:border-box;
  8181. width:100%;
  8182. }
  8183. #u24982_text {
  8184. border-width:0px;
  8185. word-wrap:break-word;
  8186. text-transform:none;
  8187. visibility:hidden;
  8188. }
  8189. #u24983_img {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:60px;
  8195. height:32px;
  8196. }
  8197. #u24983 {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:878px;
  8201. top:260px;
  8202. width:60px;
  8203. height:32px;
  8204. display:flex;
  8205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8206. font-weight:400;
  8207. font-style:normal;
  8208. font-size:12px;
  8209. color:#606266;
  8210. }
  8211. #u24983 .text {
  8212. position:absolute;
  8213. align-self:center;
  8214. padding:2px 2px 2px 0px;
  8215. box-sizing:border-box;
  8216. width:100%;
  8217. }
  8218. #u24983_text {
  8219. border-width:0px;
  8220. word-wrap:break-word;
  8221. text-transform:none;
  8222. visibility:hidden;
  8223. }
  8224. #u24984_img {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:60px;
  8230. height:32px;
  8231. }
  8232. #u24984 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:938px;
  8236. top:260px;
  8237. width:60px;
  8238. height:32px;
  8239. display:flex;
  8240. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8241. font-weight:400;
  8242. font-style:normal;
  8243. font-size:12px;
  8244. color:#606266;
  8245. }
  8246. #u24984 .text {
  8247. position:absolute;
  8248. align-self:center;
  8249. padding:2px 2px 2px 0px;
  8250. box-sizing:border-box;
  8251. width:100%;
  8252. }
  8253. #u24984_text {
  8254. border-width:0px;
  8255. word-wrap:break-word;
  8256. text-transform:none;
  8257. visibility:hidden;
  8258. }
  8259. #u24985_img {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:0px;
  8263. top:0px;
  8264. width:60px;
  8265. height:32px;
  8266. }
  8267. #u24985 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:998px;
  8271. top:260px;
  8272. width:60px;
  8273. height:32px;
  8274. display:flex;
  8275. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:12px;
  8279. color:#606266;
  8280. }
  8281. #u24985 .text {
  8282. position:absolute;
  8283. align-self:center;
  8284. padding:2px 2px 2px 0px;
  8285. box-sizing:border-box;
  8286. width:100%;
  8287. }
  8288. #u24985_text {
  8289. border-width:0px;
  8290. word-wrap:break-word;
  8291. text-transform:none;
  8292. visibility:hidden;
  8293. }
  8294. #u24986_img {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:0px;
  8298. top:0px;
  8299. width:60px;
  8300. height:32px;
  8301. }
  8302. #u24986 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:1058px;
  8306. top:260px;
  8307. width:60px;
  8308. height:32px;
  8309. display:flex;
  8310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:12px;
  8314. color:#606266;
  8315. }
  8316. #u24986 .text {
  8317. position:absolute;
  8318. align-self:center;
  8319. padding:2px 2px 2px 0px;
  8320. box-sizing:border-box;
  8321. width:100%;
  8322. }
  8323. #u24986_text {
  8324. border-width:0px;
  8325. word-wrap:break-word;
  8326. text-transform:none;
  8327. visibility:hidden;
  8328. }
  8329. #u24987_img {
  8330. border-width:0px;
  8331. position:absolute;
  8332. left:0px;
  8333. top:0px;
  8334. width:60px;
  8335. height:32px;
  8336. }
  8337. #u24987 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:1118px;
  8341. top:260px;
  8342. width:60px;
  8343. height:32px;
  8344. display:flex;
  8345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:12px;
  8349. color:#606266;
  8350. }
  8351. #u24987 .text {
  8352. position:absolute;
  8353. align-self:center;
  8354. padding:2px 2px 2px 0px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u24987_text {
  8359. border-width:0px;
  8360. word-wrap:break-word;
  8361. text-transform:none;
  8362. visibility:hidden;
  8363. }
  8364. #u24988_img {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:50px;
  8370. height:32px;
  8371. }
  8372. #u24988 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:1178px;
  8376. top:260px;
  8377. width:50px;
  8378. height:32px;
  8379. display:flex;
  8380. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8381. font-weight:400;
  8382. font-style:normal;
  8383. font-size:12px;
  8384. color:#606266;
  8385. }
  8386. #u24988 .text {
  8387. position:absolute;
  8388. align-self:center;
  8389. padding:2px 2px 2px 0px;
  8390. box-sizing:border-box;
  8391. width:100%;
  8392. }
  8393. #u24988_text {
  8394. border-width:0px;
  8395. word-wrap:break-word;
  8396. text-transform:none;
  8397. visibility:hidden;
  8398. }
  8399. #u24989 {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:0px;
  8405. height:0px;
  8406. }
  8407. #u24990_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:59px;
  8413. height:30px;
  8414. background:inherit;
  8415. background-color:rgba(0, 153, 255, 1);
  8416. box-sizing:border-box;
  8417. border-width:1px;
  8418. border-style:solid;
  8419. border-color:rgba(0, 153, 255, 1);
  8420. border-radius:4px;
  8421. -moz-box-shadow:none;
  8422. -webkit-box-shadow:none;
  8423. box-shadow:none;
  8424. font-family:'Microsoft YaHei', sans-serif;
  8425. font-weight:400;
  8426. font-style:normal;
  8427. font-size:14px;
  8428. color:#FFFFFF;
  8429. }
  8430. #u24990 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:650px;
  8434. top:280px;
  8435. width:59px;
  8436. height:30px;
  8437. display:flex;
  8438. font-family:'Microsoft YaHei', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. font-size:14px;
  8442. color:#FFFFFF;
  8443. }
  8444. #u24990 .text {
  8445. position:absolute;
  8446. align-self:center;
  8447. padding:5px 15px 5px 15px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u24990_text {
  8452. border-width:0px;
  8453. white-space:nowrap;
  8454. text-transform:none;
  8455. }
  8456. #u24991_div {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:0px;
  8460. top:0px;
  8461. width:55px;
  8462. height:30px;
  8463. background:inherit;
  8464. background-color:rgba(255, 255, 255, 1);
  8465. box-sizing:border-box;
  8466. border-width:1px;
  8467. border-style:solid;
  8468. border-color:rgba(170, 170, 170, 1);
  8469. border-radius:4px;
  8470. -moz-box-shadow:none;
  8471. -webkit-box-shadow:none;
  8472. box-shadow:none;
  8473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8474. font-weight:400;
  8475. font-style:normal;
  8476. font-size:12px;
  8477. color:#555555;
  8478. }
  8479. #u24991 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:719px;
  8483. top:280px;
  8484. width:55px;
  8485. height:30px;
  8486. display:flex;
  8487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8488. font-weight:400;
  8489. font-style:normal;
  8490. font-size:12px;
  8491. color:#555555;
  8492. }
  8493. #u24991 .text {
  8494. position:absolute;
  8495. align-self:center;
  8496. padding:5px 15px 5px 15px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u24991_text {
  8501. border-width:0px;
  8502. white-space:nowrap;
  8503. text-transform:none;
  8504. }
  8505. #u24992 {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:0px;
  8511. height:0px;
  8512. }
  8513. #u24993_div {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:0px;
  8517. top:0px;
  8518. width:140px;
  8519. height:30px;
  8520. background:inherit;
  8521. background-color:rgba(255, 255, 255, 1);
  8522. box-sizing:border-box;
  8523. border-width:1px;
  8524. border-style:solid;
  8525. border-color:rgba(215, 215, 215, 1);
  8526. border-radius:4px;
  8527. -moz-box-shadow:none;
  8528. -webkit-box-shadow:none;
  8529. box-shadow:none;
  8530. font-size:11px;
  8531. }
  8532. #u24993 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:1397px;
  8536. top:240px;
  8537. width:140px;
  8538. height:30px;
  8539. display:flex;
  8540. font-size:11px;
  8541. }
  8542. #u24993 .text {
  8543. position:absolute;
  8544. align-self:center;
  8545. padding:2px 2px 2px 2px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u24993_text {
  8550. border-width:0px;
  8551. word-wrap:break-word;
  8552. text-transform:none;
  8553. visibility:hidden;
  8554. }
  8555. #u24994_input {
  8556. position:absolute;
  8557. left:0px;
  8558. top:0px;
  8559. width:120px;
  8560. height:23px;
  8561. padding:2px 2px 2px 2px;
  8562. font-family:'ArialMT', 'Arial', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:11px;
  8566. letter-spacing:normal;
  8567. color:#AAAAAA;
  8568. vertical-align:none;
  8569. text-align:left;
  8570. text-transform:none;
  8571. background-color:transparent;
  8572. border-color:transparent;
  8573. }
  8574. #u24994_input.disabled {
  8575. position:absolute;
  8576. left:0px;
  8577. top:0px;
  8578. width:120px;
  8579. height:23px;
  8580. padding:2px 2px 2px 2px;
  8581. font-family:'ArialMT', 'Arial', sans-serif;
  8582. font-weight:400;
  8583. font-style:normal;
  8584. font-size:11px;
  8585. letter-spacing:normal;
  8586. color:#AAAAAA;
  8587. vertical-align:none;
  8588. text-align:left;
  8589. text-transform:none;
  8590. background-color:transparent;
  8591. border-color:transparent;
  8592. }
  8593. #u24994_div {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:120px;
  8599. height:23px;
  8600. background:inherit;
  8601. background-color:rgba(255, 255, 255, 1);
  8602. border:none;
  8603. border-radius:0px;
  8604. -moz-box-shadow:none;
  8605. -webkit-box-shadow:none;
  8606. box-shadow:none;
  8607. font-size:11px;
  8608. color:#AAAAAA;
  8609. }
  8610. #u24994 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:1404px;
  8614. top:242px;
  8615. width:120px;
  8616. height:23px;
  8617. display:flex;
  8618. font-size:11px;
  8619. color:#AAAAAA;
  8620. }
  8621. #u24994 .text {
  8622. position:absolute;
  8623. align-self:flex-start;
  8624. padding:2px 2px 2px 2px;
  8625. box-sizing:border-box;
  8626. width:100%;
  8627. }
  8628. #u24994_div.disabled {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:0px;
  8632. top:0px;
  8633. width:120px;
  8634. height:23px;
  8635. background:inherit;
  8636. background-color:rgba(240, 240, 240, 1);
  8637. border:none;
  8638. border-radius:0px;
  8639. -moz-box-shadow:none;
  8640. -webkit-box-shadow:none;
  8641. box-shadow:none;
  8642. font-size:11px;
  8643. color:#AAAAAA;
  8644. }
  8645. #u24994.disabled {
  8646. }
  8647. .u24994_input_option {
  8648. font-size:11px;
  8649. }
  8650. #u24995 {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:0px;
  8656. height:0px;
  8657. }
  8658. #u24996_div {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:140px;
  8664. height:30px;
  8665. background:inherit;
  8666. background-color:rgba(255, 255, 255, 1);
  8667. box-sizing:border-box;
  8668. border-width:1px;
  8669. border-style:solid;
  8670. border-color:rgba(215, 215, 215, 1);
  8671. border-radius:4px;
  8672. -moz-box-shadow:none;
  8673. -webkit-box-shadow:none;
  8674. box-shadow:none;
  8675. font-size:11px;
  8676. }
  8677. #u24996 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:1247px;
  8681. top:240px;
  8682. width:140px;
  8683. height:30px;
  8684. display:flex;
  8685. font-size:11px;
  8686. }
  8687. #u24996 .text {
  8688. position:absolute;
  8689. align-self:center;
  8690. padding:2px 2px 2px 2px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u24996_text {
  8695. border-width:0px;
  8696. word-wrap:break-word;
  8697. text-transform:none;
  8698. visibility:hidden;
  8699. }
  8700. #u24997_input {
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:120px;
  8705. height:23px;
  8706. padding:2px 2px 2px 2px;
  8707. font-family:'ArialMT', 'Arial', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:11px;
  8711. letter-spacing:normal;
  8712. color:#AAAAAA;
  8713. vertical-align:none;
  8714. text-align:left;
  8715. text-transform:none;
  8716. background-color:transparent;
  8717. border-color:transparent;
  8718. }
  8719. #u24997_input.disabled {
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:120px;
  8724. height:23px;
  8725. padding:2px 2px 2px 2px;
  8726. font-family:'ArialMT', 'Arial', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:11px;
  8730. letter-spacing:normal;
  8731. color:#AAAAAA;
  8732. vertical-align:none;
  8733. text-align:left;
  8734. text-transform:none;
  8735. background-color:transparent;
  8736. border-color:transparent;
  8737. }
  8738. #u24997_div {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:0px;
  8742. top:0px;
  8743. width:120px;
  8744. height:23px;
  8745. background:inherit;
  8746. background-color:rgba(255, 255, 255, 1);
  8747. border:none;
  8748. border-radius:0px;
  8749. -moz-box-shadow:none;
  8750. -webkit-box-shadow:none;
  8751. box-shadow:none;
  8752. font-size:11px;
  8753. color:#AAAAAA;
  8754. }
  8755. #u24997 {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:1254px;
  8759. top:242px;
  8760. width:120px;
  8761. height:23px;
  8762. display:flex;
  8763. font-size:11px;
  8764. color:#AAAAAA;
  8765. }
  8766. #u24997 .text {
  8767. position:absolute;
  8768. align-self:flex-start;
  8769. padding:2px 2px 2px 2px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u24997_div.disabled {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:120px;
  8779. height:23px;
  8780. background:inherit;
  8781. background-color:rgba(240, 240, 240, 1);
  8782. border:none;
  8783. border-radius:0px;
  8784. -moz-box-shadow:none;
  8785. -webkit-box-shadow:none;
  8786. box-shadow:none;
  8787. font-size:11px;
  8788. color:#AAAAAA;
  8789. }
  8790. #u24997.disabled {
  8791. }
  8792. .u24997_input_option {
  8793. font-size:11px;
  8794. }
  8795. #u24998 {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:0px;
  8801. height:0px;
  8802. }
  8803. #u24999_div {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:140px;
  8809. height:30px;
  8810. background:inherit;
  8811. background-color:rgba(255, 255, 255, 1);
  8812. box-sizing:border-box;
  8813. border-width:1px;
  8814. border-style:solid;
  8815. border-color:rgba(215, 215, 215, 1);
  8816. border-radius:4px;
  8817. -moz-box-shadow:none;
  8818. -webkit-box-shadow:none;
  8819. box-shadow:none;
  8820. font-size:11px;
  8821. }
  8822. #u24999 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:500px;
  8826. top:280px;
  8827. width:140px;
  8828. height:30px;
  8829. display:flex;
  8830. font-size:11px;
  8831. }
  8832. #u24999 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:2px 2px 2px 2px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u24999_text {
  8840. border-width:0px;
  8841. word-wrap:break-word;
  8842. text-transform:none;
  8843. visibility:hidden;
  8844. }
  8845. #u25000_input {
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:120px;
  8850. height:23px;
  8851. padding:2px 2px 2px 2px;
  8852. font-family:'ArialMT', 'Arial', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:11px;
  8856. letter-spacing:normal;
  8857. color:#AAAAAA;
  8858. vertical-align:none;
  8859. text-align:left;
  8860. text-transform:none;
  8861. background-color:transparent;
  8862. border-color:transparent;
  8863. }
  8864. #u25000_input.disabled {
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:120px;
  8869. height:23px;
  8870. padding:2px 2px 2px 2px;
  8871. font-family:'ArialMT', 'Arial', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:11px;
  8875. letter-spacing:normal;
  8876. color:#AAAAAA;
  8877. vertical-align:none;
  8878. text-align:left;
  8879. text-transform:none;
  8880. background-color:transparent;
  8881. border-color:transparent;
  8882. }
  8883. #u25000_div {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:120px;
  8889. height:23px;
  8890. background:inherit;
  8891. background-color:rgba(255, 255, 255, 1);
  8892. border:none;
  8893. border-radius:0px;
  8894. -moz-box-shadow:none;
  8895. -webkit-box-shadow:none;
  8896. box-shadow:none;
  8897. font-size:11px;
  8898. color:#AAAAAA;
  8899. }
  8900. #u25000 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:507px;
  8904. top:282px;
  8905. width:120px;
  8906. height:23px;
  8907. display:flex;
  8908. font-size:11px;
  8909. color:#AAAAAA;
  8910. }
  8911. #u25000 .text {
  8912. position:absolute;
  8913. align-self:flex-start;
  8914. padding:2px 2px 2px 2px;
  8915. box-sizing:border-box;
  8916. width:100%;
  8917. }
  8918. #u25000_div.disabled {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:120px;
  8924. height:23px;
  8925. background:inherit;
  8926. background-color:rgba(240, 240, 240, 1);
  8927. border:none;
  8928. border-radius:0px;
  8929. -moz-box-shadow:none;
  8930. -webkit-box-shadow:none;
  8931. box-shadow:none;
  8932. font-size:11px;
  8933. color:#AAAAAA;
  8934. }
  8935. #u25000.disabled {
  8936. }
  8937. .u25000_input_option {
  8938. font-size:11px;
  8939. }
  8940. #u25001 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u25002_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:140px;
  8954. height:30px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 1);
  8957. box-sizing:border-box;
  8958. border-width:1px;
  8959. border-style:solid;
  8960. border-color:rgba(215, 215, 215, 1);
  8961. border-radius:4px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-size:11px;
  8966. }
  8967. #u25002 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:350px;
  8971. top:280px;
  8972. width:140px;
  8973. height:30px;
  8974. display:flex;
  8975. font-size:11px;
  8976. }
  8977. #u25002 .text {
  8978. position:absolute;
  8979. align-self:center;
  8980. padding:2px 2px 2px 2px;
  8981. box-sizing:border-box;
  8982. width:100%;
  8983. }
  8984. #u25002_text {
  8985. border-width:0px;
  8986. word-wrap:break-word;
  8987. text-transform:none;
  8988. visibility:hidden;
  8989. }
  8990. #u25003_input {
  8991. position:absolute;
  8992. left:0px;
  8993. top:0px;
  8994. width:120px;
  8995. height:23px;
  8996. padding:2px 2px 2px 2px;
  8997. font-family:'ArialMT', 'Arial', sans-serif;
  8998. font-weight:400;
  8999. font-style:normal;
  9000. font-size:11px;
  9001. letter-spacing:normal;
  9002. color:#AAAAAA;
  9003. vertical-align:none;
  9004. text-align:left;
  9005. text-transform:none;
  9006. background-color:transparent;
  9007. border-color:transparent;
  9008. }
  9009. #u25003_input.disabled {
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:120px;
  9014. height:23px;
  9015. padding:2px 2px 2px 2px;
  9016. font-family:'ArialMT', 'Arial', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:11px;
  9020. letter-spacing:normal;
  9021. color:#AAAAAA;
  9022. vertical-align:none;
  9023. text-align:left;
  9024. text-transform:none;
  9025. background-color:transparent;
  9026. border-color:transparent;
  9027. }
  9028. #u25003_div {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:0px;
  9032. top:0px;
  9033. width:120px;
  9034. height:23px;
  9035. background:inherit;
  9036. background-color:rgba(255, 255, 255, 1);
  9037. border:none;
  9038. border-radius:0px;
  9039. -moz-box-shadow:none;
  9040. -webkit-box-shadow:none;
  9041. box-shadow:none;
  9042. font-size:11px;
  9043. color:#AAAAAA;
  9044. }
  9045. #u25003 {
  9046. border-width:0px;
  9047. position:absolute;
  9048. left:357px;
  9049. top:282px;
  9050. width:120px;
  9051. height:23px;
  9052. display:flex;
  9053. font-size:11px;
  9054. color:#AAAAAA;
  9055. }
  9056. #u25003 .text {
  9057. position:absolute;
  9058. align-self:flex-start;
  9059. padding:2px 2px 2px 2px;
  9060. box-sizing:border-box;
  9061. width:100%;
  9062. }
  9063. #u25003_div.disabled {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:120px;
  9069. height:23px;
  9070. background:inherit;
  9071. background-color:rgba(240, 240, 240, 1);
  9072. border:none;
  9073. border-radius:0px;
  9074. -moz-box-shadow:none;
  9075. -webkit-box-shadow:none;
  9076. box-shadow:none;
  9077. font-size:11px;
  9078. color:#AAAAAA;
  9079. }
  9080. #u25003.disabled {
  9081. }
  9082. .u25003_input_option {
  9083. font-size:11px;
  9084. }
  9085. #u25004 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:0px;
  9091. height:0px;
  9092. }
  9093. #u25005_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:140px;
  9099. height:30px;
  9100. background:inherit;
  9101. background-color:rgba(255, 255, 255, 1);
  9102. box-sizing:border-box;
  9103. border-width:1px;
  9104. border-style:solid;
  9105. border-color:rgba(215, 215, 215, 1);
  9106. border-radius:4px;
  9107. -moz-box-shadow:none;
  9108. -webkit-box-shadow:none;
  9109. box-shadow:none;
  9110. font-size:11px;
  9111. }
  9112. #u25005 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:350px;
  9116. top:240px;
  9117. width:140px;
  9118. height:30px;
  9119. display:flex;
  9120. font-size:11px;
  9121. }
  9122. #u25005 .text {
  9123. position:absolute;
  9124. align-self:center;
  9125. padding:2px 2px 2px 2px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u25005_text {
  9130. border-width:0px;
  9131. word-wrap:break-word;
  9132. text-transform:none;
  9133. visibility:hidden;
  9134. }
  9135. #u25006_input {
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:120px;
  9140. height:23px;
  9141. padding:2px 2px 2px 2px;
  9142. font-family:'ArialMT', 'Arial', sans-serif;
  9143. font-weight:400;
  9144. font-style:normal;
  9145. font-size:11px;
  9146. letter-spacing:normal;
  9147. color:#AAAAAA;
  9148. vertical-align:none;
  9149. text-align:left;
  9150. text-transform:none;
  9151. background-color:transparent;
  9152. border-color:transparent;
  9153. }
  9154. #u25006_input.disabled {
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:120px;
  9159. height:23px;
  9160. padding:2px 2px 2px 2px;
  9161. font-family:'ArialMT', 'Arial', sans-serif;
  9162. font-weight:400;
  9163. font-style:normal;
  9164. font-size:11px;
  9165. letter-spacing:normal;
  9166. color:#AAAAAA;
  9167. vertical-align:none;
  9168. text-align:left;
  9169. text-transform:none;
  9170. background-color:transparent;
  9171. border-color:transparent;
  9172. }
  9173. #u25006_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:120px;
  9179. height:23px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 1);
  9182. border:none;
  9183. border-radius:0px;
  9184. -moz-box-shadow:none;
  9185. -webkit-box-shadow:none;
  9186. box-shadow:none;
  9187. font-size:11px;
  9188. color:#AAAAAA;
  9189. }
  9190. #u25006 {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:357px;
  9194. top:242px;
  9195. width:120px;
  9196. height:23px;
  9197. display:flex;
  9198. font-size:11px;
  9199. color:#AAAAAA;
  9200. }
  9201. #u25006 .text {
  9202. position:absolute;
  9203. align-self:flex-start;
  9204. padding:2px 2px 2px 2px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u25006_div.disabled {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:120px;
  9214. height:23px;
  9215. background:inherit;
  9216. background-color:rgba(240, 240, 240, 1);
  9217. border:none;
  9218. border-radius:0px;
  9219. -moz-box-shadow:none;
  9220. -webkit-box-shadow:none;
  9221. box-shadow:none;
  9222. font-size:11px;
  9223. color:#AAAAAA;
  9224. }
  9225. #u25006.disabled {
  9226. }
  9227. .u25006_input_option {
  9228. font-size:11px;
  9229. }
  9230. #u25007 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:0px;
  9236. height:0px;
  9237. }
  9238. #u25008_div {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:0px;
  9242. top:0px;
  9243. width:140px;
  9244. height:30px;
  9245. background:inherit;
  9246. background-color:rgba(255, 255, 255, 1);
  9247. box-sizing:border-box;
  9248. border-width:1px;
  9249. border-style:solid;
  9250. border-color:rgba(201, 201, 201, 1);
  9251. border-radius:4px;
  9252. -moz-box-shadow:none;
  9253. -webkit-box-shadow:none;
  9254. box-shadow:none;
  9255. font-family:'Microsoft YaHei', sans-serif;
  9256. font-weight:400;
  9257. font-style:normal;
  9258. font-size:14px;
  9259. color:#CCCCCC;
  9260. text-align:left;
  9261. }
  9262. #u25008 {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:500px;
  9266. top:240px;
  9267. width:140px;
  9268. height:30px;
  9269. display:flex;
  9270. font-family:'Microsoft YaHei', sans-serif;
  9271. font-weight:400;
  9272. font-style:normal;
  9273. font-size:14px;
  9274. color:#CCCCCC;
  9275. text-align:left;
  9276. }
  9277. #u25008 .text {
  9278. position:absolute;
  9279. align-self:center;
  9280. padding:2px 8px 2px 8px;
  9281. box-sizing:border-box;
  9282. width:100%;
  9283. }
  9284. #u25008_text {
  9285. border-width:0px;
  9286. word-wrap:break-word;
  9287. text-transform:none;
  9288. visibility:hidden;
  9289. }
  9290. #u25009_input {
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:127px;
  9295. height:25px;
  9296. padding:2px 2px 2px 2px;
  9297. font-family:'Microsoft YaHei', sans-serif;
  9298. font-weight:400;
  9299. font-style:normal;
  9300. font-size:10px;
  9301. letter-spacing:normal;
  9302. color:#000000;
  9303. vertical-align:none;
  9304. text-align:left;
  9305. text-transform:none;
  9306. background-color:transparent;
  9307. border-color:transparent;
  9308. }
  9309. #u25009_input.disabled {
  9310. position:absolute;
  9311. left:0px;
  9312. top:0px;
  9313. width:127px;
  9314. height:25px;
  9315. padding:2px 2px 2px 2px;
  9316. font-family:'Microsoft YaHei', sans-serif;
  9317. font-weight:400;
  9318. font-style:normal;
  9319. font-size:10px;
  9320. letter-spacing:normal;
  9321. color:#000000;
  9322. vertical-align:none;
  9323. text-align:left;
  9324. text-transform:none;
  9325. background-color:transparent;
  9326. border-color:transparent;
  9327. }
  9328. #u25009_div {
  9329. border-width:0px;
  9330. position:absolute;
  9331. left:0px;
  9332. top:0px;
  9333. width:127px;
  9334. height:25px;
  9335. background:inherit;
  9336. background-color:rgba(255, 255, 255, 1);
  9337. border:none;
  9338. border-radius:0px;
  9339. -moz-box-shadow:none;
  9340. -webkit-box-shadow:none;
  9341. box-shadow:none;
  9342. font-family:'Microsoft YaHei', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:10px;
  9346. }
  9347. #u25009 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:508px;
  9351. top:241px;
  9352. width:127px;
  9353. height:25px;
  9354. display:flex;
  9355. font-family:'Microsoft YaHei', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:10px;
  9359. }
  9360. #u25009 .text {
  9361. position:absolute;
  9362. align-self:center;
  9363. padding:2px 2px 2px 2px;
  9364. box-sizing:border-box;
  9365. width:100%;
  9366. }
  9367. #u25009_div.disabled {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:0px;
  9372. width:127px;
  9373. height:25px;
  9374. background:inherit;
  9375. background-color:rgba(240, 240, 240, 1);
  9376. border:none;
  9377. border-radius:0px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-family:'Microsoft YaHei', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:10px;
  9385. }
  9386. #u25009.disabled {
  9387. }
  9388. #u25010 {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:0px;
  9392. top:0px;
  9393. width:0px;
  9394. height:0px;
  9395. }
  9396. #u25011_div {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:0px;
  9400. top:0px;
  9401. width:140px;
  9402. height:30px;
  9403. background:inherit;
  9404. background-color:rgba(255, 255, 255, 1);
  9405. box-sizing:border-box;
  9406. border-width:1px;
  9407. border-style:solid;
  9408. border-color:rgba(201, 201, 201, 1);
  9409. border-radius:4px;
  9410. -moz-box-shadow:none;
  9411. -webkit-box-shadow:none;
  9412. box-shadow:none;
  9413. font-family:'Microsoft YaHei', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. font-size:14px;
  9417. color:#CCCCCC;
  9418. text-align:left;
  9419. }
  9420. #u25011 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:649px;
  9424. top:240px;
  9425. width:140px;
  9426. height:30px;
  9427. display:flex;
  9428. font-family:'Microsoft YaHei', sans-serif;
  9429. font-weight:400;
  9430. font-style:normal;
  9431. font-size:14px;
  9432. color:#CCCCCC;
  9433. text-align:left;
  9434. }
  9435. #u25011 .text {
  9436. position:absolute;
  9437. align-self:center;
  9438. padding:2px 8px 2px 8px;
  9439. box-sizing:border-box;
  9440. width:100%;
  9441. }
  9442. #u25011_text {
  9443. border-width:0px;
  9444. word-wrap:break-word;
  9445. text-transform:none;
  9446. visibility:hidden;
  9447. }
  9448. #u25012_input {
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:127px;
  9453. height:25px;
  9454. padding:2px 2px 2px 2px;
  9455. font-family:'Microsoft YaHei', sans-serif;
  9456. font-weight:400;
  9457. font-style:normal;
  9458. font-size:10px;
  9459. letter-spacing:normal;
  9460. color:#000000;
  9461. vertical-align:none;
  9462. text-align:left;
  9463. text-transform:none;
  9464. background-color:transparent;
  9465. border-color:transparent;
  9466. }
  9467. #u25012_input.disabled {
  9468. position:absolute;
  9469. left:0px;
  9470. top:0px;
  9471. width:127px;
  9472. height:25px;
  9473. padding:2px 2px 2px 2px;
  9474. font-family:'Microsoft YaHei', sans-serif;
  9475. font-weight:400;
  9476. font-style:normal;
  9477. font-size:10px;
  9478. letter-spacing:normal;
  9479. color:#000000;
  9480. vertical-align:none;
  9481. text-align:left;
  9482. text-transform:none;
  9483. background-color:transparent;
  9484. border-color:transparent;
  9485. }
  9486. #u25012_div {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:0px;
  9490. top:0px;
  9491. width:127px;
  9492. height:25px;
  9493. background:inherit;
  9494. background-color:rgba(255, 255, 255, 1);
  9495. border:none;
  9496. border-radius:0px;
  9497. -moz-box-shadow:none;
  9498. -webkit-box-shadow:none;
  9499. box-shadow:none;
  9500. font-family:'Microsoft YaHei', sans-serif;
  9501. font-weight:400;
  9502. font-style:normal;
  9503. font-size:10px;
  9504. }
  9505. #u25012 {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:657px;
  9509. top:241px;
  9510. width:127px;
  9511. height:25px;
  9512. display:flex;
  9513. font-family:'Microsoft YaHei', sans-serif;
  9514. font-weight:400;
  9515. font-style:normal;
  9516. font-size:10px;
  9517. }
  9518. #u25012 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 2px 2px 2px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u25012_div.disabled {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:0px;
  9529. top:0px;
  9530. width:127px;
  9531. height:25px;
  9532. background:inherit;
  9533. background-color:rgba(240, 240, 240, 1);
  9534. border:none;
  9535. border-radius:0px;
  9536. -moz-box-shadow:none;
  9537. -webkit-box-shadow:none;
  9538. box-shadow:none;
  9539. font-family:'Microsoft YaHei', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:10px;
  9543. }
  9544. #u25012.disabled {
  9545. }
  9546. #u25013 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:0px;
  9550. top:0px;
  9551. width:0px;
  9552. height:0px;
  9553. }
  9554. #u25014_div {
  9555. border-width:0px;
  9556. position:absolute;
  9557. left:0px;
  9558. top:0px;
  9559. width:140px;
  9560. height:30px;
  9561. background:inherit;
  9562. background-color:rgba(255, 255, 255, 1);
  9563. box-sizing:border-box;
  9564. border-width:1px;
  9565. border-style:solid;
  9566. border-color:rgba(215, 215, 215, 1);
  9567. border-radius:4px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-size:11px;
  9572. }
  9573. #u25014 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:799px;
  9577. top:240px;
  9578. width:140px;
  9579. height:30px;
  9580. display:flex;
  9581. font-size:11px;
  9582. }
  9583. #u25014 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 2px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u25014_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u25015_input {
  9597. position:absolute;
  9598. left:0px;
  9599. top:0px;
  9600. width:120px;
  9601. height:23px;
  9602. padding:2px 2px 2px 2px;
  9603. font-family:'ArialMT', 'Arial', sans-serif;
  9604. font-weight:400;
  9605. font-style:normal;
  9606. font-size:11px;
  9607. letter-spacing:normal;
  9608. color:#AAAAAA;
  9609. vertical-align:none;
  9610. text-align:left;
  9611. text-transform:none;
  9612. background-color:transparent;
  9613. border-color:transparent;
  9614. }
  9615. #u25015_input.disabled {
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:120px;
  9620. height:23px;
  9621. padding:2px 2px 2px 2px;
  9622. font-family:'ArialMT', 'Arial', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:11px;
  9626. letter-spacing:normal;
  9627. color:#AAAAAA;
  9628. vertical-align:none;
  9629. text-align:left;
  9630. text-transform:none;
  9631. background-color:transparent;
  9632. border-color:transparent;
  9633. }
  9634. #u25015_div {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:120px;
  9640. height:23px;
  9641. background:inherit;
  9642. background-color:rgba(255, 255, 255, 1);
  9643. border:none;
  9644. border-radius:0px;
  9645. -moz-box-shadow:none;
  9646. -webkit-box-shadow:none;
  9647. box-shadow:none;
  9648. font-size:11px;
  9649. color:#AAAAAA;
  9650. }
  9651. #u25015 {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:806px;
  9655. top:242px;
  9656. width:120px;
  9657. height:23px;
  9658. display:flex;
  9659. font-size:11px;
  9660. color:#AAAAAA;
  9661. }
  9662. #u25015 .text {
  9663. position:absolute;
  9664. align-self:flex-start;
  9665. padding:2px 2px 2px 2px;
  9666. box-sizing:border-box;
  9667. width:100%;
  9668. }
  9669. #u25015_div.disabled {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:0px;
  9673. top:0px;
  9674. width:120px;
  9675. height:23px;
  9676. background:inherit;
  9677. background-color:rgba(240, 240, 240, 1);
  9678. border:none;
  9679. border-radius:0px;
  9680. -moz-box-shadow:none;
  9681. -webkit-box-shadow:none;
  9682. box-shadow:none;
  9683. font-size:11px;
  9684. color:#AAAAAA;
  9685. }
  9686. #u25015.disabled {
  9687. }
  9688. .u25015_input_option {
  9689. font-size:11px;
  9690. }
  9691. #u25016 {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:0px;
  9695. top:0px;
  9696. width:0px;
  9697. height:0px;
  9698. }
  9699. #u25017_div {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:0px;
  9703. top:0px;
  9704. width:140px;
  9705. height:30px;
  9706. background:inherit;
  9707. background-color:rgba(255, 255, 255, 1);
  9708. box-sizing:border-box;
  9709. border-width:1px;
  9710. border-style:solid;
  9711. border-color:rgba(215, 215, 215, 1);
  9712. border-radius:4px;
  9713. -moz-box-shadow:none;
  9714. -webkit-box-shadow:none;
  9715. box-shadow:none;
  9716. font-size:11px;
  9717. }
  9718. #u25017 {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:948px;
  9722. top:240px;
  9723. width:140px;
  9724. height:30px;
  9725. display:flex;
  9726. font-size:11px;
  9727. }
  9728. #u25017 .text {
  9729. position:absolute;
  9730. align-self:center;
  9731. padding:2px 2px 2px 2px;
  9732. box-sizing:border-box;
  9733. width:100%;
  9734. }
  9735. #u25017_text {
  9736. border-width:0px;
  9737. word-wrap:break-word;
  9738. text-transform:none;
  9739. visibility:hidden;
  9740. }
  9741. #u25018_input {
  9742. position:absolute;
  9743. left:0px;
  9744. top:0px;
  9745. width:120px;
  9746. height:23px;
  9747. padding:2px 2px 2px 2px;
  9748. font-family:'ArialMT', 'Arial', sans-serif;
  9749. font-weight:400;
  9750. font-style:normal;
  9751. font-size:11px;
  9752. letter-spacing:normal;
  9753. color:#AAAAAA;
  9754. vertical-align:none;
  9755. text-align:left;
  9756. text-transform:none;
  9757. background-color:transparent;
  9758. border-color:transparent;
  9759. }
  9760. #u25018_input.disabled {
  9761. position:absolute;
  9762. left:0px;
  9763. top:0px;
  9764. width:120px;
  9765. height:23px;
  9766. padding:2px 2px 2px 2px;
  9767. font-family:'ArialMT', 'Arial', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:11px;
  9771. letter-spacing:normal;
  9772. color:#AAAAAA;
  9773. vertical-align:none;
  9774. text-align:left;
  9775. text-transform:none;
  9776. background-color:transparent;
  9777. border-color:transparent;
  9778. }
  9779. #u25018_div {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:120px;
  9785. height:23px;
  9786. background:inherit;
  9787. background-color:rgba(255, 255, 255, 1);
  9788. border:none;
  9789. border-radius:0px;
  9790. -moz-box-shadow:none;
  9791. -webkit-box-shadow:none;
  9792. box-shadow:none;
  9793. font-size:11px;
  9794. color:#AAAAAA;
  9795. }
  9796. #u25018 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:955px;
  9800. top:242px;
  9801. width:120px;
  9802. height:23px;
  9803. display:flex;
  9804. font-size:11px;
  9805. color:#AAAAAA;
  9806. }
  9807. #u25018 .text {
  9808. position:absolute;
  9809. align-self:flex-start;
  9810. padding:2px 2px 2px 2px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u25018_div.disabled {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:0px;
  9819. width:120px;
  9820. height:23px;
  9821. background:inherit;
  9822. background-color:rgba(240, 240, 240, 1);
  9823. border:none;
  9824. border-radius:0px;
  9825. -moz-box-shadow:none;
  9826. -webkit-box-shadow:none;
  9827. box-shadow:none;
  9828. font-size:11px;
  9829. color:#AAAAAA;
  9830. }
  9831. #u25018.disabled {
  9832. }
  9833. .u25018_input_option {
  9834. font-size:11px;
  9835. }
  9836. #u25019 {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:0px;
  9842. height:0px;
  9843. }
  9844. #u25020_div {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:0px;
  9848. top:0px;
  9849. width:140px;
  9850. height:30px;
  9851. background:inherit;
  9852. background-color:rgba(255, 255, 255, 1);
  9853. box-sizing:border-box;
  9854. border-width:1px;
  9855. border-style:solid;
  9856. border-color:rgba(215, 215, 215, 1);
  9857. border-radius:4px;
  9858. -moz-box-shadow:none;
  9859. -webkit-box-shadow:none;
  9860. box-shadow:none;
  9861. font-size:11px;
  9862. }
  9863. #u25020 {
  9864. border-width:0px;
  9865. position:absolute;
  9866. left:1098px;
  9867. top:240px;
  9868. width:140px;
  9869. height:30px;
  9870. display:flex;
  9871. font-size:11px;
  9872. }
  9873. #u25020 .text {
  9874. position:absolute;
  9875. align-self:center;
  9876. padding:2px 2px 2px 2px;
  9877. box-sizing:border-box;
  9878. width:100%;
  9879. }
  9880. #u25020_text {
  9881. border-width:0px;
  9882. word-wrap:break-word;
  9883. text-transform:none;
  9884. visibility:hidden;
  9885. }
  9886. #u25021_input {
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:120px;
  9891. height:23px;
  9892. padding:2px 2px 2px 2px;
  9893. font-family:'ArialMT', 'Arial', sans-serif;
  9894. font-weight:400;
  9895. font-style:normal;
  9896. font-size:11px;
  9897. letter-spacing:normal;
  9898. color:#AAAAAA;
  9899. vertical-align:none;
  9900. text-align:left;
  9901. text-transform:none;
  9902. background-color:transparent;
  9903. border-color:transparent;
  9904. }
  9905. #u25021_input.disabled {
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:120px;
  9910. height:23px;
  9911. padding:2px 2px 2px 2px;
  9912. font-family:'ArialMT', 'Arial', sans-serif;
  9913. font-weight:400;
  9914. font-style:normal;
  9915. font-size:11px;
  9916. letter-spacing:normal;
  9917. color:#AAAAAA;
  9918. vertical-align:none;
  9919. text-align:left;
  9920. text-transform:none;
  9921. background-color:transparent;
  9922. border-color:transparent;
  9923. }
  9924. #u25021_div {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:0px;
  9928. top:0px;
  9929. width:120px;
  9930. height:23px;
  9931. background:inherit;
  9932. background-color:rgba(255, 255, 255, 1);
  9933. border:none;
  9934. border-radius:0px;
  9935. -moz-box-shadow:none;
  9936. -webkit-box-shadow:none;
  9937. box-shadow:none;
  9938. font-size:11px;
  9939. color:#AAAAAA;
  9940. }
  9941. #u25021 {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:1105px;
  9945. top:242px;
  9946. width:120px;
  9947. height:23px;
  9948. display:flex;
  9949. font-size:11px;
  9950. color:#AAAAAA;
  9951. }
  9952. #u25021 .text {
  9953. position:absolute;
  9954. align-self:flex-start;
  9955. padding:2px 2px 2px 2px;
  9956. box-sizing:border-box;
  9957. width:100%;
  9958. }
  9959. #u25021_div.disabled {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:120px;
  9965. height:23px;
  9966. background:inherit;
  9967. background-color:rgba(240, 240, 240, 1);
  9968. border:none;
  9969. border-radius:0px;
  9970. -moz-box-shadow:none;
  9971. -webkit-box-shadow:none;
  9972. box-shadow:none;
  9973. font-size:11px;
  9974. color:#AAAAAA;
  9975. }
  9976. #u25021.disabled {
  9977. }
  9978. .u25021_input_option {
  9979. font-size:11px;
  9980. }
  9981. #u25022_div {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:0px;
  9985. top:0px;
  9986. width:55px;
  9987. height:30px;
  9988. background:inherit;
  9989. background-color:rgba(255, 255, 255, 1);
  9990. box-sizing:border-box;
  9991. border-width:1px;
  9992. border-style:solid;
  9993. border-color:rgba(170, 170, 170, 1);
  9994. border-radius:4px;
  9995. -moz-box-shadow:none;
  9996. -webkit-box-shadow:none;
  9997. box-shadow:none;
  9998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9999. font-weight:400;
  10000. font-style:normal;
  10001. font-size:12px;
  10002. color:#555555;
  10003. }
  10004. #u25022 {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:350px;
  10008. top:330px;
  10009. width:55px;
  10010. height:30px;
  10011. display:flex;
  10012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10013. font-weight:400;
  10014. font-style:normal;
  10015. font-size:12px;
  10016. color:#555555;
  10017. }
  10018. #u25022 .text {
  10019. position:absolute;
  10020. align-self:center;
  10021. padding:5px 15px 5px 15px;
  10022. box-sizing:border-box;
  10023. width:100%;
  10024. }
  10025. #u25022_text {
  10026. border-width:0px;
  10027. white-space:nowrap;
  10028. text-transform:none;
  10029. }
  10030. #u25023_div {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:0px;
  10034. top:0px;
  10035. width:80px;
  10036. height:30px;
  10037. background:inherit;
  10038. background-color:rgba(255, 255, 255, 0);
  10039. box-sizing:border-box;
  10040. border-width:1px;
  10041. border-style:solid;
  10042. border-color:rgba(0, 153, 255, 1);
  10043. border-radius:4px;
  10044. -moz-box-shadow:none;
  10045. -webkit-box-shadow:none;
  10046. box-shadow:none;
  10047. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10048. font-weight:500;
  10049. font-style:normal;
  10050. font-size:14px;
  10051. color:#0099FF;
  10052. text-align:center;
  10053. }
  10054. #u25023 {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:1494px;
  10058. top:330px;
  10059. width:80px;
  10060. height:30px;
  10061. display:flex;
  10062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10063. font-weight:500;
  10064. font-style:normal;
  10065. font-size:14px;
  10066. color:#0099FF;
  10067. text-align:center;
  10068. }
  10069. #u25023 .text {
  10070. position:absolute;
  10071. align-self:center;
  10072. padding:0px 0px 0px 0px;
  10073. box-sizing:border-box;
  10074. width:100%;
  10075. }
  10076. #u25023_text {
  10077. border-width:0px;
  10078. word-wrap:break-word;
  10079. text-transform:none;
  10080. }
  10081. #u25024 {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:0px;
  10085. top:0px;
  10086. width:0px;
  10087. height:0px;
  10088. }
  10089. #u25025_div {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:0px;
  10093. top:0px;
  10094. width:200px;
  10095. height:1180px;
  10096. background:inherit;
  10097. background-color:rgba(255, 255, 255, 1);
  10098. border:none;
  10099. border-radius:0px;
  10100. -moz-box-shadow:none;
  10101. -webkit-box-shadow:none;
  10102. box-shadow:none;
  10103. }
  10104. #u25025 {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:120px;
  10108. top:50px;
  10109. width:200px;
  10110. height:1180px;
  10111. display:flex;
  10112. }
  10113. #u25025 .text {
  10114. position:absolute;
  10115. align-self:center;
  10116. padding:2px 2px 2px 2px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u25025_text {
  10121. border-width:0px;
  10122. word-wrap:break-word;
  10123. text-transform:none;
  10124. visibility:hidden;
  10125. }
  10126. #u25026_div {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:0px;
  10130. top:0px;
  10131. width:200px;
  10132. height:60px;
  10133. background:inherit;
  10134. background-color:rgba(224, 231, 247, 1);
  10135. border:none;
  10136. border-radius:0px;
  10137. -moz-box-shadow:none;
  10138. -webkit-box-shadow:none;
  10139. box-shadow:none;
  10140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10141. font-weight:500;
  10142. font-style:normal;
  10143. font-size:18px;
  10144. }
  10145. #u25026 {
  10146. border-width:0px;
  10147. position:absolute;
  10148. left:120px;
  10149. top:50px;
  10150. width:200px;
  10151. height:60px;
  10152. display:flex;
  10153. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10154. font-weight:500;
  10155. font-style:normal;
  10156. font-size:18px;
  10157. }
  10158. #u25026 .text {
  10159. position:absolute;
  10160. align-self:center;
  10161. padding:0px 0px 0px 20px;
  10162. box-sizing:border-box;
  10163. width:100%;
  10164. }
  10165. #u25026_text {
  10166. border-width:0px;
  10167. word-wrap:break-word;
  10168. text-transform:none;
  10169. }
  10170. #u25027_div {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:65px;
  10176. height:22px;
  10177. background:inherit;
  10178. background-color:rgba(255, 255, 255, 0);
  10179. border:none;
  10180. border-radius:0px;
  10181. -moz-box-shadow:none;
  10182. -webkit-box-shadow:none;
  10183. box-shadow:none;
  10184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. font-size:16px;
  10188. }
  10189. #u25027 {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:147px;
  10193. top:130px;
  10194. width:65px;
  10195. height:22px;
  10196. display:flex;
  10197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10198. font-weight:400;
  10199. font-style:normal;
  10200. font-size:16px;
  10201. }
  10202. #u25027 .text {
  10203. position:absolute;
  10204. align-self:flex-start;
  10205. padding:0px 0px 0px 0px;
  10206. box-sizing:border-box;
  10207. width:100%;
  10208. }
  10209. #u25027_text {
  10210. border-width:0px;
  10211. white-space:nowrap;
  10212. text-transform:none;
  10213. }
  10214. #u25028_div {
  10215. border-width:0px;
  10216. position:absolute;
  10217. left:0px;
  10218. top:0px;
  10219. width:65px;
  10220. height:22px;
  10221. background:inherit;
  10222. background-color:rgba(255, 255, 255, 0);
  10223. border:none;
  10224. border-radius:0px;
  10225. -moz-box-shadow:none;
  10226. -webkit-box-shadow:none;
  10227. box-shadow:none;
  10228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10229. font-weight:400;
  10230. font-style:normal;
  10231. font-size:16px;
  10232. }
  10233. #u25028 {
  10234. border-width:0px;
  10235. position:absolute;
  10236. left:147px;
  10237. top:229px;
  10238. width:65px;
  10239. height:22px;
  10240. display:flex;
  10241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10242. font-weight:400;
  10243. font-style:normal;
  10244. font-size:16px;
  10245. }
  10246. #u25028 .text {
  10247. position:absolute;
  10248. align-self:flex-start;
  10249. padding:0px 0px 0px 0px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u25028_text {
  10254. border-width:0px;
  10255. white-space:nowrap;
  10256. text-transform:none;
  10257. }
  10258. #u25029_div {
  10259. border-width:0px;
  10260. position:absolute;
  10261. left:0px;
  10262. top:0px;
  10263. width:65px;
  10264. height:22px;
  10265. background:inherit;
  10266. background-color:rgba(255, 255, 255, 0);
  10267. border:none;
  10268. border-radius:0px;
  10269. -moz-box-shadow:none;
  10270. -webkit-box-shadow:none;
  10271. box-shadow:none;
  10272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10273. font-weight:400;
  10274. font-style:normal;
  10275. font-size:16px;
  10276. }
  10277. #u25029 {
  10278. border-width:0px;
  10279. position:absolute;
  10280. left:147px;
  10281. top:271px;
  10282. width:65px;
  10283. height:22px;
  10284. display:flex;
  10285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10286. font-weight:400;
  10287. font-style:normal;
  10288. font-size:16px;
  10289. }
  10290. #u25029 .text {
  10291. position:absolute;
  10292. align-self:flex-start;
  10293. padding:0px 0px 0px 0px;
  10294. box-sizing:border-box;
  10295. width:100%;
  10296. }
  10297. #u25029_text {
  10298. border-width:0px;
  10299. white-space:nowrap;
  10300. text-transform:none;
  10301. }
  10302. #u25030_div {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:65px;
  10308. height:22px;
  10309. background:inherit;
  10310. background-color:rgba(255, 255, 255, 0);
  10311. border:none;
  10312. border-radius:0px;
  10313. -moz-box-shadow:none;
  10314. -webkit-box-shadow:none;
  10315. box-shadow:none;
  10316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10317. font-weight:400;
  10318. font-style:normal;
  10319. font-size:16px;
  10320. }
  10321. #u25030 {
  10322. border-width:0px;
  10323. position:absolute;
  10324. left:147px;
  10325. top:313px;
  10326. width:65px;
  10327. height:22px;
  10328. display:flex;
  10329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10330. font-weight:400;
  10331. font-style:normal;
  10332. font-size:16px;
  10333. }
  10334. #u25030 .text {
  10335. position:absolute;
  10336. align-self:flex-start;
  10337. padding:0px 0px 0px 0px;
  10338. box-sizing:border-box;
  10339. width:100%;
  10340. }
  10341. #u25030_text {
  10342. border-width:0px;
  10343. white-space:nowrap;
  10344. text-transform:none;
  10345. }
  10346. #u25031_div {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:0px;
  10350. top:0px;
  10351. width:65px;
  10352. height:22px;
  10353. background:inherit;
  10354. background-color:rgba(255, 255, 255, 0);
  10355. border:none;
  10356. border-radius:0px;
  10357. -moz-box-shadow:none;
  10358. -webkit-box-shadow:none;
  10359. box-shadow:none;
  10360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10361. font-weight:400;
  10362. font-style:normal;
  10363. font-size:16px;
  10364. }
  10365. #u25031 {
  10366. border-width:0px;
  10367. position:absolute;
  10368. left:147px;
  10369. top:949px;
  10370. width:65px;
  10371. height:22px;
  10372. display:flex;
  10373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10374. font-weight:400;
  10375. font-style:normal;
  10376. font-size:16px;
  10377. }
  10378. #u25031 .text {
  10379. position:absolute;
  10380. align-self:flex-start;
  10381. padding:0px 0px 0px 0px;
  10382. box-sizing:border-box;
  10383. width:100%;
  10384. }
  10385. #u25031_text {
  10386. border-width:0px;
  10387. white-space:nowrap;
  10388. text-transform:none;
  10389. }
  10390. #u25032_div {
  10391. border-width:0px;
  10392. position:absolute;
  10393. left:0px;
  10394. top:0px;
  10395. width:65px;
  10396. height:22px;
  10397. background:inherit;
  10398. background-color:rgba(255, 255, 255, 0);
  10399. border:none;
  10400. border-radius:0px;
  10401. -moz-box-shadow:none;
  10402. -webkit-box-shadow:none;
  10403. box-shadow:none;
  10404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10405. font-weight:400;
  10406. font-style:normal;
  10407. font-size:16px;
  10408. }
  10409. #u25032 {
  10410. border-width:0px;
  10411. position:absolute;
  10412. left:147px;
  10413. top:991px;
  10414. width:65px;
  10415. height:22px;
  10416. display:flex;
  10417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10418. font-weight:400;
  10419. font-style:normal;
  10420. font-size:16px;
  10421. }
  10422. #u25032 .text {
  10423. position:absolute;
  10424. align-self:flex-start;
  10425. padding:0px 0px 0px 0px;
  10426. box-sizing:border-box;
  10427. width:100%;
  10428. }
  10429. #u25032_text {
  10430. border-width:0px;
  10431. white-space:nowrap;
  10432. text-transform:none;
  10433. }
  10434. #u25033_div {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:49px;
  10440. height:17px;
  10441. background:inherit;
  10442. background-color:rgba(255, 255, 255, 0);
  10443. border:none;
  10444. border-radius:0px;
  10445. -moz-box-shadow:none;
  10446. -webkit-box-shadow:none;
  10447. box-shadow:none;
  10448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10449. font-weight:400;
  10450. font-style:normal;
  10451. font-size:12px;
  10452. color:#AAAAAA;
  10453. }
  10454. #u25033 {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:147px;
  10458. top:192px;
  10459. width:49px;
  10460. height:17px;
  10461. display:flex;
  10462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10463. font-weight:400;
  10464. font-style:normal;
  10465. font-size:12px;
  10466. color:#AAAAAA;
  10467. }
  10468. #u25033 .text {
  10469. position:absolute;
  10470. align-self:flex-start;
  10471. padding:0px 0px 0px 0px;
  10472. box-sizing:border-box;
  10473. width:100%;
  10474. }
  10475. #u25033_text {
  10476. border-width:0px;
  10477. white-space:nowrap;
  10478. text-transform:none;
  10479. }
  10480. #u25034_img {
  10481. border-width:0px;
  10482. position:absolute;
  10483. left:0px;
  10484. top:0px;
  10485. width:201px;
  10486. height:2px;
  10487. }
  10488. #u25034 {
  10489. border-width:0px;
  10490. position:absolute;
  10491. left:121px;
  10492. top:891px;
  10493. width:200px;
  10494. height:1px;
  10495. display:flex;
  10496. }
  10497. #u25034 .text {
  10498. position:absolute;
  10499. align-self:center;
  10500. padding:2px 2px 2px 2px;
  10501. box-sizing:border-box;
  10502. width:100%;
  10503. }
  10504. #u25034_text {
  10505. border-width:0px;
  10506. word-wrap:break-word;
  10507. text-transform:none;
  10508. visibility:hidden;
  10509. }
  10510. #u25035_div {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:0px;
  10514. top:0px;
  10515. width:49px;
  10516. height:17px;
  10517. background:inherit;
  10518. background-color:rgba(255, 255, 255, 0);
  10519. border:none;
  10520. border-radius:0px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10525. font-weight:400;
  10526. font-style:normal;
  10527. font-size:12px;
  10528. color:#AAAAAA;
  10529. }
  10530. #u25035 {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:147px;
  10534. top:912px;
  10535. width:49px;
  10536. height:17px;
  10537. display:flex;
  10538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10539. font-weight:400;
  10540. font-style:normal;
  10541. font-size:12px;
  10542. color:#AAAAAA;
  10543. }
  10544. #u25035 .text {
  10545. position:absolute;
  10546. align-self:flex-start;
  10547. padding:0px 0px 0px 0px;
  10548. box-sizing:border-box;
  10549. width:100%;
  10550. }
  10551. #u25035_text {
  10552. border-width:0px;
  10553. white-space:nowrap;
  10554. text-transform:none;
  10555. }
  10556. #u25036_img {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:0px;
  10560. top:0px;
  10561. width:201px;
  10562. height:2px;
  10563. }
  10564. #u25036 {
  10565. border-width:0px;
  10566. position:absolute;
  10567. left:121px;
  10568. top:171px;
  10569. width:200px;
  10570. height:1px;
  10571. display:flex;
  10572. }
  10573. #u25036 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 2px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u25036_text {
  10581. border-width:0px;
  10582. word-wrap:break-word;
  10583. text-transform:none;
  10584. visibility:hidden;
  10585. }
  10586. #u25037_div {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:0px;
  10590. top:0px;
  10591. width:81px;
  10592. height:22px;
  10593. background:inherit;
  10594. background-color:rgba(255, 255, 255, 0);
  10595. border:none;
  10596. border-radius:0px;
  10597. -moz-box-shadow:none;
  10598. -webkit-box-shadow:none;
  10599. box-shadow:none;
  10600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10601. font-weight:400;
  10602. font-style:normal;
  10603. font-size:16px;
  10604. }
  10605. #u25037 {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:147px;
  10609. top:355px;
  10610. width:81px;
  10611. height:22px;
  10612. display:flex;
  10613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10614. font-weight:400;
  10615. font-style:normal;
  10616. font-size:16px;
  10617. }
  10618. #u25037 .text {
  10619. position:absolute;
  10620. align-self:flex-start;
  10621. padding:0px 0px 0px 0px;
  10622. box-sizing:border-box;
  10623. width:100%;
  10624. }
  10625. #u25037_text {
  10626. border-width:0px;
  10627. white-space:nowrap;
  10628. text-transform:none;
  10629. }
  10630. #u25038_div {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:81px;
  10636. height:22px;
  10637. background:inherit;
  10638. background-color:rgba(255, 255, 255, 0);
  10639. border:none;
  10640. border-radius:0px;
  10641. -moz-box-shadow:none;
  10642. -webkit-box-shadow:none;
  10643. box-shadow:none;
  10644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10645. font-weight:400;
  10646. font-style:normal;
  10647. font-size:16px;
  10648. }
  10649. #u25038 {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:147px;
  10653. top:397px;
  10654. width:81px;
  10655. height:22px;
  10656. display:flex;
  10657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10658. font-weight:400;
  10659. font-style:normal;
  10660. font-size:16px;
  10661. }
  10662. #u25038 .text {
  10663. position:absolute;
  10664. align-self:flex-start;
  10665. padding:0px 0px 0px 0px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u25038_text {
  10670. border-width:0px;
  10671. white-space:nowrap;
  10672. text-transform:none;
  10673. }
  10674. #u25039_div {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:0px;
  10679. width:81px;
  10680. height:22px;
  10681. background:inherit;
  10682. background-color:rgba(255, 255, 255, 0);
  10683. border:none;
  10684. border-radius:0px;
  10685. -moz-box-shadow:none;
  10686. -webkit-box-shadow:none;
  10687. box-shadow:none;
  10688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10689. font-weight:400;
  10690. font-style:normal;
  10691. font-size:16px;
  10692. }
  10693. #u25039 {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:147px;
  10697. top:439px;
  10698. width:81px;
  10699. height:22px;
  10700. display:flex;
  10701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10702. font-weight:400;
  10703. font-style:normal;
  10704. font-size:16px;
  10705. }
  10706. #u25039 .text {
  10707. position:absolute;
  10708. align-self:flex-start;
  10709. padding:0px 0px 0px 0px;
  10710. box-sizing:border-box;
  10711. width:100%;
  10712. }
  10713. #u25039_text {
  10714. border-width:0px;
  10715. white-space:nowrap;
  10716. text-transform:none;
  10717. }
  10718. #u25040_div {
  10719. border-width:0px;
  10720. position:absolute;
  10721. left:0px;
  10722. top:0px;
  10723. width:65px;
  10724. height:22px;
  10725. background:inherit;
  10726. background-color:rgba(255, 255, 255, 0);
  10727. border:none;
  10728. border-radius:0px;
  10729. -moz-box-shadow:none;
  10730. -webkit-box-shadow:none;
  10731. box-shadow:none;
  10732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10733. font-weight:400;
  10734. font-style:normal;
  10735. font-size:16px;
  10736. }
  10737. #u25040 {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:146px;
  10741. top:539px;
  10742. width:65px;
  10743. height:22px;
  10744. display:flex;
  10745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10746. font-weight:400;
  10747. font-style:normal;
  10748. font-size:16px;
  10749. }
  10750. #u25040 .text {
  10751. position:absolute;
  10752. align-self:flex-start;
  10753. padding:0px 0px 0px 0px;
  10754. box-sizing:border-box;
  10755. width:100%;
  10756. }
  10757. #u25040_text {
  10758. border-width:0px;
  10759. white-space:nowrap;
  10760. text-transform:none;
  10761. }
  10762. #u25041_div {
  10763. border-width:0px;
  10764. position:absolute;
  10765. left:0px;
  10766. top:0px;
  10767. width:65px;
  10768. height:22px;
  10769. background:inherit;
  10770. background-color:rgba(255, 255, 255, 0);
  10771. border:none;
  10772. border-radius:0px;
  10773. -moz-box-shadow:none;
  10774. -webkit-box-shadow:none;
  10775. box-shadow:none;
  10776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10777. font-weight:400;
  10778. font-style:normal;
  10779. font-size:16px;
  10780. }
  10781. #u25041 {
  10782. border-width:0px;
  10783. position:absolute;
  10784. left:146px;
  10785. top:581px;
  10786. width:65px;
  10787. height:22px;
  10788. display:flex;
  10789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10790. font-weight:400;
  10791. font-style:normal;
  10792. font-size:16px;
  10793. }
  10794. #u25041 .text {
  10795. position:absolute;
  10796. align-self:flex-start;
  10797. padding:0px 0px 0px 0px;
  10798. box-sizing:border-box;
  10799. width:100%;
  10800. }
  10801. #u25041_text {
  10802. border-width:0px;
  10803. white-space:nowrap;
  10804. text-transform:none;
  10805. }
  10806. #u25042_div {
  10807. border-width:0px;
  10808. position:absolute;
  10809. left:0px;
  10810. top:0px;
  10811. width:65px;
  10812. height:22px;
  10813. background:inherit;
  10814. background-color:rgba(255, 255, 255, 0);
  10815. border:none;
  10816. border-radius:0px;
  10817. -moz-box-shadow:none;
  10818. -webkit-box-shadow:none;
  10819. box-shadow:none;
  10820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10821. font-weight:400;
  10822. font-style:normal;
  10823. font-size:16px;
  10824. }
  10825. #u25042 {
  10826. border-width:0px;
  10827. position:absolute;
  10828. left:146px;
  10829. top:623px;
  10830. width:65px;
  10831. height:22px;
  10832. display:flex;
  10833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10834. font-weight:400;
  10835. font-style:normal;
  10836. font-size:16px;
  10837. }
  10838. #u25042 .text {
  10839. position:absolute;
  10840. align-self:flex-start;
  10841. padding:0px 0px 0px 0px;
  10842. box-sizing:border-box;
  10843. width:100%;
  10844. }
  10845. #u25042_text {
  10846. border-width:0px;
  10847. white-space:nowrap;
  10848. text-transform:none;
  10849. }
  10850. #u25043_div {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:0px;
  10854. top:0px;
  10855. width:49px;
  10856. height:17px;
  10857. background:inherit;
  10858. background-color:rgba(255, 255, 255, 0);
  10859. border:none;
  10860. border-radius:0px;
  10861. -moz-box-shadow:none;
  10862. -webkit-box-shadow:none;
  10863. box-shadow:none;
  10864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10865. font-weight:400;
  10866. font-style:normal;
  10867. font-size:12px;
  10868. color:#AAAAAA;
  10869. }
  10870. #u25043 {
  10871. border-width:0px;
  10872. position:absolute;
  10873. left:146px;
  10874. top:502px;
  10875. width:49px;
  10876. height:17px;
  10877. display:flex;
  10878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10879. font-weight:400;
  10880. font-style:normal;
  10881. font-size:12px;
  10882. color:#AAAAAA;
  10883. }
  10884. #u25043 .text {
  10885. position:absolute;
  10886. align-self:flex-start;
  10887. padding:0px 0px 0px 0px;
  10888. box-sizing:border-box;
  10889. width:100%;
  10890. }
  10891. #u25043_text {
  10892. border-width:0px;
  10893. white-space:nowrap;
  10894. text-transform:none;
  10895. }
  10896. #u25044_img {
  10897. border-width:0px;
  10898. position:absolute;
  10899. left:0px;
  10900. top:0px;
  10901. width:201px;
  10902. height:2px;
  10903. }
  10904. #u25044 {
  10905. border-width:0px;
  10906. position:absolute;
  10907. left:120px;
  10908. top:481px;
  10909. width:200px;
  10910. height:1px;
  10911. display:flex;
  10912. }
  10913. #u25044 .text {
  10914. position:absolute;
  10915. align-self:center;
  10916. padding:2px 2px 2px 2px;
  10917. box-sizing:border-box;
  10918. width:100%;
  10919. }
  10920. #u25044_text {
  10921. border-width:0px;
  10922. word-wrap:break-word;
  10923. text-transform:none;
  10924. visibility:hidden;
  10925. }
  10926. #u25045_div {
  10927. border-width:0px;
  10928. position:absolute;
  10929. left:0px;
  10930. top:0px;
  10931. width:65px;
  10932. height:22px;
  10933. background:inherit;
  10934. background-color:rgba(255, 255, 255, 0);
  10935. border:none;
  10936. border-radius:0px;
  10937. -moz-box-shadow:none;
  10938. -webkit-box-shadow:none;
  10939. box-shadow:none;
  10940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:16px;
  10944. }
  10945. #u25045 {
  10946. border-width:0px;
  10947. position:absolute;
  10948. left:146px;
  10949. top:763px;
  10950. width:65px;
  10951. height:22px;
  10952. display:flex;
  10953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10954. font-weight:400;
  10955. font-style:normal;
  10956. font-size:16px;
  10957. }
  10958. #u25045 .text {
  10959. position:absolute;
  10960. align-self:flex-start;
  10961. padding:0px 0px 0px 0px;
  10962. box-sizing:border-box;
  10963. width:100%;
  10964. }
  10965. #u25045_text {
  10966. border-width:0px;
  10967. white-space:nowrap;
  10968. text-transform:none;
  10969. }
  10970. #u25046_div {
  10971. border-width:0px;
  10972. position:absolute;
  10973. left:0px;
  10974. top:0px;
  10975. width:65px;
  10976. height:22px;
  10977. background:inherit;
  10978. background-color:rgba(255, 255, 255, 0);
  10979. border:none;
  10980. border-radius:0px;
  10981. -moz-box-shadow:none;
  10982. -webkit-box-shadow:none;
  10983. box-shadow:none;
  10984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10985. font-weight:400;
  10986. font-style:normal;
  10987. font-size:16px;
  10988. }
  10989. #u25046 {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:146px;
  10993. top:805px;
  10994. width:65px;
  10995. height:22px;
  10996. display:flex;
  10997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10998. font-weight:400;
  10999. font-style:normal;
  11000. font-size:16px;
  11001. }
  11002. #u25046 .text {
  11003. position:absolute;
  11004. align-self:flex-start;
  11005. padding:0px 0px 0px 0px;
  11006. box-sizing:border-box;
  11007. width:100%;
  11008. }
  11009. #u25046_text {
  11010. border-width:0px;
  11011. white-space:nowrap;
  11012. text-transform:none;
  11013. }
  11014. #u25047_div {
  11015. border-width:0px;
  11016. position:absolute;
  11017. left:0px;
  11018. top:0px;
  11019. width:65px;
  11020. height:22px;
  11021. background:inherit;
  11022. background-color:rgba(255, 255, 255, 0);
  11023. border:none;
  11024. border-radius:0px;
  11025. -moz-box-shadow:none;
  11026. -webkit-box-shadow:none;
  11027. box-shadow:none;
  11028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11029. font-weight:400;
  11030. font-style:normal;
  11031. font-size:16px;
  11032. }
  11033. #u25047 {
  11034. border-width:0px;
  11035. position:absolute;
  11036. left:146px;
  11037. top:847px;
  11038. width:65px;
  11039. height:22px;
  11040. display:flex;
  11041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11042. font-weight:400;
  11043. font-style:normal;
  11044. font-size:16px;
  11045. }
  11046. #u25047 .text {
  11047. position:absolute;
  11048. align-self:flex-start;
  11049. padding:0px 0px 0px 0px;
  11050. box-sizing:border-box;
  11051. width:100%;
  11052. }
  11053. #u25047_text {
  11054. border-width:0px;
  11055. white-space:nowrap;
  11056. text-transform:none;
  11057. }
  11058. #u25048_div {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:49px;
  11064. height:17px;
  11065. background:inherit;
  11066. background-color:rgba(255, 255, 255, 0);
  11067. border:none;
  11068. border-radius:0px;
  11069. -moz-box-shadow:none;
  11070. -webkit-box-shadow:none;
  11071. box-shadow:none;
  11072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11073. font-weight:400;
  11074. font-style:normal;
  11075. font-size:12px;
  11076. color:#AAAAAA;
  11077. }
  11078. #u25048 {
  11079. border-width:0px;
  11080. position:absolute;
  11081. left:146px;
  11082. top:726px;
  11083. width:49px;
  11084. height:17px;
  11085. display:flex;
  11086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11087. font-weight:400;
  11088. font-style:normal;
  11089. font-size:12px;
  11090. color:#AAAAAA;
  11091. }
  11092. #u25048 .text {
  11093. position:absolute;
  11094. align-self:flex-start;
  11095. padding:0px 0px 0px 0px;
  11096. box-sizing:border-box;
  11097. width:100%;
  11098. }
  11099. #u25048_text {
  11100. border-width:0px;
  11101. white-space:nowrap;
  11102. text-transform:none;
  11103. }
  11104. #u25049_img {
  11105. border-width:0px;
  11106. position:absolute;
  11107. left:0px;
  11108. top:0px;
  11109. width:201px;
  11110. height:2px;
  11111. }
  11112. #u25049 {
  11113. border-width:0px;
  11114. position:absolute;
  11115. left:120px;
  11116. top:705px;
  11117. width:200px;
  11118. height:1px;
  11119. display:flex;
  11120. }
  11121. #u25049 .text {
  11122. position:absolute;
  11123. align-self:center;
  11124. padding:2px 2px 2px 2px;
  11125. box-sizing:border-box;
  11126. width:100%;
  11127. }
  11128. #u25049_text {
  11129. border-width:0px;
  11130. word-wrap:break-word;
  11131. text-transform:none;
  11132. visibility:hidden;
  11133. }
  11134. #u25050_div {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:0px;
  11138. top:0px;
  11139. width:65px;
  11140. height:22px;
  11141. background:inherit;
  11142. background-color:rgba(255, 255, 255, 0);
  11143. border:none;
  11144. border-radius:0px;
  11145. -moz-box-shadow:none;
  11146. -webkit-box-shadow:none;
  11147. box-shadow:none;
  11148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11149. font-weight:400;
  11150. font-style:normal;
  11151. font-size:16px;
  11152. }
  11153. #u25050 {
  11154. border-width:0px;
  11155. position:absolute;
  11156. left:146px;
  11157. top:665px;
  11158. width:65px;
  11159. height:22px;
  11160. display:flex;
  11161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11162. font-weight:400;
  11163. font-style:normal;
  11164. font-size:16px;
  11165. }
  11166. #u25050 .text {
  11167. position:absolute;
  11168. align-self:flex-start;
  11169. padding:0px 0px 0px 0px;
  11170. box-sizing:border-box;
  11171. width:100%;
  11172. }
  11173. #u25050_text {
  11174. border-width:0px;
  11175. white-space:nowrap;
  11176. text-transform:none;
  11177. }
  11178. #u25051_div {
  11179. border-width:0px;
  11180. position:absolute;
  11181. left:0px;
  11182. top:0px;
  11183. width:65px;
  11184. height:22px;
  11185. background:inherit;
  11186. background-color:rgba(255, 255, 255, 0);
  11187. border:none;
  11188. border-radius:0px;
  11189. -moz-box-shadow:none;
  11190. -webkit-box-shadow:none;
  11191. box-shadow:none;
  11192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11193. font-weight:400;
  11194. font-style:normal;
  11195. font-size:16px;
  11196. }
  11197. #u25051 {
  11198. border-width:0px;
  11199. position:absolute;
  11200. left:147px;
  11201. top:1091px;
  11202. width:65px;
  11203. height:22px;
  11204. display:flex;
  11205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11206. font-weight:400;
  11207. font-style:normal;
  11208. font-size:16px;
  11209. }
  11210. #u25051 .text {
  11211. position:absolute;
  11212. align-self:flex-start;
  11213. padding:0px 0px 0px 0px;
  11214. box-sizing:border-box;
  11215. width:100%;
  11216. }
  11217. #u25051_text {
  11218. border-width:0px;
  11219. white-space:nowrap;
  11220. text-transform:none;
  11221. }
  11222. #u25052_div {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:0px;
  11226. top:0px;
  11227. width:65px;
  11228. height:22px;
  11229. background:inherit;
  11230. background-color:rgba(255, 255, 255, 0);
  11231. border:none;
  11232. border-radius:0px;
  11233. -moz-box-shadow:none;
  11234. -webkit-box-shadow:none;
  11235. box-shadow:none;
  11236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11237. font-weight:400;
  11238. font-style:normal;
  11239. font-size:16px;
  11240. }
  11241. #u25052 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:147px;
  11245. top:1133px;
  11246. width:65px;
  11247. height:22px;
  11248. display:flex;
  11249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11250. font-weight:400;
  11251. font-style:normal;
  11252. font-size:16px;
  11253. }
  11254. #u25052 .text {
  11255. position:absolute;
  11256. align-self:flex-start;
  11257. padding:0px 0px 0px 0px;
  11258. box-sizing:border-box;
  11259. width:100%;
  11260. }
  11261. #u25052_text {
  11262. border-width:0px;
  11263. white-space:nowrap;
  11264. text-transform:none;
  11265. }
  11266. #u25053_img {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:0px;
  11270. top:0px;
  11271. width:201px;
  11272. height:2px;
  11273. }
  11274. #u25053 {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:121px;
  11278. top:1033px;
  11279. width:200px;
  11280. height:1px;
  11281. display:flex;
  11282. }
  11283. #u25053 .text {
  11284. position:absolute;
  11285. align-self:center;
  11286. padding:2px 2px 2px 2px;
  11287. box-sizing:border-box;
  11288. width:100%;
  11289. }
  11290. #u25053_text {
  11291. border-width:0px;
  11292. word-wrap:break-word;
  11293. text-transform:none;
  11294. visibility:hidden;
  11295. }
  11296. #u25054_div {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:49px;
  11302. height:17px;
  11303. background:inherit;
  11304. background-color:rgba(255, 255, 255, 0);
  11305. border:none;
  11306. border-radius:0px;
  11307. -moz-box-shadow:none;
  11308. -webkit-box-shadow:none;
  11309. box-shadow:none;
  11310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11311. font-weight:400;
  11312. font-style:normal;
  11313. font-size:12px;
  11314. color:#AAAAAA;
  11315. }
  11316. #u25054 {
  11317. border-width:0px;
  11318. position:absolute;
  11319. left:147px;
  11320. top:1054px;
  11321. width:49px;
  11322. height:17px;
  11323. display:flex;
  11324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11325. font-weight:400;
  11326. font-style:normal;
  11327. font-size:12px;
  11328. color:#AAAAAA;
  11329. }
  11330. #u25054 .text {
  11331. position:absolute;
  11332. align-self:flex-start;
  11333. padding:0px 0px 0px 0px;
  11334. box-sizing:border-box;
  11335. width:100%;
  11336. }
  11337. #u25054_text {
  11338. border-width:0px;
  11339. white-space:nowrap;
  11340. text-transform:none;
  11341. }