styles.css 197 KB

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