styles.css 155 KB

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