styles.css 195 KB

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