styles.css 214 KB

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