styles.css 153 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u19272_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u19272 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u19272 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u19272_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u19273_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u19273 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u19273 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u19273_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u19274_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u19274 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u19274 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u19274_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u19275 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u19276_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u19276 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u19276 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u19276_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u19277_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u19277 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u19277 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u19277_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u19278_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u19278 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u19278 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19278_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19279 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19280_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. #u19280 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u19280 .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. #u19280_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19281_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19281 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19281 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19281_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19282 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19283_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. #u19283 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u19283 .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. #u19283_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19284_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19284 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19284 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19284_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19285 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19286_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  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. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u19286 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u19286 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u19286_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u19287_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u19287 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u19287 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u19287_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u19288 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u19289_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u19289 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u19289 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u19289_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u19290_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u19290 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u19290 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u19290_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u19291 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u19292_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u19292 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u19292 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u19292_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u19293_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u19293 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u19293 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u19293_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u19294 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u19295_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u19295 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u19295 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u19295_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u19296_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u19296 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u19296 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u19296_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u19297 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u19298_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u19298 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u19298 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u19298_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u19299_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u19299 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u19299 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u19299_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u19300 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u19301_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u19301 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u19301 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u19301_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u19302_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u19302 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u19302 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u19302_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u19303 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u19304_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u19304 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u19304 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u19304_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u19305_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u19305 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u19305 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u19305_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u19306 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u19307_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u19307 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u19307 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u19307_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u19308_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u19308 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u19308 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u19308_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u19309 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u19310_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u19310 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u19310 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u19310_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u19311_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u19311 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u19311 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u19311_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u19312 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u19313_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u19313_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u19313_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u19313 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u19313 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u19313_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u19313.disabled {
  1276. }
  1277. .u19313_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u19314_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u19314 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u19314 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u19314_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u19315_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u19315 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u19315 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u19315_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u19316_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u19316 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u19316 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u19316_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u19317 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u19318_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u19318 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u19318 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u19318_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u19319_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u19319 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u19319 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u19319_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u19320_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u19320 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u19320 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u19320_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u19321_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u19321 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u19321 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u19321_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u19322_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u19322 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u19322 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u19322_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u19323 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u19324_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u19324 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u19324 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u19324_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u19325_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u19325 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u19325 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u19325_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u19326_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1257px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u19326 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:333px;
  1661. top:50px;
  1662. width:1257px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u19326 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u19326_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u19327_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:50px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-left:0px;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:18px;
  1702. line-height:40px;
  1703. }
  1704. #u19327 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:352px;
  1708. top:54px;
  1709. width:73px;
  1710. height:50px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1713. font-weight:400;
  1714. font-style:normal;
  1715. font-size:18px;
  1716. line-height:40px;
  1717. }
  1718. #u19327 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u19327_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u19328 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:352px;
  1734. top:235px;
  1735. width:1219px;
  1736. height:426px;
  1737. }
  1738. #u19329_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:42px;
  1744. height:31px;
  1745. }
  1746. #u19329 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:42px;
  1752. height:31px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u19329 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u19329_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u19330_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:131px;
  1779. height:31px;
  1780. }
  1781. #u19330 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:42px;
  1785. top:0px;
  1786. width:131px;
  1787. height:31px;
  1788. display:flex;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. color:#FFFFFF;
  1794. }
  1795. #u19330 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u19330_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u19331_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:132px;
  1813. height:31px;
  1814. }
  1815. #u19331 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:173px;
  1819. top:0px;
  1820. width:132px;
  1821. height:31px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u19331 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u19331_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u19332_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:131px;
  1847. height:31px;
  1848. }
  1849. #u19332 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:305px;
  1853. top:0px;
  1854. width:131px;
  1855. height:31px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:14px;
  1861. color:#FFFFFF;
  1862. }
  1863. #u19332 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 2px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u19332_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u19333_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:159px;
  1881. height:31px;
  1882. }
  1883. #u19333 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:436px;
  1887. top:0px;
  1888. width:159px;
  1889. height:31px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. color:#FFFFFF;
  1896. }
  1897. #u19333 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u19333_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u19334_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:105px;
  1915. height:31px;
  1916. }
  1917. #u19334 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:595px;
  1921. top:0px;
  1922. width:105px;
  1923. height:31px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u19334 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u19334_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u19335_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:141px;
  1949. height:31px;
  1950. }
  1951. #u19335 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:700px;
  1955. top:0px;
  1956. width:141px;
  1957. height:31px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. }
  1965. #u19335 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u19335_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u19336_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:132px;
  1983. height:31px;
  1984. }
  1985. #u19336 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:841px;
  1989. top:0px;
  1990. width:132px;
  1991. height:31px;
  1992. display:flex;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:14px;
  1997. color:#FFFFFF;
  1998. }
  1999. #u19336 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u19336_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u19337_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:140px;
  2017. height:31px;
  2018. }
  2019. #u19337 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:973px;
  2023. top:0px;
  2024. width:140px;
  2025. height:31px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:14px;
  2031. color:#FFFFFF;
  2032. }
  2033. #u19337 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u19337_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u19338_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:106px;
  2051. height:31px;
  2052. }
  2053. #u19338 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:1113px;
  2057. top:0px;
  2058. width:106px;
  2059. height:31px;
  2060. display:flex;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:14px;
  2065. color:#FFFFFF;
  2066. }
  2067. #u19338 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u19338_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u19339_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:42px;
  2085. height:35px;
  2086. }
  2087. #u19339 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:31px;
  2092. width:42px;
  2093. height:35px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. }
  2100. #u19339 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u19339_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u19340_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:131px;
  2119. height:35px;
  2120. }
  2121. #u19340 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:42px;
  2125. top:31px;
  2126. width:131px;
  2127. height:35px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:14px;
  2133. }
  2134. #u19340 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u19340_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u19341_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:132px;
  2153. height:35px;
  2154. }
  2155. #u19341 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:173px;
  2159. top:31px;
  2160. width:132px;
  2161. height:35px;
  2162. display:flex;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u19341 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 2px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u19341_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. }
  2180. #u19342_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:131px;
  2186. height:35px;
  2187. }
  2188. #u19342 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:305px;
  2192. top:31px;
  2193. width:131px;
  2194. height:35px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. }
  2201. #u19342 .text {
  2202. position:absolute;
  2203. align-self:center;
  2204. padding:2px 2px 2px 2px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u19342_text {
  2209. border-width:0px;
  2210. word-wrap:break-word;
  2211. text-transform:none;
  2212. visibility:hidden;
  2213. }
  2214. #u19343_img {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:159px;
  2220. height:35px;
  2221. }
  2222. #u19343 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:436px;
  2226. top:31px;
  2227. width:159px;
  2228. height:35px;
  2229. display:flex;
  2230. font-size:14px;
  2231. }
  2232. #u19343 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 2px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u19343_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. }
  2244. #u19344_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:105px;
  2250. height:35px;
  2251. }
  2252. #u19344 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:595px;
  2256. top:31px;
  2257. width:105px;
  2258. height:35px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. }
  2265. #u19344 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u19344_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u19345_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:141px;
  2284. height:35px;
  2285. }
  2286. #u19345 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:700px;
  2290. top:31px;
  2291. width:141px;
  2292. height:35px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:14px;
  2298. }
  2299. #u19345 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 2px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u19345_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. visibility:hidden;
  2311. }
  2312. #u19346_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:132px;
  2318. height:35px;
  2319. }
  2320. #u19346 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:841px;
  2324. top:31px;
  2325. width:132px;
  2326. height:35px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:14px;
  2332. }
  2333. #u19346 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u19346_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u19347_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:140px;
  2351. height:35px;
  2352. }
  2353. #u19347 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:973px;
  2357. top:31px;
  2358. width:140px;
  2359. height:35px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. }
  2366. #u19347 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u19347_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u19348_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:106px;
  2385. height:35px;
  2386. }
  2387. #u19348 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:1113px;
  2391. top:31px;
  2392. width:106px;
  2393. height:35px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. color:#1890FF;
  2400. }
  2401. #u19348 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u19348_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. }
  2413. #u19349_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:42px;
  2419. height:30px;
  2420. }
  2421. #u19349 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:66px;
  2426. width:42px;
  2427. height:30px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. }
  2434. #u19349 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u19349_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u19350_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:131px;
  2453. height:30px;
  2454. }
  2455. #u19350 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:42px;
  2459. top:66px;
  2460. width:131px;
  2461. height:30px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. }
  2468. #u19350 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u19350_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u19351_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:132px;
  2487. height:30px;
  2488. }
  2489. #u19351 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:173px;
  2493. top:66px;
  2494. width:132px;
  2495. height:30px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. }
  2502. #u19351 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 2px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u19351_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u19352_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:131px;
  2521. height:30px;
  2522. }
  2523. #u19352 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:305px;
  2527. top:66px;
  2528. width:131px;
  2529. height:30px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. }
  2536. #u19352 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 2px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u19352_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u19353_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:159px;
  2555. height:30px;
  2556. }
  2557. #u19353 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:436px;
  2561. top:66px;
  2562. width:159px;
  2563. height:30px;
  2564. display:flex;
  2565. font-size:14px;
  2566. }
  2567. #u19353 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u19353_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u19354_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:105px;
  2586. height:30px;
  2587. }
  2588. #u19354 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:595px;
  2592. top:66px;
  2593. width:105px;
  2594. height:30px;
  2595. display:flex;
  2596. font-size:14px;
  2597. }
  2598. #u19354 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u19354_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u19355_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:141px;
  2617. height:30px;
  2618. }
  2619. #u19355 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:700px;
  2623. top:66px;
  2624. width:141px;
  2625. height:30px;
  2626. display:flex;
  2627. font-size:14px;
  2628. }
  2629. #u19355 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 2px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u19355_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. visibility:hidden;
  2641. }
  2642. #u19356_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:132px;
  2648. height:30px;
  2649. }
  2650. #u19356 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:841px;
  2654. top:66px;
  2655. width:132px;
  2656. height:30px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. }
  2663. #u19356 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u19356_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. }
  2675. #u19357_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:140px;
  2681. height:30px;
  2682. }
  2683. #u19357 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:973px;
  2687. top:66px;
  2688. width:140px;
  2689. height:30px;
  2690. display:flex;
  2691. font-size:14px;
  2692. }
  2693. #u19357 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u19357_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u19358_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:106px;
  2712. height:30px;
  2713. }
  2714. #u19358 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:1113px;
  2718. top:66px;
  2719. width:106px;
  2720. height:30px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. color:#1890FF;
  2727. }
  2728. #u19358 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u19358_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. }
  2740. #u19359_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:42px;
  2746. height:30px;
  2747. }
  2748. #u19359 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:96px;
  2753. width:42px;
  2754. height:30px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:14px;
  2760. }
  2761. #u19359 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u19359_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u19360_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:131px;
  2780. height:30px;
  2781. }
  2782. #u19360 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:42px;
  2786. top:96px;
  2787. width:131px;
  2788. height:30px;
  2789. display:flex;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:14px;
  2794. }
  2795. #u19360 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 2px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u19360_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u19361_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:132px;
  2814. height:30px;
  2815. }
  2816. #u19361 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:173px;
  2820. top:96px;
  2821. width:132px;
  2822. height:30px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:14px;
  2828. }
  2829. #u19361 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u19361_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u19362_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:131px;
  2848. height:30px;
  2849. }
  2850. #u19362 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:305px;
  2854. top:96px;
  2855. width:131px;
  2856. height:30px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:14px;
  2862. }
  2863. #u19362 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 2px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u19362_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u19363_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:159px;
  2882. height:30px;
  2883. }
  2884. #u19363 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:436px;
  2888. top:96px;
  2889. width:159px;
  2890. height:30px;
  2891. display:flex;
  2892. font-size:14px;
  2893. }
  2894. #u19363 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u19363_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u19364_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:105px;
  2913. height:30px;
  2914. }
  2915. #u19364 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:595px;
  2919. top:96px;
  2920. width:105px;
  2921. height:30px;
  2922. display:flex;
  2923. font-size:14px;
  2924. }
  2925. #u19364 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u19364_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u19365_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:141px;
  2944. height:30px;
  2945. }
  2946. #u19365 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:700px;
  2950. top:96px;
  2951. width:141px;
  2952. height:30px;
  2953. display:flex;
  2954. font-size:14px;
  2955. }
  2956. #u19365 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u19365_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u19366_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:132px;
  2975. height:30px;
  2976. }
  2977. #u19366 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:841px;
  2981. top:96px;
  2982. width:132px;
  2983. height:30px;
  2984. display:flex;
  2985. font-size:14px;
  2986. }
  2987. #u19366 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u19366_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u19367_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:140px;
  3006. height:30px;
  3007. }
  3008. #u19367 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:973px;
  3012. top:96px;
  3013. width:140px;
  3014. height:30px;
  3015. display:flex;
  3016. font-size:14px;
  3017. }
  3018. #u19367 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u19367_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u19368_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:106px;
  3037. height:30px;
  3038. }
  3039. #u19368 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:1113px;
  3043. top:96px;
  3044. width:106px;
  3045. height:30px;
  3046. display:flex;
  3047. font-size:14px;
  3048. }
  3049. #u19368 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u19368_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u19369_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:42px;
  3068. height:30px;
  3069. }
  3070. #u19369 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:126px;
  3075. width:42px;
  3076. height:30px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:14px;
  3082. }
  3083. #u19369 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u19369_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u19370_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:131px;
  3102. height:30px;
  3103. }
  3104. #u19370 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:42px;
  3108. top:126px;
  3109. width:131px;
  3110. height:30px;
  3111. display:flex;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:14px;
  3116. }
  3117. #u19370 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u19370_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u19371_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:132px;
  3136. height:30px;
  3137. }
  3138. #u19371 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:173px;
  3142. top:126px;
  3143. width:132px;
  3144. height:30px;
  3145. display:flex;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. }
  3151. #u19371 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u19371_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u19372_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:131px;
  3170. height:30px;
  3171. }
  3172. #u19372 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:305px;
  3176. top:126px;
  3177. width:131px;
  3178. height:30px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:14px;
  3184. }
  3185. #u19372 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u19372_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u19373_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:159px;
  3204. height:30px;
  3205. }
  3206. #u19373 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:436px;
  3210. top:126px;
  3211. width:159px;
  3212. height:30px;
  3213. display:flex;
  3214. font-size:14px;
  3215. }
  3216. #u19373 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 2px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u19373_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u19374_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:105px;
  3235. height:30px;
  3236. }
  3237. #u19374 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:595px;
  3241. top:126px;
  3242. width:105px;
  3243. height:30px;
  3244. display:flex;
  3245. font-size:14px;
  3246. }
  3247. #u19374 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u19374_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u19375_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:141px;
  3266. height:30px;
  3267. }
  3268. #u19375 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:700px;
  3272. top:126px;
  3273. width:141px;
  3274. height:30px;
  3275. display:flex;
  3276. font-size:14px;
  3277. }
  3278. #u19375 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u19375_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u19376_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:132px;
  3297. height:30px;
  3298. }
  3299. #u19376 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:841px;
  3303. top:126px;
  3304. width:132px;
  3305. height:30px;
  3306. display:flex;
  3307. font-size:14px;
  3308. }
  3309. #u19376 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u19376_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u19377_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:140px;
  3328. height:30px;
  3329. }
  3330. #u19377 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:973px;
  3334. top:126px;
  3335. width:140px;
  3336. height:30px;
  3337. display:flex;
  3338. font-size:14px;
  3339. }
  3340. #u19377 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u19377_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u19378_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:106px;
  3359. height:30px;
  3360. }
  3361. #u19378 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:1113px;
  3365. top:126px;
  3366. width:106px;
  3367. height:30px;
  3368. display:flex;
  3369. font-size:14px;
  3370. }
  3371. #u19378 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 2px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u19378_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u19379_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:42px;
  3390. height:30px;
  3391. }
  3392. #u19379 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:156px;
  3397. width:42px;
  3398. height:30px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. }
  3405. #u19379 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u19379_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u19380_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:131px;
  3424. height:30px;
  3425. }
  3426. #u19380 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:42px;
  3430. top:156px;
  3431. width:131px;
  3432. height:30px;
  3433. display:flex;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:14px;
  3438. }
  3439. #u19380 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u19380_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u19381_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:132px;
  3458. height:30px;
  3459. }
  3460. #u19381 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:173px;
  3464. top:156px;
  3465. width:132px;
  3466. height:30px;
  3467. display:flex;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:14px;
  3472. }
  3473. #u19381 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 2px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u19381_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u19382_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:131px;
  3492. height:30px;
  3493. }
  3494. #u19382 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:305px;
  3498. top:156px;
  3499. width:131px;
  3500. height:30px;
  3501. display:flex;
  3502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. }
  3507. #u19382 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u19382_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u19383_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:159px;
  3526. height:30px;
  3527. }
  3528. #u19383 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:436px;
  3532. top:156px;
  3533. width:159px;
  3534. height:30px;
  3535. display:flex;
  3536. font-size:14px;
  3537. }
  3538. #u19383 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 2px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u19383_text {
  3546. border-width:0px;
  3547. word-wrap:break-word;
  3548. text-transform:none;
  3549. visibility:hidden;
  3550. }
  3551. #u19384_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:105px;
  3557. height:30px;
  3558. }
  3559. #u19384 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:595px;
  3563. top:156px;
  3564. width:105px;
  3565. height:30px;
  3566. display:flex;
  3567. font-size:14px;
  3568. }
  3569. #u19384 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 2px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u19384_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u19385_img {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:141px;
  3588. height:30px;
  3589. }
  3590. #u19385 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:700px;
  3594. top:156px;
  3595. width:141px;
  3596. height:30px;
  3597. display:flex;
  3598. font-size:14px;
  3599. }
  3600. #u19385 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u19385_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u19386_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:132px;
  3619. height:30px;
  3620. }
  3621. #u19386 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:841px;
  3625. top:156px;
  3626. width:132px;
  3627. height:30px;
  3628. display:flex;
  3629. font-size:14px;
  3630. }
  3631. #u19386 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 2px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u19386_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u19387_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:140px;
  3650. height:30px;
  3651. }
  3652. #u19387 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:973px;
  3656. top:156px;
  3657. width:140px;
  3658. height:30px;
  3659. display:flex;
  3660. font-size:14px;
  3661. }
  3662. #u19387 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 2px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u19387_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u19388_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:106px;
  3681. height:30px;
  3682. }
  3683. #u19388 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:1113px;
  3687. top:156px;
  3688. width:106px;
  3689. height:30px;
  3690. display:flex;
  3691. font-size:14px;
  3692. }
  3693. #u19388 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 2px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u19388_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u19389_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:42px;
  3712. height:30px;
  3713. }
  3714. #u19389 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:186px;
  3719. width:42px;
  3720. height:30px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:14px;
  3726. }
  3727. #u19389 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u19389_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u19390_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:131px;
  3746. height:30px;
  3747. }
  3748. #u19390 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:42px;
  3752. top:186px;
  3753. width:131px;
  3754. height:30px;
  3755. display:flex;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:14px;
  3760. }
  3761. #u19390 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 2px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u19390_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u19391_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:132px;
  3780. height:30px;
  3781. }
  3782. #u19391 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:173px;
  3786. top:186px;
  3787. width:132px;
  3788. height:30px;
  3789. display:flex;
  3790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:14px;
  3794. }
  3795. #u19391 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 2px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u19391_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u19392_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:131px;
  3814. height:30px;
  3815. }
  3816. #u19392 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:305px;
  3820. top:186px;
  3821. width:131px;
  3822. height:30px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:14px;
  3828. }
  3829. #u19392 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u19392_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u19393_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:159px;
  3848. height:30px;
  3849. }
  3850. #u19393 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:436px;
  3854. top:186px;
  3855. width:159px;
  3856. height:30px;
  3857. display:flex;
  3858. font-size:14px;
  3859. }
  3860. #u19393 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 2px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u19393_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u19394_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:105px;
  3879. height:30px;
  3880. }
  3881. #u19394 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:595px;
  3885. top:186px;
  3886. width:105px;
  3887. height:30px;
  3888. display:flex;
  3889. font-size:14px;
  3890. }
  3891. #u19394 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u19394_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u19395_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:141px;
  3910. height:30px;
  3911. }
  3912. #u19395 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:700px;
  3916. top:186px;
  3917. width:141px;
  3918. height:30px;
  3919. display:flex;
  3920. font-size:14px;
  3921. }
  3922. #u19395 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u19395_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u19396_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:132px;
  3941. height:30px;
  3942. }
  3943. #u19396 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:841px;
  3947. top:186px;
  3948. width:132px;
  3949. height:30px;
  3950. display:flex;
  3951. font-size:14px;
  3952. }
  3953. #u19396 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u19396_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u19397_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:140px;
  3972. height:30px;
  3973. }
  3974. #u19397 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:973px;
  3978. top:186px;
  3979. width:140px;
  3980. height:30px;
  3981. display:flex;
  3982. font-size:14px;
  3983. }
  3984. #u19397 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u19397_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u19398_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:106px;
  4003. height:30px;
  4004. }
  4005. #u19398 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:1113px;
  4009. top:186px;
  4010. width:106px;
  4011. height:30px;
  4012. display:flex;
  4013. font-size:14px;
  4014. }
  4015. #u19398 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 2px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u19398_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u19399_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:42px;
  4034. height:30px;
  4035. }
  4036. #u19399 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:216px;
  4041. width:42px;
  4042. height:30px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:14px;
  4048. }
  4049. #u19399 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 2px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u19399_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u19400_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:131px;
  4068. height:30px;
  4069. }
  4070. #u19400 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:42px;
  4074. top:216px;
  4075. width:131px;
  4076. height:30px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. }
  4083. #u19400 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u19400_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u19401_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:132px;
  4102. height:30px;
  4103. }
  4104. #u19401 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:173px;
  4108. top:216px;
  4109. width:132px;
  4110. height:30px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:14px;
  4116. }
  4117. #u19401 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u19401_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u19402_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:131px;
  4136. height:30px;
  4137. }
  4138. #u19402 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:305px;
  4142. top:216px;
  4143. width:131px;
  4144. height:30px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u19402 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u19402_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u19403_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:159px;
  4170. height:30px;
  4171. }
  4172. #u19403 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:436px;
  4176. top:216px;
  4177. width:159px;
  4178. height:30px;
  4179. display:flex;
  4180. font-size:14px;
  4181. }
  4182. #u19403 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u19403_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u19404_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:105px;
  4201. height:30px;
  4202. }
  4203. #u19404 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:595px;
  4207. top:216px;
  4208. width:105px;
  4209. height:30px;
  4210. display:flex;
  4211. font-size:14px;
  4212. }
  4213. #u19404 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u19404_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u19405_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:141px;
  4232. height:30px;
  4233. }
  4234. #u19405 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:700px;
  4238. top:216px;
  4239. width:141px;
  4240. height:30px;
  4241. display:flex;
  4242. font-size:14px;
  4243. }
  4244. #u19405 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u19405_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u19406_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:132px;
  4263. height:30px;
  4264. }
  4265. #u19406 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:841px;
  4269. top:216px;
  4270. width:132px;
  4271. height:30px;
  4272. display:flex;
  4273. font-size:14px;
  4274. }
  4275. #u19406 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u19406_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u19407_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:140px;
  4294. height:30px;
  4295. }
  4296. #u19407 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:973px;
  4300. top:216px;
  4301. width:140px;
  4302. height:30px;
  4303. display:flex;
  4304. font-size:14px;
  4305. }
  4306. #u19407 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 2px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u19407_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u19408_img {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:106px;
  4325. height:30px;
  4326. }
  4327. #u19408 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:1113px;
  4331. top:216px;
  4332. width:106px;
  4333. height:30px;
  4334. display:flex;
  4335. font-size:14px;
  4336. }
  4337. #u19408 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 2px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u19408_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u19409_img {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:42px;
  4356. height:30px;
  4357. }
  4358. #u19409 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:246px;
  4363. width:42px;
  4364. height:30px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:14px;
  4370. }
  4371. #u19409 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u19409_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u19410_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:131px;
  4390. height:30px;
  4391. }
  4392. #u19410 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:42px;
  4396. top:246px;
  4397. width:131px;
  4398. height:30px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. }
  4405. #u19410 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 2px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u19410_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u19411_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:132px;
  4424. height:30px;
  4425. }
  4426. #u19411 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:173px;
  4430. top:246px;
  4431. width:132px;
  4432. height:30px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u19411 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u19411_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. visibility:hidden;
  4451. }
  4452. #u19412_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:131px;
  4458. height:30px;
  4459. }
  4460. #u19412 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:305px;
  4464. top:246px;
  4465. width:131px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u19412 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u19412_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u19413_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:159px;
  4492. height:30px;
  4493. }
  4494. #u19413 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:436px;
  4498. top:246px;
  4499. width:159px;
  4500. height:30px;
  4501. display:flex;
  4502. font-size:14px;
  4503. }
  4504. #u19413 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u19413_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u19414_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:105px;
  4523. height:30px;
  4524. }
  4525. #u19414 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:595px;
  4529. top:246px;
  4530. width:105px;
  4531. height:30px;
  4532. display:flex;
  4533. font-size:14px;
  4534. }
  4535. #u19414 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u19414_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u19415_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:141px;
  4554. height:30px;
  4555. }
  4556. #u19415 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:700px;
  4560. top:246px;
  4561. width:141px;
  4562. height:30px;
  4563. display:flex;
  4564. font-size:14px;
  4565. }
  4566. #u19415 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u19415_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u19416_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:132px;
  4585. height:30px;
  4586. }
  4587. #u19416 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:841px;
  4591. top:246px;
  4592. width:132px;
  4593. height:30px;
  4594. display:flex;
  4595. font-size:14px;
  4596. }
  4597. #u19416 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 2px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u19416_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u19417_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:140px;
  4616. height:30px;
  4617. }
  4618. #u19417 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:973px;
  4622. top:246px;
  4623. width:140px;
  4624. height:30px;
  4625. display:flex;
  4626. font-size:14px;
  4627. }
  4628. #u19417 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u19417_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u19418_img {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:106px;
  4647. height:30px;
  4648. }
  4649. #u19418 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:1113px;
  4653. top:246px;
  4654. width:106px;
  4655. height:30px;
  4656. display:flex;
  4657. font-size:14px;
  4658. }
  4659. #u19418 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 2px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u19418_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u19419_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:42px;
  4678. height:30px;
  4679. }
  4680. #u19419 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:276px;
  4685. width:42px;
  4686. height:30px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:14px;
  4692. }
  4693. #u19419 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u19419_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u19420_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:131px;
  4712. height:30px;
  4713. }
  4714. #u19420 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:42px;
  4718. top:276px;
  4719. width:131px;
  4720. height:30px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:14px;
  4726. }
  4727. #u19420 .text {
  4728. position:absolute;
  4729. align-self:center;
  4730. padding:2px 2px 2px 2px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u19420_text {
  4735. border-width:0px;
  4736. word-wrap:break-word;
  4737. text-transform:none;
  4738. visibility:hidden;
  4739. }
  4740. #u19421_img {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:132px;
  4746. height:30px;
  4747. }
  4748. #u19421 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:173px;
  4752. top:276px;
  4753. width:132px;
  4754. height:30px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. }
  4761. #u19421 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 2px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u19421_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u19422_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:131px;
  4780. height:30px;
  4781. }
  4782. #u19422 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:305px;
  4786. top:276px;
  4787. width:131px;
  4788. height:30px;
  4789. display:flex;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:14px;
  4794. }
  4795. #u19422 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u19422_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u19423_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:159px;
  4814. height:30px;
  4815. }
  4816. #u19423 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:436px;
  4820. top:276px;
  4821. width:159px;
  4822. height:30px;
  4823. display:flex;
  4824. font-size:14px;
  4825. }
  4826. #u19423 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 2px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u19423_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u19424_img {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:105px;
  4845. height:30px;
  4846. }
  4847. #u19424 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:595px;
  4851. top:276px;
  4852. width:105px;
  4853. height:30px;
  4854. display:flex;
  4855. font-size:14px;
  4856. }
  4857. #u19424 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u19424_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u19425_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:141px;
  4876. height:30px;
  4877. }
  4878. #u19425 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:700px;
  4882. top:276px;
  4883. width:141px;
  4884. height:30px;
  4885. display:flex;
  4886. font-size:14px;
  4887. }
  4888. #u19425 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u19425_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u19426_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:132px;
  4907. height:30px;
  4908. }
  4909. #u19426 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:841px;
  4913. top:276px;
  4914. width:132px;
  4915. height:30px;
  4916. display:flex;
  4917. font-size:14px;
  4918. }
  4919. #u19426 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u19426_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u19427_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:140px;
  4938. height:30px;
  4939. }
  4940. #u19427 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:973px;
  4944. top:276px;
  4945. width:140px;
  4946. height:30px;
  4947. display:flex;
  4948. font-size:14px;
  4949. }
  4950. #u19427 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u19427_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u19428_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:106px;
  4969. height:30px;
  4970. }
  4971. #u19428 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:1113px;
  4975. top:276px;
  4976. width:106px;
  4977. height:30px;
  4978. display:flex;
  4979. font-size:14px;
  4980. }
  4981. #u19428 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:2px 2px 2px 2px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u19428_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. visibility:hidden;
  4993. }
  4994. #u19429_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:42px;
  5000. height:30px;
  5001. }
  5002. #u19429 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:306px;
  5007. width:42px;
  5008. height:30px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. }
  5015. #u19429 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 2px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u19429_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. visibility:hidden;
  5027. }
  5028. #u19430_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:131px;
  5034. height:30px;
  5035. }
  5036. #u19430 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:42px;
  5040. top:306px;
  5041. width:131px;
  5042. height:30px;
  5043. display:flex;
  5044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:14px;
  5048. }
  5049. #u19430 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u19430_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u19431_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:132px;
  5068. height:30px;
  5069. }
  5070. #u19431 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:173px;
  5074. top:306px;
  5075. width:132px;
  5076. height:30px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. }
  5083. #u19431 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 2px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u19431_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u19432_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:131px;
  5102. height:30px;
  5103. }
  5104. #u19432 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:305px;
  5108. top:306px;
  5109. width:131px;
  5110. height:30px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. }
  5117. #u19432 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u19432_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u19433_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:159px;
  5136. height:30px;
  5137. }
  5138. #u19433 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:436px;
  5142. top:306px;
  5143. width:159px;
  5144. height:30px;
  5145. display:flex;
  5146. font-size:14px;
  5147. }
  5148. #u19433 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u19433_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u19434_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:105px;
  5167. height:30px;
  5168. }
  5169. #u19434 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:595px;
  5173. top:306px;
  5174. width:105px;
  5175. height:30px;
  5176. display:flex;
  5177. font-size:14px;
  5178. }
  5179. #u19434 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u19434_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u19435_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:141px;
  5198. height:30px;
  5199. }
  5200. #u19435 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:700px;
  5204. top:306px;
  5205. width:141px;
  5206. height:30px;
  5207. display:flex;
  5208. font-size:14px;
  5209. }
  5210. #u19435 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u19435_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u19436_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:132px;
  5229. height:30px;
  5230. }
  5231. #u19436 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:841px;
  5235. top:306px;
  5236. width:132px;
  5237. height:30px;
  5238. display:flex;
  5239. font-size:14px;
  5240. }
  5241. #u19436 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u19436_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u19437_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:140px;
  5260. height:30px;
  5261. }
  5262. #u19437 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:973px;
  5266. top:306px;
  5267. width:140px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u19437 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u19437_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u19438_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:106px;
  5291. height:30px;
  5292. }
  5293. #u19438 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1113px;
  5297. top:306px;
  5298. width:106px;
  5299. height:30px;
  5300. display:flex;
  5301. font-size:14px;
  5302. }
  5303. #u19438 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u19438_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u19439_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:42px;
  5322. height:30px;
  5323. }
  5324. #u19439 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:336px;
  5329. width:42px;
  5330. height:30px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. }
  5337. #u19439 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u19439_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. visibility:hidden;
  5349. }
  5350. #u19440_img {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:131px;
  5356. height:30px;
  5357. }
  5358. #u19440 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:42px;
  5362. top:336px;
  5363. width:131px;
  5364. height:30px;
  5365. display:flex;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:14px;
  5370. }
  5371. #u19440 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 2px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u19440_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u19441_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:132px;
  5390. height:30px;
  5391. }
  5392. #u19441 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:173px;
  5396. top:336px;
  5397. width:132px;
  5398. height:30px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. }
  5405. #u19441 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u19441_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u19442_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:131px;
  5424. height:30px;
  5425. }
  5426. #u19442 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:305px;
  5430. top:336px;
  5431. width:131px;
  5432. height:30px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. }
  5439. #u19442 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u19442_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u19443_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:159px;
  5458. height:30px;
  5459. }
  5460. #u19443 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:436px;
  5464. top:336px;
  5465. width:159px;
  5466. height:30px;
  5467. display:flex;
  5468. font-size:14px;
  5469. }
  5470. #u19443 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u19443_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u19444_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:105px;
  5489. height:30px;
  5490. }
  5491. #u19444 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:595px;
  5495. top:336px;
  5496. width:105px;
  5497. height:30px;
  5498. display:flex;
  5499. font-size:14px;
  5500. }
  5501. #u19444 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u19444_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u19445_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:141px;
  5520. height:30px;
  5521. }
  5522. #u19445 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:700px;
  5526. top:336px;
  5527. width:141px;
  5528. height:30px;
  5529. display:flex;
  5530. font-size:14px;
  5531. }
  5532. #u19445 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 2px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u19445_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. visibility:hidden;
  5544. }
  5545. #u19446_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:132px;
  5551. height:30px;
  5552. }
  5553. #u19446 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:841px;
  5557. top:336px;
  5558. width:132px;
  5559. height:30px;
  5560. display:flex;
  5561. font-size:14px;
  5562. }
  5563. #u19446 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u19446_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u19447_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:140px;
  5582. height:30px;
  5583. }
  5584. #u19447 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:973px;
  5588. top:336px;
  5589. width:140px;
  5590. height:30px;
  5591. display:flex;
  5592. font-size:14px;
  5593. }
  5594. #u19447 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u19447_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u19448_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:106px;
  5613. height:30px;
  5614. }
  5615. #u19448 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:1113px;
  5619. top:336px;
  5620. width:106px;
  5621. height:30px;
  5622. display:flex;
  5623. font-size:14px;
  5624. }
  5625. #u19448 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u19448_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u19449_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:42px;
  5644. height:30px;
  5645. }
  5646. #u19449 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:366px;
  5651. width:42px;
  5652. height:30px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. }
  5659. #u19449 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 2px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u19449_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u19450_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:131px;
  5678. height:30px;
  5679. }
  5680. #u19450 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:42px;
  5684. top:366px;
  5685. width:131px;
  5686. height:30px;
  5687. display:flex;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. }
  5693. #u19450 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 2px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u19450_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u19451_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:132px;
  5712. height:30px;
  5713. }
  5714. #u19451 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:173px;
  5718. top:366px;
  5719. width:132px;
  5720. height:30px;
  5721. display:flex;
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:14px;
  5726. }
  5727. #u19451 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 2px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u19451_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u19452_img {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:131px;
  5746. height:30px;
  5747. }
  5748. #u19452 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:305px;
  5752. top:366px;
  5753. width:131px;
  5754. height:30px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:14px;
  5760. }
  5761. #u19452 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u19452_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u19453_img {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:159px;
  5780. height:30px;
  5781. }
  5782. #u19453 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:436px;
  5786. top:366px;
  5787. width:159px;
  5788. height:30px;
  5789. display:flex;
  5790. font-size:14px;
  5791. }
  5792. #u19453 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:2px 2px 2px 2px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u19453_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. visibility:hidden;
  5804. }
  5805. #u19454_img {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:105px;
  5811. height:30px;
  5812. }
  5813. #u19454 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:595px;
  5817. top:366px;
  5818. width:105px;
  5819. height:30px;
  5820. display:flex;
  5821. font-size:14px;
  5822. }
  5823. #u19454 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u19454_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u19455_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:141px;
  5842. height:30px;
  5843. }
  5844. #u19455 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:700px;
  5848. top:366px;
  5849. width:141px;
  5850. height:30px;
  5851. display:flex;
  5852. font-size:14px;
  5853. }
  5854. #u19455 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u19455_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u19456_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:132px;
  5873. height:30px;
  5874. }
  5875. #u19456 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:841px;
  5879. top:366px;
  5880. width:132px;
  5881. height:30px;
  5882. display:flex;
  5883. font-size:14px;
  5884. }
  5885. #u19456 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u19456_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u19457_img {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:140px;
  5904. height:30px;
  5905. }
  5906. #u19457 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:973px;
  5910. top:366px;
  5911. width:140px;
  5912. height:30px;
  5913. display:flex;
  5914. font-size:14px;
  5915. }
  5916. #u19457 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u19457_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u19458_img {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:106px;
  5935. height:30px;
  5936. }
  5937. #u19458 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:1113px;
  5941. top:366px;
  5942. width:106px;
  5943. height:30px;
  5944. display:flex;
  5945. font-size:14px;
  5946. }
  5947. #u19458 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u19458_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u19459_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:42px;
  5966. height:30px;
  5967. }
  5968. #u19459 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:396px;
  5973. width:42px;
  5974. height:30px;
  5975. display:flex;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. }
  5981. #u19459 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 2px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u19459_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u19460_img {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:131px;
  6000. height:30px;
  6001. }
  6002. #u19460 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:42px;
  6006. top:396px;
  6007. width:131px;
  6008. height:30px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. }
  6015. #u19460 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:2px 2px 2px 2px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u19460_text {
  6023. border-width:0px;
  6024. word-wrap:break-word;
  6025. text-transform:none;
  6026. visibility:hidden;
  6027. }
  6028. #u19461_img {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:132px;
  6034. height:30px;
  6035. }
  6036. #u19461 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:173px;
  6040. top:396px;
  6041. width:132px;
  6042. height:30px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:14px;
  6048. }
  6049. #u19461 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:2px 2px 2px 2px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u19461_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. visibility:hidden;
  6061. }
  6062. #u19462_img {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:131px;
  6068. height:30px;
  6069. }
  6070. #u19462 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:305px;
  6074. top:396px;
  6075. width:131px;
  6076. height:30px;
  6077. display:flex;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. }
  6083. #u19462 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 2px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u19462_text {
  6091. border-width:0px;
  6092. word-wrap:break-word;
  6093. text-transform:none;
  6094. visibility:hidden;
  6095. }
  6096. #u19463_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:159px;
  6102. height:30px;
  6103. }
  6104. #u19463 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:436px;
  6108. top:396px;
  6109. width:159px;
  6110. height:30px;
  6111. display:flex;
  6112. font-size:14px;
  6113. }
  6114. #u19463 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u19463_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u19464_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:105px;
  6133. height:30px;
  6134. }
  6135. #u19464 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:595px;
  6139. top:396px;
  6140. width:105px;
  6141. height:30px;
  6142. display:flex;
  6143. font-size:14px;
  6144. }
  6145. #u19464 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u19464_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u19465_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:141px;
  6164. height:30px;
  6165. }
  6166. #u19465 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:700px;
  6170. top:396px;
  6171. width:141px;
  6172. height:30px;
  6173. display:flex;
  6174. font-size:14px;
  6175. }
  6176. #u19465 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 2px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u19465_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u19466_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:132px;
  6195. height:30px;
  6196. }
  6197. #u19466 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:841px;
  6201. top:396px;
  6202. width:132px;
  6203. height:30px;
  6204. display:flex;
  6205. font-size:14px;
  6206. }
  6207. #u19466 .text {
  6208. position:absolute;
  6209. align-self:center;
  6210. padding:2px 2px 2px 2px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u19466_text {
  6215. border-width:0px;
  6216. word-wrap:break-word;
  6217. text-transform:none;
  6218. visibility:hidden;
  6219. }
  6220. #u19467_img {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:140px;
  6226. height:30px;
  6227. }
  6228. #u19467 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:973px;
  6232. top:396px;
  6233. width:140px;
  6234. height:30px;
  6235. display:flex;
  6236. font-size:14px;
  6237. }
  6238. #u19467 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 2px 2px 2px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u19467_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. visibility:hidden;
  6250. }
  6251. #u19468_img {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:106px;
  6257. height:30px;
  6258. }
  6259. #u19468 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1113px;
  6263. top:396px;
  6264. width:106px;
  6265. height:30px;
  6266. display:flex;
  6267. font-size:14px;
  6268. }
  6269. #u19468 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u19468_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u19469_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:80px;
  6288. height:30px;
  6289. background:inherit;
  6290. background-color:rgba(24, 144, 255, 1);
  6291. border:none;
  6292. border-radius:4px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:14px;
  6300. color:#FFFFFF;
  6301. }
  6302. #u19469 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:352px;
  6306. top:189px;
  6307. width:80px;
  6308. height:30px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:14px;
  6314. color:#FFFFFF;
  6315. }
  6316. #u19469 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u19469_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. }
  6328. #u19470 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:0px;
  6334. height:0px;
  6335. }
  6336. #u19471_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:140px;
  6342. height:30px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 1);
  6345. box-sizing:border-box;
  6346. border-width:1px;
  6347. border-style:solid;
  6348. border-color:rgba(215, 215, 215, 1);
  6349. border-radius:4px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-size:14px;
  6354. }
  6355. #u19471 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:502px;
  6359. top:140px;
  6360. width:140px;
  6361. height:30px;
  6362. display:flex;
  6363. font-size:14px;
  6364. }
  6365. #u19471 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 2px 2px 2px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u19471_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u19472_input {
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:134px;
  6383. height:23px;
  6384. padding:2px 2px 2px 2px;
  6385. font-family:'ArialMT', 'Arial', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:14px;
  6389. letter-spacing:normal;
  6390. color:#AAAAAA;
  6391. vertical-align:none;
  6392. text-align:left;
  6393. text-transform:none;
  6394. background-color:transparent;
  6395. border-color:transparent;
  6396. }
  6397. #u19472_input.disabled {
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:134px;
  6402. height:23px;
  6403. padding:2px 2px 2px 2px;
  6404. font-family:'ArialMT', 'Arial', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. letter-spacing:normal;
  6409. color:#AAAAAA;
  6410. vertical-align:none;
  6411. text-align:left;
  6412. text-transform:none;
  6413. background-color:transparent;
  6414. border-color:transparent;
  6415. }
  6416. #u19472_div {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:134px;
  6422. height:23px;
  6423. background:inherit;
  6424. background-color:rgba(255, 255, 255, 1);
  6425. border:none;
  6426. border-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-size:14px;
  6431. color:#AAAAAA;
  6432. }
  6433. #u19472 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:506px;
  6437. top:142px;
  6438. width:134px;
  6439. height:23px;
  6440. display:flex;
  6441. font-size:14px;
  6442. color:#AAAAAA;
  6443. }
  6444. #u19472 .text {
  6445. position:absolute;
  6446. align-self:flex-start;
  6447. padding:2px 2px 2px 2px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u19472_div.disabled {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:134px;
  6457. height:23px;
  6458. background:inherit;
  6459. background-color:rgba(240, 240, 240, 1);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-size:14px;
  6466. color:#AAAAAA;
  6467. }
  6468. #u19472.disabled {
  6469. }
  6470. .u19472_input_option {
  6471. font-size:14px;
  6472. }
  6473. #u19473 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:0px;
  6479. height:0px;
  6480. }
  6481. #u19474_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:140px;
  6487. height:30px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 1);
  6490. box-sizing:border-box;
  6491. border-width:1px;
  6492. border-style:solid;
  6493. border-color:rgba(215, 215, 215, 1);
  6494. border-radius:4px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-size:14px;
  6499. }
  6500. #u19474 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:802px;
  6504. top:140px;
  6505. width:140px;
  6506. height:30px;
  6507. display:flex;
  6508. font-size:14px;
  6509. }
  6510. #u19474 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u19474_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u19475_input {
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:134px;
  6528. height:23px;
  6529. padding:2px 2px 2px 2px;
  6530. font-family:'ArialMT', 'Arial', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. letter-spacing:normal;
  6535. color:#AAAAAA;
  6536. vertical-align:none;
  6537. text-align:left;
  6538. text-transform:none;
  6539. background-color:transparent;
  6540. border-color:transparent;
  6541. }
  6542. #u19475_input.disabled {
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:134px;
  6547. height:23px;
  6548. padding:2px 2px 2px 2px;
  6549. font-family:'ArialMT', 'Arial', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. letter-spacing:normal;
  6554. color:#AAAAAA;
  6555. vertical-align:none;
  6556. text-align:left;
  6557. text-transform:none;
  6558. background-color:transparent;
  6559. border-color:transparent;
  6560. }
  6561. #u19475_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:134px;
  6567. height:23px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 1);
  6570. border:none;
  6571. border-radius:0px;
  6572. -moz-box-shadow:none;
  6573. -webkit-box-shadow:none;
  6574. box-shadow:none;
  6575. font-size:14px;
  6576. color:#AAAAAA;
  6577. }
  6578. #u19475 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:806px;
  6582. top:142px;
  6583. width:134px;
  6584. height:23px;
  6585. display:flex;
  6586. font-size:14px;
  6587. color:#AAAAAA;
  6588. }
  6589. #u19475 .text {
  6590. position:absolute;
  6591. align-self:flex-start;
  6592. padding:2px 2px 2px 2px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u19475_div.disabled {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:134px;
  6602. height:23px;
  6603. background:inherit;
  6604. background-color:rgba(240, 240, 240, 1);
  6605. border:none;
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-size:14px;
  6611. color:#AAAAAA;
  6612. }
  6613. #u19475.disabled {
  6614. }
  6615. .u19475_input_option {
  6616. font-size:14px;
  6617. }
  6618. #u19476 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:0px;
  6624. height:0px;
  6625. }
  6626. #u19477_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:60px;
  6632. height:30px;
  6633. background:inherit;
  6634. background-color:rgba(24, 144, 255, 1);
  6635. border:none;
  6636. border-radius:4px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:14px;
  6644. color:#FFFFFF;
  6645. }
  6646. #u19477 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:1103px;
  6650. top:140px;
  6651. width:60px;
  6652. height:30px;
  6653. display:flex;
  6654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6655. font-weight:400;
  6656. font-style:normal;
  6657. font-size:14px;
  6658. color:#FFFFFF;
  6659. }
  6660. #u19477 .text {
  6661. position:absolute;
  6662. align-self:center;
  6663. padding:2px 2px 2px 2px;
  6664. box-sizing:border-box;
  6665. width:100%;
  6666. }
  6667. #u19477_text {
  6668. border-width:0px;
  6669. word-wrap:break-word;
  6670. text-transform:none;
  6671. }
  6672. #u19478_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:60px;
  6678. height:30px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 1);
  6681. box-sizing:border-box;
  6682. border-width:1px;
  6683. border-style:solid;
  6684. border-color:rgba(170, 170, 170, 1);
  6685. border-radius:4px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:14px;
  6693. }
  6694. #u19478 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1173px;
  6698. top:140px;
  6699. width:60px;
  6700. height:30px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. }
  6707. #u19478 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u19478_text {
  6715. border-width:0px;
  6716. word-wrap:break-word;
  6717. text-transform:none;
  6718. }
  6719. #u19479_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:895px;
  6725. height:50px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:18px;
  6737. color:#D9001B;
  6738. }
  6739. #u19479 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:398px;
  6743. top:722px;
  6744. width:895px;
  6745. height:50px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:18px;
  6751. color:#D9001B;
  6752. }
  6753. #u19479 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u19479_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u19480 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:0px;
  6771. height:0px;
  6772. }
  6773. #u19481_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:140px;
  6779. height:30px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 1);
  6782. box-sizing:border-box;
  6783. border-width:1px;
  6784. border-style:solid;
  6785. border-color:rgba(215, 215, 215, 1);
  6786. border-radius:4px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. font-size:14px;
  6791. }
  6792. #u19481 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:352px;
  6796. top:140px;
  6797. width:140px;
  6798. height:30px;
  6799. display:flex;
  6800. font-size:14px;
  6801. }
  6802. #u19481 .text {
  6803. position:absolute;
  6804. align-self:center;
  6805. padding:2px 2px 2px 2px;
  6806. box-sizing:border-box;
  6807. width:100%;
  6808. }
  6809. #u19481_text {
  6810. border-width:0px;
  6811. word-wrap:break-word;
  6812. text-transform:none;
  6813. visibility:hidden;
  6814. }
  6815. #u19482_input {
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:134px;
  6820. height:23px;
  6821. padding:2px 2px 2px 2px;
  6822. font-family:'ArialMT', 'Arial', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:14px;
  6826. letter-spacing:normal;
  6827. color:#AAAAAA;
  6828. vertical-align:none;
  6829. text-align:left;
  6830. text-transform:none;
  6831. background-color:transparent;
  6832. border-color:transparent;
  6833. }
  6834. #u19482_input.disabled {
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:134px;
  6839. height:23px;
  6840. padding:2px 2px 2px 2px;
  6841. font-family:'ArialMT', 'Arial', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:14px;
  6845. letter-spacing:normal;
  6846. color:#AAAAAA;
  6847. vertical-align:none;
  6848. text-align:left;
  6849. text-transform:none;
  6850. background-color:transparent;
  6851. border-color:transparent;
  6852. }
  6853. #u19482_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:134px;
  6859. height:23px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 1);
  6862. border:none;
  6863. border-radius:0px;
  6864. -moz-box-shadow:none;
  6865. -webkit-box-shadow:none;
  6866. box-shadow:none;
  6867. font-size:14px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u19482 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:356px;
  6874. top:142px;
  6875. width:134px;
  6876. height:23px;
  6877. display:flex;
  6878. font-size:14px;
  6879. color:#AAAAAA;
  6880. }
  6881. #u19482 .text {
  6882. position:absolute;
  6883. align-self:flex-start;
  6884. padding:2px 2px 2px 2px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u19482_div.disabled {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:134px;
  6894. height:23px;
  6895. background:inherit;
  6896. background-color:rgba(240, 240, 240, 1);
  6897. border:none;
  6898. border-radius:0px;
  6899. -moz-box-shadow:none;
  6900. -webkit-box-shadow:none;
  6901. box-shadow:none;
  6902. font-size:14px;
  6903. color:#AAAAAA;
  6904. }
  6905. #u19482.disabled {
  6906. }
  6907. .u19482_input_option {
  6908. font-size:14px;
  6909. }
  6910. #u19484_div {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:200px;
  6916. height:1180px;
  6917. background:inherit;
  6918. background-color:rgba(255, 255, 255, 1);
  6919. border:none;
  6920. border-radius:0px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. }
  6925. #u19484 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:120px;
  6929. top:50px;
  6930. width:200px;
  6931. height:1180px;
  6932. display:flex;
  6933. }
  6934. #u19484 .text {
  6935. position:absolute;
  6936. align-self:center;
  6937. padding:2px 2px 2px 2px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u19484_text {
  6942. border-width:0px;
  6943. word-wrap:break-word;
  6944. text-transform:none;
  6945. visibility:hidden;
  6946. }
  6947. #u19485_div {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:200px;
  6953. height:60px;
  6954. background:inherit;
  6955. background-color:rgba(224, 231, 247, 1);
  6956. border:none;
  6957. border-radius:0px;
  6958. -moz-box-shadow:none;
  6959. -webkit-box-shadow:none;
  6960. box-shadow:none;
  6961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6962. font-weight:500;
  6963. font-style:normal;
  6964. font-size:18px;
  6965. }
  6966. #u19485 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:120px;
  6970. top:50px;
  6971. width:200px;
  6972. height:60px;
  6973. display:flex;
  6974. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6975. font-weight:500;
  6976. font-style:normal;
  6977. font-size:18px;
  6978. }
  6979. #u19485 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:0px 0px 0px 20px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u19485_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. }
  6991. #u19486_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:65px;
  6997. height:22px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 0);
  7000. border:none;
  7001. border-radius:0px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:16px;
  7009. }
  7010. #u19486 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:143px;
  7014. top:163px;
  7015. width:65px;
  7016. height:22px;
  7017. display:flex;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:16px;
  7022. }
  7023. #u19486 .text {
  7024. position:absolute;
  7025. align-self:flex-start;
  7026. padding:0px 0px 0px 0px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u19486_text {
  7031. border-width:0px;
  7032. white-space:nowrap;
  7033. text-transform:none;
  7034. }
  7035. #u19487_div {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:49px;
  7041. height:17px;
  7042. background:inherit;
  7043. background-color:rgba(255, 255, 255, 0);
  7044. border:none;
  7045. border-radius:0px;
  7046. -moz-box-shadow:none;
  7047. -webkit-box-shadow:none;
  7048. box-shadow:none;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:12px;
  7053. color:#AAAAAA;
  7054. }
  7055. #u19487 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:143px;
  7059. top:130px;
  7060. width:49px;
  7061. height:17px;
  7062. display:flex;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:12px;
  7067. color:#AAAAAA;
  7068. }
  7069. #u19487 .text {
  7070. position:absolute;
  7071. align-self:flex-start;
  7072. padding:0px 0px 0px 0px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u19487_text {
  7077. border-width:0px;
  7078. white-space:nowrap;
  7079. text-transform:none;
  7080. }
  7081. #u19488_div {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:65px;
  7087. height:22px;
  7088. background:inherit;
  7089. background-color:rgba(255, 255, 255, 0);
  7090. border:none;
  7091. border-radius:0px;
  7092. -moz-box-shadow:none;
  7093. -webkit-box-shadow:none;
  7094. box-shadow:none;
  7095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7096. font-weight:400;
  7097. font-style:normal;
  7098. font-size:16px;
  7099. }
  7100. #u19488 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:143px;
  7104. top:205px;
  7105. width:65px;
  7106. height:22px;
  7107. display:flex;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:16px;
  7112. }
  7113. #u19488 .text {
  7114. position:absolute;
  7115. align-self:flex-start;
  7116. padding:0px 0px 0px 0px;
  7117. box-sizing:border-box;
  7118. width:100%;
  7119. }
  7120. #u19488_text {
  7121. border-width:0px;
  7122. white-space:nowrap;
  7123. text-transform:none;
  7124. }
  7125. #u19489_div {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:65px;
  7131. height:22px;
  7132. background:inherit;
  7133. background-color:rgba(255, 255, 255, 0);
  7134. border:none;
  7135. border-radius:0px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:16px;
  7143. }
  7144. #u19489 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:143px;
  7148. top:357px;
  7149. width:65px;
  7150. height:22px;
  7151. display:flex;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:16px;
  7156. }
  7157. #u19489 .text {
  7158. position:absolute;
  7159. align-self:flex-start;
  7160. padding:0px 0px 0px 0px;
  7161. box-sizing:border-box;
  7162. width:100%;
  7163. }
  7164. #u19489_text {
  7165. border-width:0px;
  7166. white-space:nowrap;
  7167. text-transform:none;
  7168. }
  7169. #u19490_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:65px;
  7175. height:22px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 0);
  7178. border:none;
  7179. border-radius:0px;
  7180. -moz-box-shadow:none;
  7181. -webkit-box-shadow:none;
  7182. box-shadow:none;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:16px;
  7187. }
  7188. #u19490 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:143px;
  7192. top:452px;
  7193. width:65px;
  7194. height:22px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:16px;
  7200. }
  7201. #u19490 .text {
  7202. position:absolute;
  7203. align-self:flex-start;
  7204. padding:0px 0px 0px 0px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u19490_text {
  7209. border-width:0px;
  7210. white-space:nowrap;
  7211. text-transform:none;
  7212. }
  7213. #u19491_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:201px;
  7219. height:2px;
  7220. }
  7221. #u19491 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:120px;
  7225. top:399px;
  7226. width:200px;
  7227. height:1px;
  7228. display:flex;
  7229. }
  7230. #u19491 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u19491_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u19492_div {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:49px;
  7249. height:17px;
  7250. background:inherit;
  7251. background-color:rgba(255, 255, 255, 0);
  7252. border:none;
  7253. border-radius:0px;
  7254. -moz-box-shadow:none;
  7255. -webkit-box-shadow:none;
  7256. box-shadow:none;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:12px;
  7261. color:#AAAAAA;
  7262. }
  7263. #u19492 {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:143px;
  7267. top:419px;
  7268. width:49px;
  7269. height:17px;
  7270. display:flex;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. font-size:12px;
  7275. color:#AAAAAA;
  7276. }
  7277. #u19492 .text {
  7278. position:absolute;
  7279. align-self:flex-start;
  7280. padding:0px 0px 0px 0px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u19492_text {
  7285. border-width:0px;
  7286. white-space:nowrap;
  7287. text-transform:none;
  7288. }
  7289. #u19493_div {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:65px;
  7295. height:22px;
  7296. background:inherit;
  7297. background-color:rgba(255, 255, 255, 0);
  7298. border:none;
  7299. border-radius:0px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:16px;
  7307. }
  7308. #u19493 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:143px;
  7312. top:494px;
  7313. width:65px;
  7314. height:22px;
  7315. display:flex;
  7316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:16px;
  7320. }
  7321. #u19493 .text {
  7322. position:absolute;
  7323. align-self:flex-start;
  7324. padding:0px 0px 0px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u19493_text {
  7329. border-width:0px;
  7330. white-space:nowrap;
  7331. text-transform:none;
  7332. }
  7333. #u19494_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:65px;
  7339. height:22px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 0);
  7342. border:none;
  7343. border-radius:0px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:16px;
  7351. }
  7352. #u19494 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:143px;
  7356. top:247px;
  7357. width:65px;
  7358. height:22px;
  7359. display:flex;
  7360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:16px;
  7364. }
  7365. #u19494 .text {
  7366. position:absolute;
  7367. align-self:flex-start;
  7368. padding:0px 0px 0px 0px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u19494_text {
  7373. border-width:0px;
  7374. white-space:nowrap;
  7375. text-transform:none;
  7376. }
  7377. #u19495_div {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:49px;
  7383. height:17px;
  7384. background:inherit;
  7385. background-color:rgba(255, 255, 255, 0);
  7386. border:none;
  7387. border-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:12px;
  7395. color:#AAAAAA;
  7396. }
  7397. #u19495 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:143px;
  7401. top:316px;
  7402. width:49px;
  7403. height:17px;
  7404. display:flex;
  7405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:12px;
  7409. color:#AAAAAA;
  7410. }
  7411. #u19495 .text {
  7412. position:absolute;
  7413. align-self:flex-start;
  7414. padding:0px 0px 0px 0px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u19495_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }
  7423. #u19496_img {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:201px;
  7429. height:2px;
  7430. }
  7431. #u19496 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:120px;
  7435. top:296px;
  7436. width:200px;
  7437. height:1px;
  7438. display:flex;
  7439. }
  7440. #u19496 .text {
  7441. position:absolute;
  7442. align-self:center;
  7443. padding:2px 2px 2px 2px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u19496_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. visibility:hidden;
  7452. }
  7453. #u19497_div {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:379px;
  7459. height:20px;
  7460. background:inherit;
  7461. background-color:rgba(255, 255, 255, 0);
  7462. border:none;
  7463. border-left:0px;
  7464. border-top:0px;
  7465. border-right:0px;
  7466. border-radius:0px;
  7467. border-bottom-right-radius:0px;
  7468. border-bottom-left-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:14px;
  7476. color:#7F7F7F;
  7477. }
  7478. #u19497 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:352px;
  7482. top:100px;
  7483. width:379px;
  7484. height:20px;
  7485. display:flex;
  7486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7487. font-weight:400;
  7488. font-style:normal;
  7489. font-size:14px;
  7490. color:#7F7F7F;
  7491. }
  7492. #u19497 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u19497_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u19499 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:0px;
  7510. height:0px;
  7511. }
  7512. #u19500_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:30px;
  7518. height:30px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 1);
  7521. box-sizing:border-box;
  7522. border-width:1px;
  7523. border-style:solid;
  7524. border-color:rgba(228, 228, 228, 1);
  7525. border-radius:4px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'Microsoft YaHei', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. }
  7534. #u19500 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:996px;
  7538. top:1183px;
  7539. width:30px;
  7540. height:30px;
  7541. display:flex;
  7542. font-family:'Microsoft YaHei', sans-serif;
  7543. font-weight:400;
  7544. font-style:normal;
  7545. font-size:14px;
  7546. }
  7547. #u19500 .text {
  7548. position:absolute;
  7549. align-self:center;
  7550. padding:2px 2px 2px 2px;
  7551. box-sizing:border-box;
  7552. width:100%;
  7553. }
  7554. #u19500_text {
  7555. border-width:0px;
  7556. word-wrap:break-word;
  7557. text-transform:none;
  7558. }
  7559. #u19501_div {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:0px;
  7564. width:49px;
  7565. height:30px;
  7566. background:inherit;
  7567. background-color:rgba(255, 255, 255, 0);
  7568. box-sizing:border-box;
  7569. border-width:1px;
  7570. border-style:solid;
  7571. border-color:rgba(188, 188, 188, 1);
  7572. border-radius:4px;
  7573. -moz-box-shadow:none;
  7574. -webkit-box-shadow:none;
  7575. box-shadow:none;
  7576. font-family:'Microsoft YaHei', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:14px;
  7580. color:#1E1E1E;
  7581. }
  7582. #u19501 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:1512px;
  7586. top:1183px;
  7587. width:49px;
  7588. height:30px;
  7589. display:flex;
  7590. font-family:'Microsoft YaHei', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:14px;
  7594. color:#1E1E1E;
  7595. }
  7596. #u19501 .text {
  7597. position:absolute;
  7598. align-self:center;
  7599. padding:5px 10px 5px 10px;
  7600. box-sizing:border-box;
  7601. width:100%;
  7602. }
  7603. #u19501_text {
  7604. border-width:0px;
  7605. white-space:nowrap;
  7606. text-transform:none;
  7607. }
  7608. #u19502 {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:0px;
  7614. height:0px;
  7615. }
  7616. #u19503_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:33px;
  7622. height:24px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 1);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:14px;
  7634. color:#BCBCBC;
  7635. text-align:left;
  7636. }
  7637. #u19503 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1280px;
  7641. top:1186px;
  7642. width:33px;
  7643. height:24px;
  7644. display:flex;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:14px;
  7649. color:#BCBCBC;
  7650. text-align:left;
  7651. }
  7652. #u19503 .text {
  7653. position:absolute;
  7654. align-self:center;
  7655. padding:2px 2px 2px 2px;
  7656. box-sizing:border-box;
  7657. width:100%;
  7658. }
  7659. #u19503_text {
  7660. border-width:0px;
  7661. white-space:nowrap;
  7662. text-transform:none;
  7663. }
  7664. #u19504_div {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:40px;
  7670. height:30px;
  7671. background:inherit;
  7672. background-color:rgba(255, 255, 255, 1);
  7673. box-sizing:border-box;
  7674. border-width:1px;
  7675. border-style:solid;
  7676. border-color:rgba(228, 228, 228, 1);
  7677. border-radius:4px;
  7678. -moz-box-shadow:none;
  7679. -webkit-box-shadow:none;
  7680. box-shadow:none;
  7681. font-family:'Microsoft YaHei', sans-serif;
  7682. font-weight:400;
  7683. font-style:normal;
  7684. font-size:14px;
  7685. }
  7686. #u19504 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:1315px;
  7690. top:1183px;
  7691. width:40px;
  7692. height:30px;
  7693. display:flex;
  7694. font-family:'Microsoft YaHei', sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:14px;
  7698. }
  7699. #u19504 .text {
  7700. position:absolute;
  7701. align-self:center;
  7702. padding:2px 2px 2px 2px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u19504_text {
  7707. border-width:0px;
  7708. word-wrap:break-word;
  7709. text-transform:none;
  7710. visibility:hidden;
  7711. }
  7712. #u19505_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:19px;
  7718. height:24px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 1);
  7721. border:none;
  7722. border-radius:0px;
  7723. -moz-box-shadow:none;
  7724. -webkit-box-shadow:none;
  7725. box-shadow:none;
  7726. font-family:'Microsoft YaHei', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:14px;
  7730. color:#BCBCBC;
  7731. text-align:left;
  7732. }
  7733. #u19505 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:1357px;
  7737. top:1187px;
  7738. width:19px;
  7739. height:24px;
  7740. display:flex;
  7741. font-family:'Microsoft YaHei', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. color:#BCBCBC;
  7746. text-align:left;
  7747. }
  7748. #u19505 .text {
  7749. position:absolute;
  7750. align-self:center;
  7751. padding:2px 2px 2px 2px;
  7752. box-sizing:border-box;
  7753. width:100%;
  7754. }
  7755. #u19505_text {
  7756. border-width:0px;
  7757. white-space:nowrap;
  7758. text-transform:none;
  7759. }
  7760. #u19506_input {
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:34px;
  7765. height:25px;
  7766. padding:2px 2px 2px 2px;
  7767. font-family:'Microsoft YaHei', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. font-size:13px;
  7771. letter-spacing:normal;
  7772. color:#000000;
  7773. vertical-align:none;
  7774. text-align:left;
  7775. text-transform:none;
  7776. background-color:transparent;
  7777. border-color:transparent;
  7778. }
  7779. #u19506_input.disabled {
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:34px;
  7784. height:25px;
  7785. padding:2px 2px 2px 2px;
  7786. font-family:'Microsoft YaHei', sans-serif;
  7787. font-weight:400;
  7788. font-style:normal;
  7789. font-size:13px;
  7790. letter-spacing:normal;
  7791. color:#000000;
  7792. vertical-align:none;
  7793. text-align:left;
  7794. text-transform:none;
  7795. background-color:transparent;
  7796. border-color:transparent;
  7797. }
  7798. #u19506_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:34px;
  7804. height:25px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 1);
  7807. border:none;
  7808. border-radius:0px;
  7809. -moz-box-shadow:none;
  7810. -webkit-box-shadow:none;
  7811. box-shadow:none;
  7812. font-family:'Microsoft YaHei', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. }
  7816. #u19506 {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:1318px;
  7820. top:1185px;
  7821. width:34px;
  7822. height:25px;
  7823. display:flex;
  7824. font-family:'Microsoft YaHei', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. }
  7828. #u19506 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 2px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u19506_div.disabled {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:34px;
  7841. height:25px;
  7842. background:inherit;
  7843. background-color:rgba(240, 240, 240, 1);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'Microsoft YaHei', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. }
  7853. #u19506.disabled {
  7854. }
  7855. #u19507_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:30px;
  7861. height:30px;
  7862. background:inherit;
  7863. background-color:rgba(41, 143, 255, 1);
  7864. border:none;
  7865. border-radius:4px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'Microsoft YaHei', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:14px;
  7873. color:#FFFFFF;
  7874. }
  7875. #u19507 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:1030px;
  7879. top:1183px;
  7880. width:30px;
  7881. height:30px;
  7882. display:flex;
  7883. font-family:'Microsoft YaHei', sans-serif;
  7884. font-weight:400;
  7885. font-style:normal;
  7886. font-size:14px;
  7887. color:#FFFFFF;
  7888. }
  7889. #u19507 .text {
  7890. position:absolute;
  7891. align-self:center;
  7892. padding:2px 2px 2px 2px;
  7893. box-sizing:border-box;
  7894. width:100%;
  7895. }
  7896. #u19507_text {
  7897. border-width:0px;
  7898. word-wrap:break-word;
  7899. text-transform:none;
  7900. }
  7901. #u19508_div {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:30px;
  7907. height:30px;
  7908. background:inherit;
  7909. background-color:rgba(255, 255, 255, 1);
  7910. box-sizing:border-box;
  7911. border-width:1px;
  7912. border-style:solid;
  7913. border-color:rgba(228, 228, 228, 1);
  7914. border-radius:4px;
  7915. -moz-box-shadow:none;
  7916. -webkit-box-shadow:none;
  7917. box-shadow:none;
  7918. font-family:'Microsoft YaHei', sans-serif;
  7919. font-weight:400;
  7920. font-style:normal;
  7921. font-size:14px;
  7922. }
  7923. #u19508 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:1064px;
  7927. top:1183px;
  7928. width:30px;
  7929. height:30px;
  7930. display:flex;
  7931. font-family:'Microsoft YaHei', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:14px;
  7935. }
  7936. #u19508 .text {
  7937. position:absolute;
  7938. align-self:center;
  7939. padding:2px 2px 2px 2px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u19508_text {
  7944. border-width:0px;
  7945. word-wrap:break-word;
  7946. text-transform:none;
  7947. }
  7948. #u19509_div {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:30px;
  7954. height:30px;
  7955. background:inherit;
  7956. background-color:rgba(255, 255, 255, 1);
  7957. box-sizing:border-box;
  7958. border-width:1px;
  7959. border-style:solid;
  7960. border-color:rgba(228, 228, 228, 1);
  7961. border-radius:4px;
  7962. -moz-box-shadow:none;
  7963. -webkit-box-shadow:none;
  7964. box-shadow:none;
  7965. font-family:'Microsoft YaHei', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:14px;
  7969. }
  7970. #u19509 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:1098px;
  7974. top:1183px;
  7975. width:30px;
  7976. height:30px;
  7977. display:flex;
  7978. font-family:'Microsoft YaHei', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:14px;
  7982. }
  7983. #u19509 .text {
  7984. position:absolute;
  7985. align-self:center;
  7986. padding:2px 2px 2px 2px;
  7987. box-sizing:border-box;
  7988. width:100%;
  7989. }
  7990. #u19509_text {
  7991. border-width:0px;
  7992. word-wrap:break-word;
  7993. text-transform:none;
  7994. }
  7995. #u19510_div {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:0px;
  7999. top:0px;
  8000. width:30px;
  8001. height:30px;
  8002. background:inherit;
  8003. background-color:rgba(255, 255, 255, 1);
  8004. border:none;
  8005. border-radius:4px;
  8006. -moz-box-shadow:none;
  8007. -webkit-box-shadow:none;
  8008. box-shadow:none;
  8009. font-family:'Microsoft YaHei', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:14px;
  8013. }
  8014. #u19510 {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:1128px;
  8018. top:1183px;
  8019. width:30px;
  8020. height:30px;
  8021. display:flex;
  8022. font-family:'Microsoft YaHei', sans-serif;
  8023. font-weight:400;
  8024. font-style:normal;
  8025. font-size:14px;
  8026. }
  8027. #u19510 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:2px 2px 2px 2px;
  8031. box-sizing:border-box;
  8032. width:100%;
  8033. }
  8034. #u19510_text {
  8035. border-width:0px;
  8036. word-wrap:break-word;
  8037. text-transform:none;
  8038. }
  8039. #u19511_div {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:30px;
  8045. height:30px;
  8046. background:inherit;
  8047. background-color:rgba(255, 255, 255, 1);
  8048. box-sizing:border-box;
  8049. border-width:1px;
  8050. border-style:solid;
  8051. border-color:rgba(228, 228, 228, 1);
  8052. border-radius:4px;
  8053. -moz-box-shadow:none;
  8054. -webkit-box-shadow:none;
  8055. box-shadow:none;
  8056. font-family:'Microsoft YaHei', sans-serif;
  8057. font-weight:400;
  8058. font-style:normal;
  8059. font-size:14px;
  8060. }
  8061. #u19511 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:1162px;
  8065. top:1183px;
  8066. width:30px;
  8067. height:30px;
  8068. display:flex;
  8069. font-family:'Microsoft YaHei', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:14px;
  8073. }
  8074. #u19511 .text {
  8075. position:absolute;
  8076. align-self:center;
  8077. padding:2px 2px 2px 2px;
  8078. box-sizing:border-box;
  8079. width:100%;
  8080. }
  8081. #u19511_text {
  8082. border-width:0px;
  8083. word-wrap:break-word;
  8084. text-transform:none;
  8085. }
  8086. #u19512_div {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:0px;
  8090. top:0px;
  8091. width:32px;
  8092. height:21px;
  8093. background:inherit;
  8094. background-color:rgba(255, 255, 255, 1);
  8095. border:none;
  8096. border-radius:15px;
  8097. -moz-box-shadow:none;
  8098. -webkit-box-shadow:none;
  8099. box-shadow:none;
  8100. font-family:'Microsoft YaHei', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:14px;
  8104. color:#1E1E1E;
  8105. }
  8106. #u19512 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:1236px;
  8110. top:1188px;
  8111. width:32px;
  8112. height:21px;
  8113. display:flex;
  8114. font-family:'Microsoft YaHei', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:14px;
  8118. color:#1E1E1E;
  8119. }
  8120. #u19512 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:2px 2px 2px 2px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u19512_text {
  8128. border-width:0px;
  8129. white-space:nowrap;
  8130. text-transform:none;
  8131. }
  8132. #u19513 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u19514_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:31px;
  8146. height:30px;
  8147. background:inherit;
  8148. background-color:rgba(255, 255, 255, 1);
  8149. box-sizing:border-box;
  8150. border-width:1px;
  8151. border-style:solid;
  8152. border-color:rgba(228, 228, 228, 1);
  8153. border-radius:4px;
  8154. -moz-box-shadow:none;
  8155. -webkit-box-shadow:none;
  8156. box-shadow:none;
  8157. font-family:'Microsoft YaHei', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:12px;
  8161. }
  8162. #u19514 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:961px;
  8166. top:1183px;
  8167. width:31px;
  8168. height:30px;
  8169. display:flex;
  8170. font-family:'Microsoft YaHei', sans-serif;
  8171. font-weight:400;
  8172. font-style:normal;
  8173. font-size:12px;
  8174. }
  8175. #u19514 .text {
  8176. position:absolute;
  8177. align-self:center;
  8178. padding:2px 2px 2px 2px;
  8179. box-sizing:border-box;
  8180. width:100%;
  8181. }
  8182. #u19514_text {
  8183. border-width:0px;
  8184. word-wrap:break-word;
  8185. text-transform:none;
  8186. visibility:hidden;
  8187. }
  8188. #u19515_img {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:0px;
  8192. top:0px;
  8193. width:8px;
  8194. height:14px;
  8195. }
  8196. #u19515 {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:973px;
  8200. top:1191px;
  8201. width:8px;
  8202. height:14px;
  8203. display:flex;
  8204. font-family:'Microsoft YaHei', sans-serif;
  8205. font-weight:400;
  8206. font-style:normal;
  8207. font-size:12px;
  8208. }
  8209. #u19515 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:2px 2px 2px 2px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u19515_text {
  8217. border-width:0px;
  8218. word-wrap:break-word;
  8219. text-transform:none;
  8220. visibility:hidden;
  8221. }
  8222. #u19516 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:0px;
  8228. height:0px;
  8229. }
  8230. #u19517_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:31px;
  8236. height:30px;
  8237. background:inherit;
  8238. background-color:rgba(255, 255, 255, 1);
  8239. box-sizing:border-box;
  8240. border-width:1px;
  8241. border-style:solid;
  8242. border-color:rgba(228, 228, 228, 1);
  8243. border-radius:4px;
  8244. -moz-box-shadow:none;
  8245. -webkit-box-shadow:none;
  8246. box-shadow:none;
  8247. font-family:'Microsoft YaHei', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:12px;
  8251. }
  8252. #u19517 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:1195px;
  8256. top:1183px;
  8257. width:31px;
  8258. height:30px;
  8259. display:flex;
  8260. font-family:'Microsoft YaHei', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:12px;
  8264. }
  8265. #u19517 .text {
  8266. position:absolute;
  8267. align-self:center;
  8268. padding:2px 2px 2px 2px;
  8269. box-sizing:border-box;
  8270. width:100%;
  8271. }
  8272. #u19517_text {
  8273. border-width:0px;
  8274. word-wrap:break-word;
  8275. text-transform:none;
  8276. visibility:hidden;
  8277. }
  8278. #u19518_img {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:8px;
  8284. height:14px;
  8285. }
  8286. #u19518 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:1208px;
  8290. top:1191px;
  8291. width:8px;
  8292. height:14px;
  8293. display:flex;
  8294. font-family:'Microsoft YaHei', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:12px;
  8298. }
  8299. #u19518 .text {
  8300. position:absolute;
  8301. align-self:center;
  8302. padding:2px 2px 2px 2px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u19518_text {
  8307. border-width:0px;
  8308. word-wrap:break-word;
  8309. text-transform:none;
  8310. visibility:hidden;
  8311. }
  8312. #u19519 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:0px;
  8318. height:0px;
  8319. }
  8320. #u19520_div {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:33px;
  8326. height:24px;
  8327. background:inherit;
  8328. background-color:rgba(255, 255, 255, 1);
  8329. border:none;
  8330. border-radius:0px;
  8331. -moz-box-shadow:none;
  8332. -webkit-box-shadow:none;
  8333. box-shadow:none;
  8334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:14px;
  8338. color:#BCBCBC;
  8339. text-align:left;
  8340. }
  8341. #u19520 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1396px;
  8345. top:1186px;
  8346. width:33px;
  8347. height:24px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. color:#BCBCBC;
  8354. text-align:left;
  8355. }
  8356. #u19520 .text {
  8357. position:absolute;
  8358. align-self:center;
  8359. padding:2px 2px 2px 2px;
  8360. box-sizing:border-box;
  8361. width:100%;
  8362. }
  8363. #u19520_text {
  8364. border-width:0px;
  8365. white-space:nowrap;
  8366. text-transform:none;
  8367. }
  8368. #u19521_div {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:40px;
  8374. height:30px;
  8375. background:inherit;
  8376. background-color:rgba(255, 255, 255, 1);
  8377. box-sizing:border-box;
  8378. border-width:1px;
  8379. border-style:solid;
  8380. border-color:rgba(228, 228, 228, 1);
  8381. border-radius:4px;
  8382. -moz-box-shadow:none;
  8383. -webkit-box-shadow:none;
  8384. box-shadow:none;
  8385. font-family:'Microsoft YaHei', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. }
  8390. #u19521 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:1431px;
  8394. top:1183px;
  8395. width:40px;
  8396. height:30px;
  8397. display:flex;
  8398. font-family:'Microsoft YaHei', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:14px;
  8402. }
  8403. #u19521 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 2px 2px 2px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u19521_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. visibility:hidden;
  8415. }
  8416. #u19522_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:19px;
  8422. height:24px;
  8423. background:inherit;
  8424. background-color:rgba(255, 255, 255, 1);
  8425. border:none;
  8426. border-radius:0px;
  8427. -moz-box-shadow:none;
  8428. -webkit-box-shadow:none;
  8429. box-shadow:none;
  8430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:14px;
  8434. color:#BCBCBC;
  8435. text-align:left;
  8436. }
  8437. #u19522 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:1473px;
  8441. top:1187px;
  8442. width:19px;
  8443. height:24px;
  8444. display:flex;
  8445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:14px;
  8449. color:#BCBCBC;
  8450. text-align:left;
  8451. }
  8452. #u19522 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 2px 2px 2px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u19522_text {
  8460. border-width:0px;
  8461. white-space:nowrap;
  8462. text-transform:none;
  8463. }
  8464. #u19523_input {
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:34px;
  8469. height:25px;
  8470. padding:2px 2px 2px 2px;
  8471. font-family:'Microsoft YaHei', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:13px;
  8475. letter-spacing:normal;
  8476. color:#000000;
  8477. vertical-align:none;
  8478. text-align:left;
  8479. text-transform:none;
  8480. background-color:transparent;
  8481. border-color:transparent;
  8482. }
  8483. #u19523_input.disabled {
  8484. position:absolute;
  8485. left:0px;
  8486. top:0px;
  8487. width:34px;
  8488. height:25px;
  8489. padding:2px 2px 2px 2px;
  8490. font-family:'Microsoft YaHei', sans-serif;
  8491. font-weight:400;
  8492. font-style:normal;
  8493. font-size:13px;
  8494. letter-spacing:normal;
  8495. color:#000000;
  8496. vertical-align:none;
  8497. text-align:left;
  8498. text-transform:none;
  8499. background-color:transparent;
  8500. border-color:transparent;
  8501. }
  8502. #u19523_div {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:34px;
  8508. height:25px;
  8509. background:inherit;
  8510. background-color:rgba(255, 255, 255, 1);
  8511. border:none;
  8512. border-radius:0px;
  8513. -moz-box-shadow:none;
  8514. -webkit-box-shadow:none;
  8515. box-shadow:none;
  8516. font-family:'Microsoft YaHei', sans-serif;
  8517. font-weight:400;
  8518. font-style:normal;
  8519. }
  8520. #u19523 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:1434px;
  8524. top:1185px;
  8525. width:34px;
  8526. height:25px;
  8527. display:flex;
  8528. font-family:'Microsoft YaHei', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. }
  8532. #u19523 .text {
  8533. position:absolute;
  8534. align-self:center;
  8535. padding:2px 2px 2px 2px;
  8536. box-sizing:border-box;
  8537. width:100%;
  8538. }
  8539. #u19523_div.disabled {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:34px;
  8545. height:25px;
  8546. background:inherit;
  8547. background-color:rgba(240, 240, 240, 1);
  8548. border:none;
  8549. border-radius:0px;
  8550. -moz-box-shadow:none;
  8551. -webkit-box-shadow:none;
  8552. box-shadow:none;
  8553. font-family:'Microsoft YaHei', sans-serif;
  8554. font-weight:400;
  8555. font-style:normal;
  8556. }
  8557. #u19523.disabled {
  8558. }
  8559. #u19524_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:55px;
  8565. height:30px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 1);
  8568. box-sizing:border-box;
  8569. border-width:1px;
  8570. border-style:solid;
  8571. border-color:rgba(170, 170, 170, 1);
  8572. border-radius:4px;
  8573. -moz-box-shadow:none;
  8574. -webkit-box-shadow:none;
  8575. box-shadow:none;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:12px;
  8580. color:#555555;
  8581. }
  8582. #u19524 {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:511px;
  8586. top:189px;
  8587. width:55px;
  8588. height:30px;
  8589. display:flex;
  8590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:12px;
  8594. color:#555555;
  8595. }
  8596. #u19524 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:5px 15px 5px 15px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u19524_text {
  8604. border-width:0px;
  8605. white-space:nowrap;
  8606. text-transform:none;
  8607. }
  8608. #u19525_div {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:59px;
  8614. height:30px;
  8615. background:inherit;
  8616. background-color:rgba(255, 255, 255, 1);
  8617. box-sizing:border-box;
  8618. border-width:1px;
  8619. border-style:solid;
  8620. border-color:rgba(170, 170, 170, 1);
  8621. border-radius:4px;
  8622. -moz-box-shadow:none;
  8623. -webkit-box-shadow:none;
  8624. box-shadow:none;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:14px;
  8629. color:#555555;
  8630. }
  8631. #u19525 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:442px;
  8635. top:189px;
  8636. width:59px;
  8637. height:30px;
  8638. display:flex;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:14px;
  8643. color:#555555;
  8644. }
  8645. #u19525 .text {
  8646. position:absolute;
  8647. align-self:center;
  8648. padding:5px 15px 5px 15px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u19525_text {
  8653. border-width:0px;
  8654. white-space:nowrap;
  8655. text-transform:none;
  8656. }
  8657. #u19526 {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:0px;
  8661. top:0px;
  8662. width:0px;
  8663. height:0px;
  8664. }
  8665. #u19527_div {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:140px;
  8671. height:30px;
  8672. background:inherit;
  8673. background-color:rgba(255, 255, 255, 1);
  8674. box-sizing:border-box;
  8675. border-width:1px;
  8676. border-style:solid;
  8677. border-color:rgba(215, 215, 215, 1);
  8678. border-radius:4px;
  8679. -moz-box-shadow:none;
  8680. -webkit-box-shadow:none;
  8681. box-shadow:none;
  8682. font-size:14px;
  8683. }
  8684. #u19527 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:953px;
  8688. top:140px;
  8689. width:140px;
  8690. height:30px;
  8691. display:flex;
  8692. font-size:14px;
  8693. }
  8694. #u19527 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:2px 2px 2px 2px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u19527_text {
  8702. border-width:0px;
  8703. word-wrap:break-word;
  8704. text-transform:none;
  8705. visibility:hidden;
  8706. }
  8707. #u19528_input {
  8708. position:absolute;
  8709. left:0px;
  8710. top:0px;
  8711. width:134px;
  8712. height:23px;
  8713. padding:2px 2px 2px 2px;
  8714. font-family:'ArialMT', 'Arial', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:14px;
  8718. letter-spacing:normal;
  8719. color:#AAAAAA;
  8720. vertical-align:none;
  8721. text-align:left;
  8722. text-transform:none;
  8723. background-color:transparent;
  8724. border-color:transparent;
  8725. }
  8726. #u19528_input.disabled {
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:134px;
  8731. height:23px;
  8732. padding:2px 2px 2px 2px;
  8733. font-family:'ArialMT', 'Arial', sans-serif;
  8734. font-weight:400;
  8735. font-style:normal;
  8736. font-size:14px;
  8737. letter-spacing:normal;
  8738. color:#AAAAAA;
  8739. vertical-align:none;
  8740. text-align:left;
  8741. text-transform:none;
  8742. background-color:transparent;
  8743. border-color:transparent;
  8744. }
  8745. #u19528_div {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:0px;
  8749. top:0px;
  8750. width:134px;
  8751. height:23px;
  8752. background:inherit;
  8753. background-color:rgba(255, 255, 255, 1);
  8754. border:none;
  8755. border-radius:0px;
  8756. -moz-box-shadow:none;
  8757. -webkit-box-shadow:none;
  8758. box-shadow:none;
  8759. font-size:14px;
  8760. color:#AAAAAA;
  8761. }
  8762. #u19528 {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:957px;
  8766. top:142px;
  8767. width:134px;
  8768. height:23px;
  8769. display:flex;
  8770. font-size:14px;
  8771. color:#AAAAAA;
  8772. }
  8773. #u19528 .text {
  8774. position:absolute;
  8775. align-self:flex-start;
  8776. padding:2px 2px 2px 2px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u19528_div.disabled {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:0px;
  8784. top:0px;
  8785. width:134px;
  8786. height:23px;
  8787. background:inherit;
  8788. background-color:rgba(240, 240, 240, 1);
  8789. border:none;
  8790. border-radius:0px;
  8791. -moz-box-shadow:none;
  8792. -webkit-box-shadow:none;
  8793. box-shadow:none;
  8794. font-size:14px;
  8795. color:#AAAAAA;
  8796. }
  8797. #u19528.disabled {
  8798. }
  8799. .u19528_input_option {
  8800. font-size:14px;
  8801. }
  8802. #u19529 label {
  8803. left:0px;
  8804. width:100%;
  8805. }
  8806. #u19529_img {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:12px;
  8812. height:12px;
  8813. }
  8814. #u19529 {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:367px;
  8818. top:247px;
  8819. width:42px;
  8820. height:16px;
  8821. display:flex;
  8822. }
  8823. #u19529 .text {
  8824. position:absolute;
  8825. align-self:center;
  8826. padding:0px 2px 0px 2px;
  8827. box-sizing:border-box;
  8828. }
  8829. #u19529_img.selected {
  8830. }
  8831. #u19529.selected {
  8832. }
  8833. #u19529_img.disabled {
  8834. }
  8835. #u19529.disabled {
  8836. }
  8837. #u19529_img.selectedDisabled {
  8838. }
  8839. #u19529.selectedDisabled {
  8840. }
  8841. #u19529_text {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:14px;
  8845. top:0px;
  8846. width:26px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. visibility:hidden;
  8850. }
  8851. #u19529_input {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:0px;
  8857. height:0px;
  8858. opacity:0;
  8859. }
  8860. #u19530 label {
  8861. left:0px;
  8862. width:100%;
  8863. }
  8864. #u19530_img {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:12px;
  8870. height:12px;
  8871. }
  8872. #u19530 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:367px;
  8876. top:283px;
  8877. width:42px;
  8878. height:16px;
  8879. display:flex;
  8880. }
  8881. #u19530 .text {
  8882. position:absolute;
  8883. align-self:center;
  8884. padding:0px 2px 0px 2px;
  8885. box-sizing:border-box;
  8886. }
  8887. #u19530_img.selected {
  8888. }
  8889. #u19530.selected {
  8890. }
  8891. #u19530_img.disabled {
  8892. }
  8893. #u19530.disabled {
  8894. }
  8895. #u19530_img.selectedDisabled {
  8896. }
  8897. #u19530.selectedDisabled {
  8898. }
  8899. #u19530_text {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:14px;
  8903. top:0px;
  8904. width:26px;
  8905. word-wrap:break-word;
  8906. text-transform:none;
  8907. visibility:hidden;
  8908. }
  8909. #u19530_input {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:0px;
  8915. height:0px;
  8916. opacity:0;
  8917. }
  8918. #u19531 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:0px;
  8924. height:0px;
  8925. }
  8926. #u19532_div {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:140px;
  8932. height:30px;
  8933. background:inherit;
  8934. background-color:rgba(255, 255, 255, 1);
  8935. box-sizing:border-box;
  8936. border-width:1px;
  8937. border-style:solid;
  8938. border-color:rgba(215, 215, 215, 1);
  8939. border-radius:4px;
  8940. -moz-box-shadow:none;
  8941. -webkit-box-shadow:none;
  8942. box-shadow:none;
  8943. font-size:14px;
  8944. }
  8945. #u19532 {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:650px;
  8949. top:140px;
  8950. width:140px;
  8951. height:30px;
  8952. display:flex;
  8953. font-size:14px;
  8954. }
  8955. #u19532 .text {
  8956. position:absolute;
  8957. align-self:center;
  8958. padding:2px 2px 2px 2px;
  8959. box-sizing:border-box;
  8960. width:100%;
  8961. }
  8962. #u19532_text {
  8963. border-width:0px;
  8964. word-wrap:break-word;
  8965. text-transform:none;
  8966. visibility:hidden;
  8967. }
  8968. #u19533_input {
  8969. position:absolute;
  8970. left:0px;
  8971. top:0px;
  8972. width:134px;
  8973. height:23px;
  8974. padding:2px 2px 2px 2px;
  8975. font-family:'ArialMT', 'Arial', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:14px;
  8979. letter-spacing:normal;
  8980. color:#AAAAAA;
  8981. vertical-align:none;
  8982. text-align:left;
  8983. text-transform:none;
  8984. background-color:transparent;
  8985. border-color:transparent;
  8986. }
  8987. #u19533_input.disabled {
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:134px;
  8992. height:23px;
  8993. padding:2px 2px 2px 2px;
  8994. font-family:'ArialMT', 'Arial', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:14px;
  8998. letter-spacing:normal;
  8999. color:#AAAAAA;
  9000. vertical-align:none;
  9001. text-align:left;
  9002. text-transform:none;
  9003. background-color:transparent;
  9004. border-color:transparent;
  9005. }
  9006. #u19533_div {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:134px;
  9012. height:23px;
  9013. background:inherit;
  9014. background-color:rgba(255, 255, 255, 1);
  9015. border:none;
  9016. border-radius:0px;
  9017. -moz-box-shadow:none;
  9018. -webkit-box-shadow:none;
  9019. box-shadow:none;
  9020. font-size:14px;
  9021. color:#AAAAAA;
  9022. }
  9023. #u19533 {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:654px;
  9027. top:142px;
  9028. width:134px;
  9029. height:23px;
  9030. display:flex;
  9031. font-size:14px;
  9032. color:#AAAAAA;
  9033. }
  9034. #u19533 .text {
  9035. position:absolute;
  9036. align-self:flex-start;
  9037. padding:2px 2px 2px 2px;
  9038. box-sizing:border-box;
  9039. width:100%;
  9040. }
  9041. #u19533_div.disabled {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:134px;
  9047. height:23px;
  9048. background:inherit;
  9049. background-color:rgba(240, 240, 240, 1);
  9050. border:none;
  9051. border-radius:0px;
  9052. -moz-box-shadow:none;
  9053. -webkit-box-shadow:none;
  9054. box-shadow:none;
  9055. font-size:14px;
  9056. color:#AAAAAA;
  9057. }
  9058. #u19533.disabled {
  9059. }
  9060. .u19533_input_option {
  9061. font-size:14px;
  9062. }