styles.css 160 KB

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