styles.css 211 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2877px;
  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. #u18893_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. #u18893 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u18893 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u18893_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u18894_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. #u18894 {
  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. #u18894 .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. #u18894_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u18895_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. #u18895 {
  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. #u18895 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u18895_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u18896 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u18897_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u18897 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u18897 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u18897_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u18898_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. #u18898 {
  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. #u18898 .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. #u18898_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u18899_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. #u18899 {
  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. #u18899 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u18899_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u18900 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u18901_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u18901 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u18901 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u18901_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u18902_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u18902 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u18902 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u18902_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u18903 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u18904_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u18904 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u18904 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u18904_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u18905_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u18905 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u18905 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u18905_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u18906 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u18907_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u18907 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u18907 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u18907_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u18908_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u18908 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u18908 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u18908_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u18909 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u18910_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u18910 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u18910 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u18910_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u18911_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u18911 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u18911 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u18911_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u18912 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u18913_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u18913 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u18913 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u18913_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u18914_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u18914 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u18914 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u18914_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u18915 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u18916_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u18916 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u18916 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u18916_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u18917_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u18917 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u18917 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u18917_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u18918 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u18919_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u18919 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u18919 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u18919_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u18920_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u18920 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u18920 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u18920_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u18921 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u18922_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u18922 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u18922 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u18922_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u18923_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u18923 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u18923 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u18923_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u18924 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u18925_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u18925 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u18925 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u18925_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u18926_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u18926 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u18926 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u18926_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u18927 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u18928_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u18928 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u18928 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u18928_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u18929_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u18929 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u18929 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u18929_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u18930 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u18931_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u18931 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u18931 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u18931_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u18932_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u18932 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u18932 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u18932_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u18933 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u18934_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u18934_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u18934_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u18934 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u18934 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u18934_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u18934.disabled {
  1276. }
  1277. .u18934_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u18935_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u18935 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u18935 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u18935_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u18936_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u18936 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u18936 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u18936_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u18937_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u18937 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u18937 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u18937_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u18938 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u18939_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u18939 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u18939 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u18939_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u18940_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u18940 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u18940 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u18940_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u18941_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u18941 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u18941 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u18941_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u18942_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u18942 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u18942 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u18942_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u18943_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u18943 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u18943 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u18943_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u18944 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u18945_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u18945 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u18945 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u18945_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u18946_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u18946 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u18946 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u18946_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u18947_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1193px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u18947 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1193px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u18947 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u18947_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u18948_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:73px;
  1687. height:50px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. }
  1705. #u18948 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:348px;
  1709. top:50px;
  1710. width:73px;
  1711. height:50px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1714. font-weight:500;
  1715. font-style:normal;
  1716. font-size:18px;
  1717. }
  1718. #u18948 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u18948_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u18949_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:59px;
  1736. height:30px;
  1737. background:inherit;
  1738. background-color:rgba(245, 154, 35, 1);
  1739. border:none;
  1740. border-radius:4px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:14px;
  1748. color:#FFFFFF;
  1749. }
  1750. #u18949 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:350px;
  1754. top:230px;
  1755. width:59px;
  1756. height:30px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. color:#FFFFFF;
  1763. }
  1764. #u18949 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:5px 15px 5px 15px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u18949_text {
  1772. border-width:0px;
  1773. white-space:nowrap;
  1774. text-transform:none;
  1775. }
  1776. #u18950_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:80px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(24, 144, 255, 1);
  1785. border:none;
  1786. border-radius:4px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. color:#FFFFFF;
  1795. }
  1796. #u18950 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:1060px;
  1800. top:232px;
  1801. width:80px;
  1802. height:30px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u18950 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:5px 0px 5px 0px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u18950_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u18951_div {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:59px;
  1828. height:30px;
  1829. background:inherit;
  1830. background-color:rgba(24, 144, 255, 1);
  1831. border:none;
  1832. border-radius:4px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:14px;
  1840. color:#FFFFFF;
  1841. }
  1842. #u18951 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:419px;
  1846. top:230px;
  1847. width:59px;
  1848. height:30px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. color:#FFFFFF;
  1855. }
  1856. #u18951 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:5px 15px 5px 15px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u18951_text {
  1864. border-width:0px;
  1865. white-space:nowrap;
  1866. text-transform:none;
  1867. }
  1868. #u18952_div {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:59px;
  1874. height:30px;
  1875. background:inherit;
  1876. background-color:rgba(217, 0, 27, 1);
  1877. border:none;
  1878. border-radius:4px;
  1879. -moz-box-shadow:none;
  1880. -webkit-box-shadow:none;
  1881. box-shadow:none;
  1882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. font-size:14px;
  1886. color:#FFFFFF;
  1887. }
  1888. #u18952 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:488px;
  1892. top:230px;
  1893. width:59px;
  1894. height:30px;
  1895. display:flex;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:14px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u18952 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:5px 15px 5px 15px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u18952_text {
  1910. border-width:0px;
  1911. white-space:nowrap;
  1912. text-transform:none;
  1913. }
  1914. #u18953_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:411px;
  1920. height:904px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 1);
  1923. box-sizing:border-box;
  1924. border-width:1px;
  1925. border-style:solid;
  1926. border-color:rgba(170, 170, 170, 1);
  1927. border-radius:4px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. text-align:left;
  1935. }
  1936. #u18953 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:1163px;
  1940. top:307px;
  1941. width:411px;
  1942. height:904px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. text-align:left;
  1948. }
  1949. #u18953 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 10px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u18953_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. visibility:hidden;
  1961. }
  1962. #u18954_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:145px;
  1968. height:50px;
  1969. background:inherit;
  1970. background-color:rgba(255, 255, 255, 0);
  1971. border:none;
  1972. border-left:0px;
  1973. border-top:0px;
  1974. border-right:0px;
  1975. border-radius:0px;
  1976. border-bottom-right-radius:0px;
  1977. border-bottom-left-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1982. font-weight:500;
  1983. font-style:normal;
  1984. font-size:18px;
  1985. }
  1986. #u18954 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:1164px;
  1990. top:259px;
  1991. width:145px;
  1992. height:50px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1995. font-weight:500;
  1996. font-style:normal;
  1997. font-size:18px;
  1998. }
  1999. #u18954 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:0px 0px 0px 0px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u18954_text {
  2007. border-width:0px;
  2008. white-space:nowrap;
  2009. text-transform:none;
  2010. }
  2011. #u18955 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:0px;
  2017. height:0px;
  2018. }
  2019. #u18956 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1173px;
  2023. top:409px;
  2024. width:130px;
  2025. height:180px;
  2026. }
  2027. #u18956_children {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:0px;
  2033. height:0px;
  2034. }
  2035. #u18957 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:93px;
  2041. height:20px;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. }
  2046. #u18958_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:9px;
  2052. height:9px;
  2053. }
  2054. #u18958 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:6px;
  2058. top:6px;
  2059. width:9px;
  2060. height:9px;
  2061. display:flex;
  2062. }
  2063. #u18958 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u18958_img.selected {
  2071. }
  2072. #u18958.selected {
  2073. }
  2074. #u18958_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. visibility:hidden;
  2079. }
  2080. #u18959_div {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:71px;
  2086. height:20px;
  2087. background:inherit;
  2088. background-color:rgba(255, 255, 255, 0);
  2089. border:none;
  2090. border-radius:0px;
  2091. -moz-box-shadow:none;
  2092. -webkit-box-shadow:none;
  2093. box-shadow:none;
  2094. }
  2095. #u18959 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:22px;
  2099. top:0px;
  2100. width:71px;
  2101. height:20px;
  2102. display:flex;
  2103. }
  2104. #u18959 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:2px 2px 2px 3px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u18959_text {
  2112. border-width:0px;
  2113. white-space:nowrap;
  2114. text-transform:none;
  2115. }
  2116. #u18957_children {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:0px;
  2122. height:0px;
  2123. }
  2124. #u18960 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:20px;
  2128. top:20px;
  2129. width:92px;
  2130. height:20px;
  2131. }
  2132. #u18961_div {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:70px;
  2138. height:20px;
  2139. background:inherit;
  2140. background-color:rgba(255, 255, 255, 0);
  2141. border:none;
  2142. border-radius:0px;
  2143. -moz-box-shadow:none;
  2144. -webkit-box-shadow:none;
  2145. box-shadow:none;
  2146. }
  2147. #u18961 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:22px;
  2151. top:0px;
  2152. width:70px;
  2153. height:20px;
  2154. display:flex;
  2155. }
  2156. #u18961 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 3px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u18961_text {
  2164. border-width:0px;
  2165. white-space:nowrap;
  2166. text-transform:none;
  2167. }
  2168. #u18962 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:20px;
  2172. top:40px;
  2173. width:92px;
  2174. height:20px;
  2175. }
  2176. #u18963_div {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:70px;
  2182. height:20px;
  2183. background:inherit;
  2184. background-color:rgba(255, 255, 255, 0);
  2185. border:none;
  2186. border-radius:0px;
  2187. -moz-box-shadow:none;
  2188. -webkit-box-shadow:none;
  2189. box-shadow:none;
  2190. }
  2191. #u18963 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:22px;
  2195. top:0px;
  2196. width:70px;
  2197. height:20px;
  2198. display:flex;
  2199. }
  2200. #u18963 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 3px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u18963_text {
  2208. border-width:0px;
  2209. white-space:nowrap;
  2210. text-transform:none;
  2211. }
  2212. #u18964 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:20px;
  2216. top:60px;
  2217. width:92px;
  2218. height:20px;
  2219. }
  2220. #u18965_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:70px;
  2226. height:20px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-radius:0px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. }
  2235. #u18965 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:22px;
  2239. top:0px;
  2240. width:70px;
  2241. height:20px;
  2242. display:flex;
  2243. }
  2244. #u18965 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 3px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u18965_text {
  2252. border-width:0px;
  2253. white-space:nowrap;
  2254. text-transform:none;
  2255. }
  2256. #u18966 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:80px;
  2261. width:93px;
  2262. height:20px;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. }
  2267. #u18967_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:9px;
  2273. height:9px;
  2274. }
  2275. #u18967 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:6px;
  2279. top:6px;
  2280. width:9px;
  2281. height:9px;
  2282. display:flex;
  2283. }
  2284. #u18967 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u18967_img.selected {
  2292. }
  2293. #u18967.selected {
  2294. }
  2295. #u18967_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u18968_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:71px;
  2307. height:20px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 0);
  2310. border:none;
  2311. border-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. }
  2316. #u18968 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:22px;
  2320. top:0px;
  2321. width:71px;
  2322. height:20px;
  2323. display:flex;
  2324. }
  2325. #u18968 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 3px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u18968_text {
  2333. border-width:0px;
  2334. white-space:nowrap;
  2335. text-transform:none;
  2336. }
  2337. #u18966_children {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:0px;
  2343. height:0px;
  2344. }
  2345. #u18969 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:20px;
  2349. top:20px;
  2350. width:110px;
  2351. height:20px;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. }
  2356. #u18970_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:88px;
  2362. height:20px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 0);
  2365. border:none;
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. }
  2371. #u18970 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:22px;
  2375. top:0px;
  2376. width:88px;
  2377. height:20px;
  2378. display:flex;
  2379. }
  2380. #u18970 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 3px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u18970_text {
  2388. border-width:0px;
  2389. white-space:nowrap;
  2390. text-transform:none;
  2391. }
  2392. #u18971 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:20px;
  2396. top:40px;
  2397. width:110px;
  2398. height:20px;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. }
  2403. #u18972_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:88px;
  2409. height:20px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border:none;
  2413. border-radius:0px;
  2414. -moz-box-shadow:none;
  2415. -webkit-box-shadow:none;
  2416. box-shadow:none;
  2417. }
  2418. #u18972 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:22px;
  2422. top:0px;
  2423. width:88px;
  2424. height:20px;
  2425. display:flex;
  2426. }
  2427. #u18972 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 3px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u18972_text {
  2435. border-width:0px;
  2436. white-space:nowrap;
  2437. text-transform:none;
  2438. }
  2439. #u18973 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:140px;
  2444. width:93px;
  2445. height:20px;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. }
  2450. #u18974_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:9px;
  2456. height:9px;
  2457. }
  2458. #u18974 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:6px;
  2462. top:6px;
  2463. width:9px;
  2464. height:9px;
  2465. display:flex;
  2466. }
  2467. #u18974 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u18974_img.selected {
  2475. }
  2476. #u18974.selected {
  2477. }
  2478. #u18974_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. visibility:hidden;
  2483. }
  2484. #u18975_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:71px;
  2490. height:20px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 255, 0);
  2493. border:none;
  2494. border-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. }
  2499. #u18975 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:22px;
  2503. top:0px;
  2504. width:71px;
  2505. height:20px;
  2506. display:flex;
  2507. }
  2508. #u18975 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 3px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u18975_text {
  2516. border-width:0px;
  2517. white-space:nowrap;
  2518. text-transform:none;
  2519. }
  2520. #u18973_children {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:0px;
  2526. height:0px;
  2527. }
  2528. #u18976 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:20px;
  2532. top:20px;
  2533. width:110px;
  2534. height:20px;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. }
  2539. #u18977_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:88px;
  2545. height:20px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 0);
  2548. border:none;
  2549. border-radius:0px;
  2550. -moz-box-shadow:none;
  2551. -webkit-box-shadow:none;
  2552. box-shadow:none;
  2553. }
  2554. #u18977 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:22px;
  2558. top:0px;
  2559. width:88px;
  2560. height:20px;
  2561. display:flex;
  2562. }
  2563. #u18977 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 3px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u18977_text {
  2571. border-width:0px;
  2572. white-space:nowrap;
  2573. text-transform:none;
  2574. }
  2575. #u18978 label {
  2576. left:0px;
  2577. width:100%;
  2578. }
  2579. #u18978_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:12px;
  2585. height:12px;
  2586. }
  2587. #u18978 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:1215px;
  2591. top:434px;
  2592. width:43px;
  2593. height:16px;
  2594. display:flex;
  2595. }
  2596. #u18978 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:0px 2px 0px 2px;
  2600. box-sizing:border-box;
  2601. }
  2602. #u18978_img.selected {
  2603. }
  2604. #u18978.selected {
  2605. }
  2606. #u18978_img.disabled {
  2607. }
  2608. #u18978.disabled {
  2609. }
  2610. #u18978_img.selectedDisabled {
  2611. }
  2612. #u18978.selectedDisabled {
  2613. }
  2614. #u18978_text {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:14px;
  2618. top:0px;
  2619. width:27px;
  2620. word-wrap:break-word;
  2621. text-transform:none;
  2622. visibility:hidden;
  2623. }
  2624. #u18978_input {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:0px;
  2630. height:0px;
  2631. opacity:0;
  2632. }
  2633. #u18979 label {
  2634. left:0px;
  2635. width:100%;
  2636. }
  2637. #u18979_img {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:12px;
  2643. height:12px;
  2644. }
  2645. #u18979 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:1215px;
  2649. top:454px;
  2650. width:43px;
  2651. height:16px;
  2652. display:flex;
  2653. }
  2654. #u18979 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:0px 2px 0px 2px;
  2658. box-sizing:border-box;
  2659. }
  2660. #u18979_img.selected {
  2661. }
  2662. #u18979.selected {
  2663. }
  2664. #u18979_img.disabled {
  2665. }
  2666. #u18979.disabled {
  2667. }
  2668. #u18979_img.selectedDisabled {
  2669. }
  2670. #u18979.selectedDisabled {
  2671. }
  2672. #u18979_text {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:14px;
  2676. top:0px;
  2677. width:27px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u18979_input {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:0px;
  2688. height:0px;
  2689. opacity:0;
  2690. }
  2691. #u18980 label {
  2692. left:0px;
  2693. width:100%;
  2694. }
  2695. #u18980_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:12px;
  2701. height:12px;
  2702. }
  2703. #u18980 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:1215px;
  2707. top:475px;
  2708. width:43px;
  2709. height:16px;
  2710. display:flex;
  2711. }
  2712. #u18980 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:0px 2px 0px 2px;
  2716. box-sizing:border-box;
  2717. }
  2718. #u18980_img.selected {
  2719. }
  2720. #u18980.selected {
  2721. }
  2722. #u18980_img.disabled {
  2723. }
  2724. #u18980.disabled {
  2725. }
  2726. #u18980_img.selectedDisabled {
  2727. }
  2728. #u18980.selectedDisabled {
  2729. }
  2730. #u18980_text {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:14px;
  2734. top:0px;
  2735. width:27px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u18980_input {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:0px;
  2746. height:0px;
  2747. opacity:0;
  2748. }
  2749. #u18981 label {
  2750. left:0px;
  2751. width:100%;
  2752. }
  2753. #u18981_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:12px;
  2759. height:12px;
  2760. }
  2761. #u18981 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:1215px;
  2765. top:514px;
  2766. width:43px;
  2767. height:16px;
  2768. display:flex;
  2769. }
  2770. #u18981 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:0px 2px 0px 2px;
  2774. box-sizing:border-box;
  2775. }
  2776. #u18981_img.selected {
  2777. }
  2778. #u18981.selected {
  2779. }
  2780. #u18981_img.disabled {
  2781. }
  2782. #u18981.disabled {
  2783. }
  2784. #u18981_img.selectedDisabled {
  2785. }
  2786. #u18981.selectedDisabled {
  2787. }
  2788. #u18981_text {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:14px;
  2792. top:0px;
  2793. width:27px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. visibility:hidden;
  2797. }
  2798. #u18981_input {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:0px;
  2804. height:0px;
  2805. opacity:0;
  2806. }
  2807. #u18982 label {
  2808. left:0px;
  2809. width:100%;
  2810. }
  2811. #u18982_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:12px;
  2817. height:12px;
  2818. }
  2819. #u18982 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:1215px;
  2823. top:534px;
  2824. width:43px;
  2825. height:16px;
  2826. display:flex;
  2827. }
  2828. #u18982 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:0px 2px 0px 2px;
  2832. box-sizing:border-box;
  2833. }
  2834. #u18982_img.selected {
  2835. }
  2836. #u18982.selected {
  2837. }
  2838. #u18982_img.disabled {
  2839. }
  2840. #u18982.disabled {
  2841. }
  2842. #u18982_img.selectedDisabled {
  2843. }
  2844. #u18982.selectedDisabled {
  2845. }
  2846. #u18982_text {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:14px;
  2850. top:0px;
  2851. width:27px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u18982_input {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:0px;
  2862. height:0px;
  2863. opacity:0;
  2864. }
  2865. #u18983 label {
  2866. left:0px;
  2867. width:100%;
  2868. }
  2869. #u18983_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:12px;
  2875. height:12px;
  2876. }
  2877. #u18983 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:1215px;
  2881. top:574px;
  2882. width:43px;
  2883. height:16px;
  2884. display:flex;
  2885. }
  2886. #u18983 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:0px 2px 0px 2px;
  2890. box-sizing:border-box;
  2891. }
  2892. #u18983_img.selected {
  2893. }
  2894. #u18983.selected {
  2895. }
  2896. #u18983_img.disabled {
  2897. }
  2898. #u18983.disabled {
  2899. }
  2900. #u18983_img.selectedDisabled {
  2901. }
  2902. #u18983.selectedDisabled {
  2903. }
  2904. #u18983_text {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:14px;
  2908. top:0px;
  2909. width:27px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u18983_input {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:0px;
  2920. height:0px;
  2921. opacity:0;
  2922. }
  2923. #u18984_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:180px;
  2929. height:30px;
  2930. background:inherit;
  2931. background-color:rgba(242, 242, 242, 1);
  2932. border:none;
  2933. border-radius:4px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2938. font-weight:500;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. color:#555555;
  2942. text-align:left;
  2943. }
  2944. #u18984 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:1173px;
  2948. top:369px;
  2949. width:180px;
  2950. height:30px;
  2951. display:flex;
  2952. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2953. font-weight:500;
  2954. font-style:normal;
  2955. font-size:14px;
  2956. color:#555555;
  2957. text-align:left;
  2958. }
  2959. #u18984 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:5px 15px 5px 15px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u18984_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. }
  2971. #u18985_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:180px;
  2977. height:30px;
  2978. background:inherit;
  2979. background-color:rgba(242, 242, 242, 1);
  2980. border:none;
  2981. border-radius:4px;
  2982. -moz-box-shadow:none;
  2983. -webkit-box-shadow:none;
  2984. box-shadow:none;
  2985. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2986. font-weight:500;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#555555;
  2990. text-align:left;
  2991. }
  2992. #u18985 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1373px;
  2996. top:369px;
  2997. width:180px;
  2998. height:30px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3001. font-weight:500;
  3002. font-style:normal;
  3003. font-size:14px;
  3004. color:#555555;
  3005. text-align:left;
  3006. }
  3007. #u18985 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:5px 15px 5px 15px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u18985_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. }
  3019. #u18986 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:0px;
  3025. height:0px;
  3026. }
  3027. #u18987 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:1373px;
  3031. top:409px;
  3032. width:130px;
  3033. height:180px;
  3034. }
  3035. #u18987_children {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:0px;
  3041. height:0px;
  3042. }
  3043. #u18988 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:93px;
  3049. height:20px;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. }
  3054. #u18989_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:9px;
  3060. height:9px;
  3061. }
  3062. #u18989 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:6px;
  3066. top:6px;
  3067. width:9px;
  3068. height:9px;
  3069. display:flex;
  3070. }
  3071. #u18989 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u18989_img.selected {
  3079. }
  3080. #u18989.selected {
  3081. }
  3082. #u18989_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u18990_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:71px;
  3094. height:20px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 0);
  3097. border:none;
  3098. border-radius:0px;
  3099. -moz-box-shadow:none;
  3100. -webkit-box-shadow:none;
  3101. box-shadow:none;
  3102. }
  3103. #u18990 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:22px;
  3107. top:0px;
  3108. width:71px;
  3109. height:20px;
  3110. display:flex;
  3111. }
  3112. #u18990 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:2px 2px 2px 3px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u18990_text {
  3120. border-width:0px;
  3121. white-space:nowrap;
  3122. text-transform:none;
  3123. }
  3124. #u18988_children {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:0px;
  3130. height:0px;
  3131. }
  3132. #u18991 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:20px;
  3136. top:20px;
  3137. width:92px;
  3138. height:20px;
  3139. }
  3140. #u18992_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:70px;
  3146. height:20px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 0);
  3149. border:none;
  3150. border-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. }
  3155. #u18992 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:22px;
  3159. top:0px;
  3160. width:70px;
  3161. height:20px;
  3162. display:flex;
  3163. }
  3164. #u18992 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 3px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u18992_text {
  3172. border-width:0px;
  3173. white-space:nowrap;
  3174. text-transform:none;
  3175. }
  3176. #u18993 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:20px;
  3180. top:40px;
  3181. width:92px;
  3182. height:20px;
  3183. }
  3184. #u18994_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:70px;
  3190. height:20px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 0);
  3193. border:none;
  3194. border-radius:0px;
  3195. -moz-box-shadow:none;
  3196. -webkit-box-shadow:none;
  3197. box-shadow:none;
  3198. }
  3199. #u18994 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:22px;
  3203. top:0px;
  3204. width:70px;
  3205. height:20px;
  3206. display:flex;
  3207. }
  3208. #u18994 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 3px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u18994_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u18995 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:20px;
  3224. top:60px;
  3225. width:92px;
  3226. height:20px;
  3227. }
  3228. #u18996_div {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:70px;
  3234. height:20px;
  3235. background:inherit;
  3236. background-color:rgba(255, 255, 255, 0);
  3237. border:none;
  3238. border-radius:0px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. }
  3243. #u18996 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:22px;
  3247. top:0px;
  3248. width:70px;
  3249. height:20px;
  3250. display:flex;
  3251. }
  3252. #u18996 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 3px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u18996_text {
  3260. border-width:0px;
  3261. white-space:nowrap;
  3262. text-transform:none;
  3263. }
  3264. #u18997 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:80px;
  3269. width:93px;
  3270. height:20px;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. }
  3275. #u18998_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:9px;
  3281. height:9px;
  3282. }
  3283. #u18998 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:6px;
  3287. top:6px;
  3288. width:9px;
  3289. height:9px;
  3290. display:flex;
  3291. }
  3292. #u18998 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u18998_img.selected {
  3300. }
  3301. #u18998.selected {
  3302. }
  3303. #u18998_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u18999_div {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:71px;
  3315. height:20px;
  3316. background:inherit;
  3317. background-color:rgba(255, 255, 255, 0);
  3318. border:none;
  3319. border-radius:0px;
  3320. -moz-box-shadow:none;
  3321. -webkit-box-shadow:none;
  3322. box-shadow:none;
  3323. }
  3324. #u18999 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:22px;
  3328. top:0px;
  3329. width:71px;
  3330. height:20px;
  3331. display:flex;
  3332. }
  3333. #u18999 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 3px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u18999_text {
  3341. border-width:0px;
  3342. white-space:nowrap;
  3343. text-transform:none;
  3344. }
  3345. #u18997_children {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:0px;
  3351. height:0px;
  3352. }
  3353. #u19000 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:20px;
  3357. top:20px;
  3358. width:110px;
  3359. height:20px;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. }
  3364. #u19001_div {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:88px;
  3370. height:20px;
  3371. background:inherit;
  3372. background-color:rgba(255, 255, 255, 0);
  3373. border:none;
  3374. border-radius:0px;
  3375. -moz-box-shadow:none;
  3376. -webkit-box-shadow:none;
  3377. box-shadow:none;
  3378. }
  3379. #u19001 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:22px;
  3383. top:0px;
  3384. width:88px;
  3385. height:20px;
  3386. display:flex;
  3387. }
  3388. #u19001 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 3px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u19001_text {
  3396. border-width:0px;
  3397. white-space:nowrap;
  3398. text-transform:none;
  3399. }
  3400. #u19002 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:20px;
  3404. top:40px;
  3405. width:110px;
  3406. height:20px;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. }
  3411. #u19003_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:88px;
  3417. height:20px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. border:none;
  3421. border-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. }
  3426. #u19003 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:22px;
  3430. top:0px;
  3431. width:88px;
  3432. height:20px;
  3433. display:flex;
  3434. }
  3435. #u19003 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 3px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u19003_text {
  3443. border-width:0px;
  3444. white-space:nowrap;
  3445. text-transform:none;
  3446. }
  3447. #u19004 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:140px;
  3452. width:93px;
  3453. height:20px;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. }
  3458. #u19005_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:9px;
  3464. height:9px;
  3465. }
  3466. #u19005 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:6px;
  3470. top:6px;
  3471. width:9px;
  3472. height:9px;
  3473. display:flex;
  3474. }
  3475. #u19005 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u19005_img.selected {
  3483. }
  3484. #u19005.selected {
  3485. }
  3486. #u19005_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. visibility:hidden;
  3491. }
  3492. #u19006_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:71px;
  3498. height:20px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border:none;
  3502. border-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. }
  3507. #u19006 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:22px;
  3511. top:0px;
  3512. width:71px;
  3513. height:20px;
  3514. display:flex;
  3515. }
  3516. #u19006 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 3px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u19006_text {
  3524. border-width:0px;
  3525. white-space:nowrap;
  3526. text-transform:none;
  3527. }
  3528. #u19004_children {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:0px;
  3534. height:0px;
  3535. }
  3536. #u19007 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:20px;
  3540. top:20px;
  3541. width:110px;
  3542. height:20px;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. }
  3547. #u19008_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:88px;
  3553. height:20px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 0);
  3556. border:none;
  3557. border-radius:0px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. }
  3562. #u19008 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:22px;
  3566. top:0px;
  3567. width:88px;
  3568. height:20px;
  3569. display:flex;
  3570. }
  3571. #u19008 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 3px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u19008_text {
  3579. border-width:0px;
  3580. white-space:nowrap;
  3581. text-transform:none;
  3582. }
  3583. #u19009 label {
  3584. left:0px;
  3585. width:100%;
  3586. }
  3587. #u19009_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:12px;
  3593. height:12px;
  3594. }
  3595. #u19009 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:1415px;
  3599. top:434px;
  3600. width:43px;
  3601. height:16px;
  3602. display:flex;
  3603. }
  3604. #u19009 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:0px 2px 0px 2px;
  3608. box-sizing:border-box;
  3609. }
  3610. #u19009_img.selected {
  3611. }
  3612. #u19009.selected {
  3613. }
  3614. #u19009_img.disabled {
  3615. }
  3616. #u19009.disabled {
  3617. }
  3618. #u19009_img.selectedDisabled {
  3619. }
  3620. #u19009.selectedDisabled {
  3621. }
  3622. #u19009_text {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:14px;
  3626. top:0px;
  3627. width:27px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u19009_input {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:0px;
  3638. height:0px;
  3639. opacity:0;
  3640. }
  3641. #u19010 label {
  3642. left:0px;
  3643. width:100%;
  3644. }
  3645. #u19010_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:12px;
  3651. height:12px;
  3652. }
  3653. #u19010 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:1415px;
  3657. top:454px;
  3658. width:43px;
  3659. height:16px;
  3660. display:flex;
  3661. }
  3662. #u19010 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:0px 2px 0px 2px;
  3666. box-sizing:border-box;
  3667. }
  3668. #u19010_img.selected {
  3669. }
  3670. #u19010.selected {
  3671. }
  3672. #u19010_img.disabled {
  3673. }
  3674. #u19010.disabled {
  3675. }
  3676. #u19010_img.selectedDisabled {
  3677. }
  3678. #u19010.selectedDisabled {
  3679. }
  3680. #u19010_text {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:14px;
  3684. top:0px;
  3685. width:27px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u19010_input {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:0px;
  3696. height:0px;
  3697. opacity:0;
  3698. }
  3699. #u19011 label {
  3700. left:0px;
  3701. width:100%;
  3702. }
  3703. #u19011_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:12px;
  3709. height:12px;
  3710. }
  3711. #u19011 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:1415px;
  3715. top:475px;
  3716. width:43px;
  3717. height:16px;
  3718. display:flex;
  3719. }
  3720. #u19011 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:0px 2px 0px 2px;
  3724. box-sizing:border-box;
  3725. }
  3726. #u19011_img.selected {
  3727. }
  3728. #u19011.selected {
  3729. }
  3730. #u19011_img.disabled {
  3731. }
  3732. #u19011.disabled {
  3733. }
  3734. #u19011_img.selectedDisabled {
  3735. }
  3736. #u19011.selectedDisabled {
  3737. }
  3738. #u19011_text {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:14px;
  3742. top:0px;
  3743. width:27px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u19011_input {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:0px;
  3754. height:0px;
  3755. opacity:0;
  3756. }
  3757. #u19012 label {
  3758. left:0px;
  3759. width:100%;
  3760. }
  3761. #u19012_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:12px;
  3767. height:12px;
  3768. }
  3769. #u19012 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:1415px;
  3773. top:514px;
  3774. width:43px;
  3775. height:16px;
  3776. display:flex;
  3777. }
  3778. #u19012 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:0px 2px 0px 2px;
  3782. box-sizing:border-box;
  3783. }
  3784. #u19012_img.selected {
  3785. }
  3786. #u19012.selected {
  3787. }
  3788. #u19012_img.disabled {
  3789. }
  3790. #u19012.disabled {
  3791. }
  3792. #u19012_img.selectedDisabled {
  3793. }
  3794. #u19012.selectedDisabled {
  3795. }
  3796. #u19012_text {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:14px;
  3800. top:0px;
  3801. width:27px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u19012_input {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:0px;
  3812. height:0px;
  3813. opacity:0;
  3814. }
  3815. #u19013 label {
  3816. left:0px;
  3817. width:100%;
  3818. }
  3819. #u19013_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:12px;
  3825. height:12px;
  3826. }
  3827. #u19013 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:1415px;
  3831. top:534px;
  3832. width:43px;
  3833. height:16px;
  3834. display:flex;
  3835. }
  3836. #u19013 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:0px 2px 0px 2px;
  3840. box-sizing:border-box;
  3841. }
  3842. #u19013_img.selected {
  3843. }
  3844. #u19013.selected {
  3845. }
  3846. #u19013_img.disabled {
  3847. }
  3848. #u19013.disabled {
  3849. }
  3850. #u19013_img.selectedDisabled {
  3851. }
  3852. #u19013.selectedDisabled {
  3853. }
  3854. #u19013_text {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:14px;
  3858. top:0px;
  3859. width:27px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u19013_input {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:0px;
  3870. height:0px;
  3871. opacity:0;
  3872. }
  3873. #u19014 label {
  3874. left:0px;
  3875. width:100%;
  3876. }
  3877. #u19014_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:12px;
  3883. height:12px;
  3884. }
  3885. #u19014 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:1415px;
  3889. top:574px;
  3890. width:43px;
  3891. height:16px;
  3892. display:flex;
  3893. }
  3894. #u19014 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:0px 2px 0px 2px;
  3898. box-sizing:border-box;
  3899. }
  3900. #u19014_img.selected {
  3901. }
  3902. #u19014.selected {
  3903. }
  3904. #u19014_img.disabled {
  3905. }
  3906. #u19014.disabled {
  3907. }
  3908. #u19014_img.selectedDisabled {
  3909. }
  3910. #u19014.selectedDisabled {
  3911. }
  3912. #u19014_text {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:14px;
  3916. top:0px;
  3917. width:27px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u19014_input {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:0px;
  3928. height:0px;
  3929. opacity:0;
  3930. }
  3931. #u19015_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:430px;
  3937. height:100px;
  3938. background:inherit;
  3939. background-color:rgba(255, 255, 255, 0);
  3940. border:none;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-bottom:0px;
  3944. border-radius:0px;
  3945. border-top-left-radius:0px;
  3946. border-bottom-left-radius:0px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. color:#D9001B;
  3955. line-height:30px;
  3956. }
  3957. #u19015 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:1144px;
  3961. top:640px;
  3962. width:430px;
  3963. height:100px;
  3964. display:flex;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. color:#D9001B;
  3970. line-height:30px;
  3971. }
  3972. #u19015 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:5px 0px 5px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u19015_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. }
  3984. #u19016 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:0px;
  3990. height:0px;
  3991. }
  3992. #u19017 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:348px;
  3996. top:272px;
  3997. width:788px;
  3998. height:328px;
  3999. }
  4000. #u19018_img {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:35px;
  4006. height:30px;
  4007. }
  4008. #u19018 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:35px;
  4014. height:30px;
  4015. display:flex;
  4016. color:#FFFFFF;
  4017. }
  4018. #u19018 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u19018_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u19019_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:66px;
  4037. height:30px;
  4038. }
  4039. #u19019 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:35px;
  4043. top:0px;
  4044. width:66px;
  4045. height:30px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. color:#FFFFFF;
  4051. }
  4052. #u19019 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 2px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u19019_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. }
  4064. #u19020_img {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:67px;
  4070. height:30px;
  4071. }
  4072. #u19020 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:101px;
  4076. top:0px;
  4077. width:67px;
  4078. height:30px;
  4079. display:flex;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. color:#FFFFFF;
  4084. }
  4085. #u19020 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 2px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u19020_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. }
  4097. #u19021_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:68px;
  4103. height:30px;
  4104. }
  4105. #u19021 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:168px;
  4109. top:0px;
  4110. width:68px;
  4111. height:30px;
  4112. display:flex;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. color:#FFFFFF;
  4117. }
  4118. #u19021 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u19021_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. }
  4130. #u19022_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:68px;
  4136. height:30px;
  4137. }
  4138. #u19022 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:236px;
  4142. top:0px;
  4143. width:68px;
  4144. height:30px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. color:#FFFFFF;
  4150. }
  4151. #u19022 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u19022_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. }
  4163. #u19023_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:68px;
  4169. height:30px;
  4170. }
  4171. #u19023 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:304px;
  4175. top:0px;
  4176. width:68px;
  4177. height:30px;
  4178. display:flex;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. color:#FFFFFF;
  4183. }
  4184. #u19023 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 2px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u19023_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. }
  4196. #u19024_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:66px;
  4202. height:30px;
  4203. }
  4204. #u19024 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:372px;
  4208. top:0px;
  4209. width:66px;
  4210. height:30px;
  4211. display:flex;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. color:#FFFFFF;
  4216. }
  4217. #u19024 .text {
  4218. position:absolute;
  4219. align-self:center;
  4220. padding:2px 2px 2px 2px;
  4221. box-sizing:border-box;
  4222. width:100%;
  4223. }
  4224. #u19024_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. }
  4229. #u19025_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:70px;
  4235. height:30px;
  4236. }
  4237. #u19025 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:438px;
  4241. top:0px;
  4242. width:70px;
  4243. height:30px;
  4244. display:flex;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. color:#FFFFFF;
  4249. }
  4250. #u19025 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 2px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u19025_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. }
  4262. #u19026_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:70px;
  4268. height:30px;
  4269. }
  4270. #u19026 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:508px;
  4274. top:0px;
  4275. width:70px;
  4276. height:30px;
  4277. display:flex;
  4278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. color:#FFFFFF;
  4282. }
  4283. #u19026 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 2px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u19026_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. }
  4295. #u19027_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:66px;
  4301. height:30px;
  4302. }
  4303. #u19027 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:578px;
  4307. top:0px;
  4308. width:66px;
  4309. height:30px;
  4310. display:flex;
  4311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. color:#FFFFFF;
  4315. }
  4316. #u19027 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u19027_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. }
  4328. #u19028_img {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:70px;
  4334. height:30px;
  4335. }
  4336. #u19028 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:644px;
  4340. top:0px;
  4341. width:70px;
  4342. height:30px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. color:#FFFFFF;
  4348. }
  4349. #u19028 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 2px 2px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u19028_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. }
  4361. #u19029_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:74px;
  4367. height:30px;
  4368. }
  4369. #u19029 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:714px;
  4373. top:0px;
  4374. width:74px;
  4375. height:30px;
  4376. display:flex;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. color:#FFFFFF;
  4381. }
  4382. #u19029 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u19029_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. }
  4394. #u19030_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:35px;
  4400. height:30px;
  4401. }
  4402. #u19030 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:30px;
  4407. width:35px;
  4408. height:30px;
  4409. display:flex;
  4410. }
  4411. #u19030 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u19030_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u19031_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:66px;
  4430. height:30px;
  4431. }
  4432. #u19031 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:35px;
  4436. top:30px;
  4437. width:66px;
  4438. height:30px;
  4439. display:flex;
  4440. }
  4441. #u19031 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u19031_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u19032_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:67px;
  4460. height:30px;
  4461. }
  4462. #u19032 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:101px;
  4466. top:30px;
  4467. width:67px;
  4468. height:30px;
  4469. display:flex;
  4470. }
  4471. #u19032 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u19032_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u19033_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:68px;
  4490. height:30px;
  4491. }
  4492. #u19033 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:168px;
  4496. top:30px;
  4497. width:68px;
  4498. height:30px;
  4499. display:flex;
  4500. }
  4501. #u19033 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 2px 2px 2px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u19033_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. visibility:hidden;
  4513. }
  4514. #u19034_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:68px;
  4520. height:30px;
  4521. }
  4522. #u19034 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:236px;
  4526. top:30px;
  4527. width:68px;
  4528. height:30px;
  4529. display:flex;
  4530. }
  4531. #u19034 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u19034_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u19035_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:68px;
  4550. height:30px;
  4551. }
  4552. #u19035 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:304px;
  4556. top:30px;
  4557. width:68px;
  4558. height:30px;
  4559. display:flex;
  4560. }
  4561. #u19035 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u19035_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u19036_img {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:66px;
  4580. height:30px;
  4581. }
  4582. #u19036 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:372px;
  4586. top:30px;
  4587. width:66px;
  4588. height:30px;
  4589. display:flex;
  4590. }
  4591. #u19036 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 2px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u19036_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. visibility:hidden;
  4603. }
  4604. #u19037_img {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:70px;
  4610. height:30px;
  4611. }
  4612. #u19037 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:438px;
  4616. top:30px;
  4617. width:70px;
  4618. height:30px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. }
  4624. #u19037 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:2px 2px 2px 2px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u19037_text {
  4632. border-width:0px;
  4633. word-wrap:break-word;
  4634. text-transform:none;
  4635. }
  4636. #u19038_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:70px;
  4642. height:30px;
  4643. }
  4644. #u19038 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:508px;
  4648. top:30px;
  4649. width:70px;
  4650. height:30px;
  4651. display:flex;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. }
  4656. #u19038 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:2px 2px 2px 2px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u19038_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. visibility:hidden;
  4668. }
  4669. #u19039_img {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:66px;
  4675. height:30px;
  4676. }
  4677. #u19039 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:578px;
  4681. top:30px;
  4682. width:66px;
  4683. height:30px;
  4684. display:flex;
  4685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. }
  4689. #u19039 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u19039_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. visibility:hidden;
  4701. }
  4702. #u19040_img {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:70px;
  4708. height:30px;
  4709. }
  4710. #u19040 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:644px;
  4714. top:30px;
  4715. width:70px;
  4716. height:30px;
  4717. display:flex;
  4718. }
  4719. #u19040 .text {
  4720. position:absolute;
  4721. align-self:center;
  4722. padding:2px 2px 2px 2px;
  4723. box-sizing:border-box;
  4724. width:100%;
  4725. }
  4726. #u19040_text {
  4727. border-width:0px;
  4728. word-wrap:break-word;
  4729. text-transform:none;
  4730. visibility:hidden;
  4731. }
  4732. #u19041_img {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:74px;
  4738. height:30px;
  4739. }
  4740. #u19041 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:714px;
  4744. top:30px;
  4745. width:74px;
  4746. height:30px;
  4747. display:flex;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. }
  4752. #u19041 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u19041_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. }
  4764. #u19042_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:35px;
  4770. height:30px;
  4771. }
  4772. #u19042 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:60px;
  4777. width:35px;
  4778. height:30px;
  4779. display:flex;
  4780. }
  4781. #u19042 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 2px 2px 2px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u19042_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u19043_img {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:66px;
  4800. height:30px;
  4801. }
  4802. #u19043 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:35px;
  4806. top:60px;
  4807. width:66px;
  4808. height:30px;
  4809. display:flex;
  4810. }
  4811. #u19043 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 2px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u19043_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u19044_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:67px;
  4830. height:30px;
  4831. }
  4832. #u19044 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:101px;
  4836. top:60px;
  4837. width:67px;
  4838. height:30px;
  4839. display:flex;
  4840. }
  4841. #u19044 .text {
  4842. position:absolute;
  4843. align-self:center;
  4844. padding:2px 2px 2px 2px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u19044_text {
  4849. border-width:0px;
  4850. word-wrap:break-word;
  4851. text-transform:none;
  4852. visibility:hidden;
  4853. }
  4854. #u19045_img {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:68px;
  4860. height:30px;
  4861. }
  4862. #u19045 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:168px;
  4866. top:60px;
  4867. width:68px;
  4868. height:30px;
  4869. display:flex;
  4870. }
  4871. #u19045 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u19045_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u19046_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:68px;
  4890. height:30px;
  4891. }
  4892. #u19046 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:236px;
  4896. top:60px;
  4897. width:68px;
  4898. height:30px;
  4899. display:flex;
  4900. }
  4901. #u19046 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u19046_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u19047_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:68px;
  4920. height:30px;
  4921. }
  4922. #u19047 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:304px;
  4926. top:60px;
  4927. width:68px;
  4928. height:30px;
  4929. display:flex;
  4930. }
  4931. #u19047 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u19047_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. }
  4943. #u19048_img {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:66px;
  4949. height:30px;
  4950. }
  4951. #u19048 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:372px;
  4955. top:60px;
  4956. width:66px;
  4957. height:30px;
  4958. display:flex;
  4959. }
  4960. #u19048 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u19048_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. }
  4972. #u19049_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:70px;
  4978. height:30px;
  4979. }
  4980. #u19049 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:438px;
  4984. top:60px;
  4985. width:70px;
  4986. height:30px;
  4987. display:flex;
  4988. }
  4989. #u19049 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 2px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u19049_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. }
  5001. #u19050_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:70px;
  5007. height:30px;
  5008. }
  5009. #u19050 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:508px;
  5013. top:60px;
  5014. width:70px;
  5015. height:30px;
  5016. display:flex;
  5017. }
  5018. #u19050 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u19050_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. }
  5030. #u19051_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:66px;
  5036. height:30px;
  5037. }
  5038. #u19051 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:578px;
  5042. top:60px;
  5043. width:66px;
  5044. height:30px;
  5045. display:flex;
  5046. }
  5047. #u19051 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u19051_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u19052_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:70px;
  5066. height:30px;
  5067. }
  5068. #u19052 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:644px;
  5072. top:60px;
  5073. width:70px;
  5074. height:30px;
  5075. display:flex;
  5076. }
  5077. #u19052 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u19052_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. visibility:hidden;
  5089. }
  5090. #u19053_img {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:74px;
  5096. height:30px;
  5097. }
  5098. #u19053 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:714px;
  5102. top:60px;
  5103. width:74px;
  5104. height:30px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. }
  5110. #u19053 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 2px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u19053_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. }
  5122. #u19054_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:35px;
  5128. height:30px;
  5129. }
  5130. #u19054 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:90px;
  5135. width:35px;
  5136. height:30px;
  5137. display:flex;
  5138. }
  5139. #u19054 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 2px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u19054_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u19055_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:66px;
  5158. height:30px;
  5159. }
  5160. #u19055 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:35px;
  5164. top:90px;
  5165. width:66px;
  5166. height:30px;
  5167. display:flex;
  5168. }
  5169. #u19055 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 2px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u19055_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u19056_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:67px;
  5188. height:30px;
  5189. }
  5190. #u19056 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:101px;
  5194. top:90px;
  5195. width:67px;
  5196. height:30px;
  5197. display:flex;
  5198. }
  5199. #u19056 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 2px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u19056_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u19057_img {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:68px;
  5218. height:30px;
  5219. }
  5220. #u19057 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:168px;
  5224. top:90px;
  5225. width:68px;
  5226. height:30px;
  5227. display:flex;
  5228. }
  5229. #u19057 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 2px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u19057_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u19058_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:68px;
  5248. height:30px;
  5249. }
  5250. #u19058 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:236px;
  5254. top:90px;
  5255. width:68px;
  5256. height:30px;
  5257. display:flex;
  5258. }
  5259. #u19058 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 2px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u19058_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. visibility:hidden;
  5271. }
  5272. #u19059_img {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:68px;
  5278. height:30px;
  5279. }
  5280. #u19059 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:304px;
  5284. top:90px;
  5285. width:68px;
  5286. height:30px;
  5287. display:flex;
  5288. }
  5289. #u19059 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:2px 2px 2px 2px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u19059_text {
  5297. border-width:0px;
  5298. word-wrap:break-word;
  5299. text-transform:none;
  5300. visibility:hidden;
  5301. }
  5302. #u19060_img {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:66px;
  5308. height:30px;
  5309. }
  5310. #u19060 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:372px;
  5314. top:90px;
  5315. width:66px;
  5316. height:30px;
  5317. display:flex;
  5318. }
  5319. #u19060 .text {
  5320. position:absolute;
  5321. align-self:center;
  5322. padding:2px 2px 2px 2px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u19060_text {
  5327. border-width:0px;
  5328. word-wrap:break-word;
  5329. text-transform:none;
  5330. visibility:hidden;
  5331. }
  5332. #u19061_img {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:70px;
  5338. height:30px;
  5339. }
  5340. #u19061 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:438px;
  5344. top:90px;
  5345. width:70px;
  5346. height:30px;
  5347. display:flex;
  5348. }
  5349. #u19061 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u19061_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u19062_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:70px;
  5368. height:30px;
  5369. }
  5370. #u19062 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:508px;
  5374. top:90px;
  5375. width:70px;
  5376. height:30px;
  5377. display:flex;
  5378. }
  5379. #u19062 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u19062_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u19063_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:66px;
  5398. height:30px;
  5399. }
  5400. #u19063 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:578px;
  5404. top:90px;
  5405. width:66px;
  5406. height:30px;
  5407. display:flex;
  5408. }
  5409. #u19063 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u19063_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u19064_img {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:70px;
  5428. height:30px;
  5429. }
  5430. #u19064 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:644px;
  5434. top:90px;
  5435. width:70px;
  5436. height:30px;
  5437. display:flex;
  5438. }
  5439. #u19064 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u19064_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u19065_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:74px;
  5458. height:30px;
  5459. }
  5460. #u19065 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:714px;
  5464. top:90px;
  5465. width:74px;
  5466. height:30px;
  5467. display:flex;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. }
  5472. #u19065 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 2px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u19065_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u19066_img {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:35px;
  5490. height:30px;
  5491. }
  5492. #u19066 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:120px;
  5497. width:35px;
  5498. height:30px;
  5499. display:flex;
  5500. }
  5501. #u19066 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u19066_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u19067_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:66px;
  5520. height:30px;
  5521. }
  5522. #u19067 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:35px;
  5526. top:120px;
  5527. width:66px;
  5528. height:30px;
  5529. display:flex;
  5530. }
  5531. #u19067 .text {
  5532. position:absolute;
  5533. align-self:center;
  5534. padding:2px 2px 2px 2px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u19067_text {
  5539. border-width:0px;
  5540. word-wrap:break-word;
  5541. text-transform:none;
  5542. visibility:hidden;
  5543. }
  5544. #u19068_img {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:67px;
  5550. height:30px;
  5551. }
  5552. #u19068 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:101px;
  5556. top:120px;
  5557. width:67px;
  5558. height:30px;
  5559. display:flex;
  5560. }
  5561. #u19068 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u19068_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u19069_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:68px;
  5580. height:30px;
  5581. }
  5582. #u19069 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:168px;
  5586. top:120px;
  5587. width:68px;
  5588. height:30px;
  5589. display:flex;
  5590. }
  5591. #u19069 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u19069_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u19070_img {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:68px;
  5610. height:30px;
  5611. }
  5612. #u19070 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:236px;
  5616. top:120px;
  5617. width:68px;
  5618. height:30px;
  5619. display:flex;
  5620. }
  5621. #u19070 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 2px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u19070_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. visibility:hidden;
  5633. }
  5634. #u19071_img {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:68px;
  5640. height:30px;
  5641. }
  5642. #u19071 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:304px;
  5646. top:120px;
  5647. width:68px;
  5648. height:30px;
  5649. display:flex;
  5650. }
  5651. #u19071 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 2px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u19071_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u19072_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:66px;
  5670. height:30px;
  5671. }
  5672. #u19072 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:372px;
  5676. top:120px;
  5677. width:66px;
  5678. height:30px;
  5679. display:flex;
  5680. }
  5681. #u19072 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:2px 2px 2px 2px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u19072_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u19073_img {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:70px;
  5700. height:30px;
  5701. }
  5702. #u19073 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:438px;
  5706. top:120px;
  5707. width:70px;
  5708. height:30px;
  5709. display:flex;
  5710. }
  5711. #u19073 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 2px 2px 2px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u19073_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u19074_img {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:70px;
  5730. height:30px;
  5731. }
  5732. #u19074 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:508px;
  5736. top:120px;
  5737. width:70px;
  5738. height:30px;
  5739. display:flex;
  5740. }
  5741. #u19074 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 2px 2px 2px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u19074_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. visibility:hidden;
  5753. }
  5754. #u19075_img {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:66px;
  5760. height:30px;
  5761. }
  5762. #u19075 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:578px;
  5766. top:120px;
  5767. width:66px;
  5768. height:30px;
  5769. display:flex;
  5770. }
  5771. #u19075 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u19075_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u19076_img {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:70px;
  5790. height:30px;
  5791. }
  5792. #u19076 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:644px;
  5796. top:120px;
  5797. width:70px;
  5798. height:30px;
  5799. display:flex;
  5800. }
  5801. #u19076 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:2px 2px 2px 2px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u19076_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. visibility:hidden;
  5813. }
  5814. #u19077_img {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:74px;
  5820. height:30px;
  5821. }
  5822. #u19077 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:714px;
  5826. top:120px;
  5827. width:74px;
  5828. height:30px;
  5829. display:flex;
  5830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. }
  5834. #u19077 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u19077_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. }
  5846. #u19078_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:35px;
  5852. height:28px;
  5853. }
  5854. #u19078 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:150px;
  5859. width:35px;
  5860. height:28px;
  5861. display:flex;
  5862. }
  5863. #u19078 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 2px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u19078_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u19079_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:66px;
  5882. height:28px;
  5883. }
  5884. #u19079 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:35px;
  5888. top:150px;
  5889. width:66px;
  5890. height:28px;
  5891. display:flex;
  5892. }
  5893. #u19079 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 2px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u19079_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. visibility:hidden;
  5905. }
  5906. #u19080_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:67px;
  5912. height:28px;
  5913. }
  5914. #u19080 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:101px;
  5918. top:150px;
  5919. width:67px;
  5920. height:28px;
  5921. display:flex;
  5922. }
  5923. #u19080 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u19080_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u19081_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:68px;
  5942. height:28px;
  5943. }
  5944. #u19081 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:168px;
  5948. top:150px;
  5949. width:68px;
  5950. height:28px;
  5951. display:flex;
  5952. }
  5953. #u19081 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u19081_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u19082_img {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:68px;
  5972. height:28px;
  5973. }
  5974. #u19082 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:236px;
  5978. top:150px;
  5979. width:68px;
  5980. height:28px;
  5981. display:flex;
  5982. }
  5983. #u19082 .text {
  5984. position:absolute;
  5985. align-self:center;
  5986. padding:2px 2px 2px 2px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u19082_text {
  5991. border-width:0px;
  5992. word-wrap:break-word;
  5993. text-transform:none;
  5994. visibility:hidden;
  5995. }
  5996. #u19083_img {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:68px;
  6002. height:28px;
  6003. }
  6004. #u19083 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:304px;
  6008. top:150px;
  6009. width:68px;
  6010. height:28px;
  6011. display:flex;
  6012. }
  6013. #u19083 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 2px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u19083_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u19084_img {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:66px;
  6032. height:28px;
  6033. }
  6034. #u19084 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:372px;
  6038. top:150px;
  6039. width:66px;
  6040. height:28px;
  6041. display:flex;
  6042. }
  6043. #u19084 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 2px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u19084_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u19085_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:70px;
  6062. height:28px;
  6063. }
  6064. #u19085 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:438px;
  6068. top:150px;
  6069. width:70px;
  6070. height:28px;
  6071. display:flex;
  6072. }
  6073. #u19085 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 2px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u19085_text {
  6081. border-width:0px;
  6082. word-wrap:break-word;
  6083. text-transform:none;
  6084. visibility:hidden;
  6085. }
  6086. #u19086_img {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:70px;
  6092. height:28px;
  6093. }
  6094. #u19086 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:508px;
  6098. top:150px;
  6099. width:70px;
  6100. height:28px;
  6101. display:flex;
  6102. }
  6103. #u19086 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u19086_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u19087_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:66px;
  6122. height:28px;
  6123. }
  6124. #u19087 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:578px;
  6128. top:150px;
  6129. width:66px;
  6130. height:28px;
  6131. display:flex;
  6132. }
  6133. #u19087 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:2px 2px 2px 2px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u19087_text {
  6141. border-width:0px;
  6142. word-wrap:break-word;
  6143. text-transform:none;
  6144. visibility:hidden;
  6145. }
  6146. #u19088_img {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:70px;
  6152. height:28px;
  6153. }
  6154. #u19088 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:644px;
  6158. top:150px;
  6159. width:70px;
  6160. height:28px;
  6161. display:flex;
  6162. }
  6163. #u19088 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 2px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u19088_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u19089_img {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:74px;
  6182. height:28px;
  6183. }
  6184. #u19089 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:714px;
  6188. top:150px;
  6189. width:74px;
  6190. height:28px;
  6191. display:flex;
  6192. }
  6193. #u19089 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 2px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u19089_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u19090_img {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:35px;
  6212. height:30px;
  6213. }
  6214. #u19090 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:178px;
  6219. width:35px;
  6220. height:30px;
  6221. display:flex;
  6222. }
  6223. #u19090 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u19090_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. visibility:hidden;
  6235. }
  6236. #u19091_img {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:66px;
  6242. height:30px;
  6243. }
  6244. #u19091 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:35px;
  6248. top:178px;
  6249. width:66px;
  6250. height:30px;
  6251. display:flex;
  6252. }
  6253. #u19091 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:2px 2px 2px 2px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u19091_text {
  6261. border-width:0px;
  6262. word-wrap:break-word;
  6263. text-transform:none;
  6264. visibility:hidden;
  6265. }
  6266. #u19092_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:67px;
  6272. height:30px;
  6273. }
  6274. #u19092 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:101px;
  6278. top:178px;
  6279. width:67px;
  6280. height:30px;
  6281. display:flex;
  6282. }
  6283. #u19092 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u19092_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. visibility:hidden;
  6295. }
  6296. #u19093_img {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:68px;
  6302. height:30px;
  6303. }
  6304. #u19093 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:168px;
  6308. top:178px;
  6309. width:68px;
  6310. height:30px;
  6311. display:flex;
  6312. }
  6313. #u19093 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u19093_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u19094_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:68px;
  6332. height:30px;
  6333. }
  6334. #u19094 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:236px;
  6338. top:178px;
  6339. width:68px;
  6340. height:30px;
  6341. display:flex;
  6342. }
  6343. #u19094 .text {
  6344. position:absolute;
  6345. align-self:center;
  6346. padding:2px 2px 2px 2px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u19094_text {
  6351. border-width:0px;
  6352. word-wrap:break-word;
  6353. text-transform:none;
  6354. visibility:hidden;
  6355. }
  6356. #u19095_img {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:68px;
  6362. height:30px;
  6363. }
  6364. #u19095 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:304px;
  6368. top:178px;
  6369. width:68px;
  6370. height:30px;
  6371. display:flex;
  6372. }
  6373. #u19095 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:2px 2px 2px 2px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u19095_text {
  6381. border-width:0px;
  6382. word-wrap:break-word;
  6383. text-transform:none;
  6384. visibility:hidden;
  6385. }
  6386. #u19096_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:66px;
  6392. height:30px;
  6393. }
  6394. #u19096 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:372px;
  6398. top:178px;
  6399. width:66px;
  6400. height:30px;
  6401. display:flex;
  6402. }
  6403. #u19096 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u19096_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. visibility:hidden;
  6415. }
  6416. #u19097_img {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:70px;
  6422. height:30px;
  6423. }
  6424. #u19097 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:438px;
  6428. top:178px;
  6429. width:70px;
  6430. height:30px;
  6431. display:flex;
  6432. }
  6433. #u19097 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 2px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u19097_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u19098_img {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:70px;
  6452. height:30px;
  6453. }
  6454. #u19098 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:508px;
  6458. top:178px;
  6459. width:70px;
  6460. height:30px;
  6461. display:flex;
  6462. }
  6463. #u19098 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 2px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u19098_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u19099_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:66px;
  6482. height:30px;
  6483. }
  6484. #u19099 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:578px;
  6488. top:178px;
  6489. width:66px;
  6490. height:30px;
  6491. display:flex;
  6492. }
  6493. #u19099 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 2px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u19099_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u19100_img {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:70px;
  6512. height:30px;
  6513. }
  6514. #u19100 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:644px;
  6518. top:178px;
  6519. width:70px;
  6520. height:30px;
  6521. display:flex;
  6522. }
  6523. #u19100 .text {
  6524. position:absolute;
  6525. align-self:center;
  6526. padding:2px 2px 2px 2px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u19100_text {
  6531. border-width:0px;
  6532. word-wrap:break-word;
  6533. text-transform:none;
  6534. visibility:hidden;
  6535. }
  6536. #u19101_img {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:74px;
  6542. height:30px;
  6543. }
  6544. #u19101 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:714px;
  6548. top:178px;
  6549. width:74px;
  6550. height:30px;
  6551. display:flex;
  6552. }
  6553. #u19101 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:2px 2px 2px 2px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u19101_text {
  6561. border-width:0px;
  6562. word-wrap:break-word;
  6563. text-transform:none;
  6564. visibility:hidden;
  6565. }
  6566. #u19102_img {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:35px;
  6572. height:30px;
  6573. }
  6574. #u19102 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:208px;
  6579. width:35px;
  6580. height:30px;
  6581. display:flex;
  6582. }
  6583. #u19102 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 2px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u19102_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u19103_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:66px;
  6602. height:30px;
  6603. }
  6604. #u19103 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:35px;
  6608. top:208px;
  6609. width:66px;
  6610. height:30px;
  6611. display:flex;
  6612. }
  6613. #u19103 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 2px 2px 2px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u19103_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u19104_img {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:67px;
  6632. height:30px;
  6633. }
  6634. #u19104 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:101px;
  6638. top:208px;
  6639. width:67px;
  6640. height:30px;
  6641. display:flex;
  6642. }
  6643. #u19104 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u19104_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u19105_img {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:68px;
  6662. height:30px;
  6663. }
  6664. #u19105 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:168px;
  6668. top:208px;
  6669. width:68px;
  6670. height:30px;
  6671. display:flex;
  6672. }
  6673. #u19105 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u19105_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u19106_img {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:68px;
  6692. height:30px;
  6693. }
  6694. #u19106 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:236px;
  6698. top:208px;
  6699. width:68px;
  6700. height:30px;
  6701. display:flex;
  6702. }
  6703. #u19106 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:2px 2px 2px 2px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u19106_text {
  6711. border-width:0px;
  6712. word-wrap:break-word;
  6713. text-transform:none;
  6714. visibility:hidden;
  6715. }
  6716. #u19107_img {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:68px;
  6722. height:30px;
  6723. }
  6724. #u19107 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:304px;
  6728. top:208px;
  6729. width:68px;
  6730. height:30px;
  6731. display:flex;
  6732. }
  6733. #u19107 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:2px 2px 2px 2px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u19107_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. visibility:hidden;
  6745. }
  6746. #u19108_img {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:66px;
  6752. height:30px;
  6753. }
  6754. #u19108 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:372px;
  6758. top:208px;
  6759. width:66px;
  6760. height:30px;
  6761. display:flex;
  6762. }
  6763. #u19108 .text {
  6764. position:absolute;
  6765. align-self:center;
  6766. padding:2px 2px 2px 2px;
  6767. box-sizing:border-box;
  6768. width:100%;
  6769. }
  6770. #u19108_text {
  6771. border-width:0px;
  6772. word-wrap:break-word;
  6773. text-transform:none;
  6774. visibility:hidden;
  6775. }
  6776. #u19109_img {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:70px;
  6782. height:30px;
  6783. }
  6784. #u19109 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:438px;
  6788. top:208px;
  6789. width:70px;
  6790. height:30px;
  6791. display:flex;
  6792. }
  6793. #u19109 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 2px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u19109_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. visibility:hidden;
  6805. }
  6806. #u19110_img {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:70px;
  6812. height:30px;
  6813. }
  6814. #u19110 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:508px;
  6818. top:208px;
  6819. width:70px;
  6820. height:30px;
  6821. display:flex;
  6822. }
  6823. #u19110 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u19110_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u19111_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:66px;
  6842. height:30px;
  6843. }
  6844. #u19111 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:578px;
  6848. top:208px;
  6849. width:66px;
  6850. height:30px;
  6851. display:flex;
  6852. }
  6853. #u19111 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 2px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u19111_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. visibility:hidden;
  6865. }
  6866. #u19112_img {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:70px;
  6872. height:30px;
  6873. }
  6874. #u19112 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:644px;
  6878. top:208px;
  6879. width:70px;
  6880. height:30px;
  6881. display:flex;
  6882. }
  6883. #u19112 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u19112_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u19113_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:74px;
  6902. height:30px;
  6903. }
  6904. #u19113 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:714px;
  6908. top:208px;
  6909. width:74px;
  6910. height:30px;
  6911. display:flex;
  6912. }
  6913. #u19113 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 2px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u19113_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. visibility:hidden;
  6925. }
  6926. #u19114_img {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:35px;
  6932. height:30px;
  6933. }
  6934. #u19114 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:238px;
  6939. width:35px;
  6940. height:30px;
  6941. display:flex;
  6942. }
  6943. #u19114 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 2px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u19114_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u19115_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:66px;
  6962. height:30px;
  6963. }
  6964. #u19115 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:35px;
  6968. top:238px;
  6969. width:66px;
  6970. height:30px;
  6971. display:flex;
  6972. }
  6973. #u19115 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u19115_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. visibility:hidden;
  6985. }
  6986. #u19116_img {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:67px;
  6992. height:30px;
  6993. }
  6994. #u19116 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:101px;
  6998. top:238px;
  6999. width:67px;
  7000. height:30px;
  7001. display:flex;
  7002. }
  7003. #u19116 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:2px 2px 2px 2px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u19116_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. visibility:hidden;
  7015. }
  7016. #u19117_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:68px;
  7022. height:30px;
  7023. }
  7024. #u19117 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:168px;
  7028. top:238px;
  7029. width:68px;
  7030. height:30px;
  7031. display:flex;
  7032. }
  7033. #u19117 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 2px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u19117_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. visibility:hidden;
  7045. }
  7046. #u19118_img {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:68px;
  7052. height:30px;
  7053. }
  7054. #u19118 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:236px;
  7058. top:238px;
  7059. width:68px;
  7060. height:30px;
  7061. display:flex;
  7062. }
  7063. #u19118 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 2px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u19118_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. visibility:hidden;
  7075. }
  7076. #u19119_img {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:68px;
  7082. height:30px;
  7083. }
  7084. #u19119 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:304px;
  7088. top:238px;
  7089. width:68px;
  7090. height:30px;
  7091. display:flex;
  7092. }
  7093. #u19119 .text {
  7094. position:absolute;
  7095. align-self:center;
  7096. padding:2px 2px 2px 2px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u19119_text {
  7101. border-width:0px;
  7102. word-wrap:break-word;
  7103. text-transform:none;
  7104. visibility:hidden;
  7105. }
  7106. #u19120_img {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:66px;
  7112. height:30px;
  7113. }
  7114. #u19120 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:372px;
  7118. top:238px;
  7119. width:66px;
  7120. height:30px;
  7121. display:flex;
  7122. }
  7123. #u19120 .text {
  7124. position:absolute;
  7125. align-self:center;
  7126. padding:2px 2px 2px 2px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u19120_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. visibility:hidden;
  7135. }
  7136. #u19121_img {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:70px;
  7142. height:30px;
  7143. }
  7144. #u19121 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:438px;
  7148. top:238px;
  7149. width:70px;
  7150. height:30px;
  7151. display:flex;
  7152. }
  7153. #u19121 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:2px 2px 2px 2px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u19121_text {
  7161. border-width:0px;
  7162. word-wrap:break-word;
  7163. text-transform:none;
  7164. visibility:hidden;
  7165. }
  7166. #u19122_img {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:70px;
  7172. height:30px;
  7173. }
  7174. #u19122 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:508px;
  7178. top:238px;
  7179. width:70px;
  7180. height:30px;
  7181. display:flex;
  7182. }
  7183. #u19122 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:2px 2px 2px 2px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u19122_text {
  7191. border-width:0px;
  7192. word-wrap:break-word;
  7193. text-transform:none;
  7194. visibility:hidden;
  7195. }
  7196. #u19123_img {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:66px;
  7202. height:30px;
  7203. }
  7204. #u19123 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:578px;
  7208. top:238px;
  7209. width:66px;
  7210. height:30px;
  7211. display:flex;
  7212. }
  7213. #u19123 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:2px 2px 2px 2px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u19123_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. visibility:hidden;
  7225. }
  7226. #u19124_img {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:70px;
  7232. height:30px;
  7233. }
  7234. #u19124 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:644px;
  7238. top:238px;
  7239. width:70px;
  7240. height:30px;
  7241. display:flex;
  7242. }
  7243. #u19124 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 2px 2px 2px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u19124_text {
  7251. border-width:0px;
  7252. word-wrap:break-word;
  7253. text-transform:none;
  7254. visibility:hidden;
  7255. }
  7256. #u19125_img {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:74px;
  7262. height:30px;
  7263. }
  7264. #u19125 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:714px;
  7268. top:238px;
  7269. width:74px;
  7270. height:30px;
  7271. display:flex;
  7272. }
  7273. #u19125 .text {
  7274. position:absolute;
  7275. align-self:center;
  7276. padding:2px 2px 2px 2px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u19125_text {
  7281. border-width:0px;
  7282. word-wrap:break-word;
  7283. text-transform:none;
  7284. visibility:hidden;
  7285. }
  7286. #u19126_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:35px;
  7292. height:30px;
  7293. }
  7294. #u19126 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:268px;
  7299. width:35px;
  7300. height:30px;
  7301. display:flex;
  7302. }
  7303. #u19126 .text {
  7304. position:absolute;
  7305. align-self:center;
  7306. padding:2px 2px 2px 2px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u19126_text {
  7311. border-width:0px;
  7312. word-wrap:break-word;
  7313. text-transform:none;
  7314. visibility:hidden;
  7315. }
  7316. #u19127_img {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:66px;
  7322. height:30px;
  7323. }
  7324. #u19127 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:35px;
  7328. top:268px;
  7329. width:66px;
  7330. height:30px;
  7331. display:flex;
  7332. }
  7333. #u19127 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 2px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u19127_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. visibility:hidden;
  7345. }
  7346. #u19128_img {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:67px;
  7352. height:30px;
  7353. }
  7354. #u19128 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:101px;
  7358. top:268px;
  7359. width:67px;
  7360. height:30px;
  7361. display:flex;
  7362. }
  7363. #u19128 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:2px 2px 2px 2px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u19128_text {
  7371. border-width:0px;
  7372. word-wrap:break-word;
  7373. text-transform:none;
  7374. visibility:hidden;
  7375. }
  7376. #u19129_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:68px;
  7382. height:30px;
  7383. }
  7384. #u19129 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:168px;
  7388. top:268px;
  7389. width:68px;
  7390. height:30px;
  7391. display:flex;
  7392. }
  7393. #u19129 .text {
  7394. position:absolute;
  7395. align-self:center;
  7396. padding:2px 2px 2px 2px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u19129_text {
  7401. border-width:0px;
  7402. word-wrap:break-word;
  7403. text-transform:none;
  7404. visibility:hidden;
  7405. }
  7406. #u19130_img {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:68px;
  7412. height:30px;
  7413. }
  7414. #u19130 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:236px;
  7418. top:268px;
  7419. width:68px;
  7420. height:30px;
  7421. display:flex;
  7422. }
  7423. #u19130 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 2px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u19130_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u19131_img {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:68px;
  7442. height:30px;
  7443. }
  7444. #u19131 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:304px;
  7448. top:268px;
  7449. width:68px;
  7450. height:30px;
  7451. display:flex;
  7452. }
  7453. #u19131 .text {
  7454. position:absolute;
  7455. align-self:center;
  7456. padding:2px 2px 2px 2px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u19131_text {
  7461. border-width:0px;
  7462. word-wrap:break-word;
  7463. text-transform:none;
  7464. visibility:hidden;
  7465. }
  7466. #u19132_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:66px;
  7472. height:30px;
  7473. }
  7474. #u19132 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:372px;
  7478. top:268px;
  7479. width:66px;
  7480. height:30px;
  7481. display:flex;
  7482. }
  7483. #u19132 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 2px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u19132_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u19133_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:70px;
  7502. height:30px;
  7503. }
  7504. #u19133 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:438px;
  7508. top:268px;
  7509. width:70px;
  7510. height:30px;
  7511. display:flex;
  7512. }
  7513. #u19133 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:2px 2px 2px 2px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u19133_text {
  7521. border-width:0px;
  7522. word-wrap:break-word;
  7523. text-transform:none;
  7524. visibility:hidden;
  7525. }
  7526. #u19134_img {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:70px;
  7532. height:30px;
  7533. }
  7534. #u19134 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:508px;
  7538. top:268px;
  7539. width:70px;
  7540. height:30px;
  7541. display:flex;
  7542. }
  7543. #u19134 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 2px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u19134_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. visibility:hidden;
  7555. }
  7556. #u19135_img {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:66px;
  7562. height:30px;
  7563. }
  7564. #u19135 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:578px;
  7568. top:268px;
  7569. width:66px;
  7570. height:30px;
  7571. display:flex;
  7572. }
  7573. #u19135 .text {
  7574. position:absolute;
  7575. align-self:center;
  7576. padding:2px 2px 2px 2px;
  7577. box-sizing:border-box;
  7578. width:100%;
  7579. }
  7580. #u19135_text {
  7581. border-width:0px;
  7582. word-wrap:break-word;
  7583. text-transform:none;
  7584. visibility:hidden;
  7585. }
  7586. #u19136_img {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:70px;
  7592. height:30px;
  7593. }
  7594. #u19136 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:644px;
  7598. top:268px;
  7599. width:70px;
  7600. height:30px;
  7601. display:flex;
  7602. }
  7603. #u19136 .text {
  7604. position:absolute;
  7605. align-self:center;
  7606. padding:2px 2px 2px 2px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u19136_text {
  7611. border-width:0px;
  7612. word-wrap:break-word;
  7613. text-transform:none;
  7614. visibility:hidden;
  7615. }
  7616. #u19137_img {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:74px;
  7622. height:30px;
  7623. }
  7624. #u19137 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:714px;
  7628. top:268px;
  7629. width:74px;
  7630. height:30px;
  7631. display:flex;
  7632. }
  7633. #u19137 .text {
  7634. position:absolute;
  7635. align-self:center;
  7636. padding:2px 2px 2px 2px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u19137_text {
  7641. border-width:0px;
  7642. word-wrap:break-word;
  7643. text-transform:none;
  7644. visibility:hidden;
  7645. }
  7646. #u19138_img {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:35px;
  7652. height:30px;
  7653. }
  7654. #u19138 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:298px;
  7659. width:35px;
  7660. height:30px;
  7661. display:flex;
  7662. }
  7663. #u19138 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:2px 2px 2px 2px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u19138_text {
  7671. border-width:0px;
  7672. word-wrap:break-word;
  7673. text-transform:none;
  7674. visibility:hidden;
  7675. }
  7676. #u19139_img {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:66px;
  7682. height:30px;
  7683. }
  7684. #u19139 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:35px;
  7688. top:298px;
  7689. width:66px;
  7690. height:30px;
  7691. display:flex;
  7692. }
  7693. #u19139 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 2px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u19139_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u19140_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:67px;
  7712. height:30px;
  7713. }
  7714. #u19140 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:101px;
  7718. top:298px;
  7719. width:67px;
  7720. height:30px;
  7721. display:flex;
  7722. }
  7723. #u19140 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u19140_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u19141_img {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:68px;
  7742. height:30px;
  7743. }
  7744. #u19141 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:168px;
  7748. top:298px;
  7749. width:68px;
  7750. height:30px;
  7751. display:flex;
  7752. }
  7753. #u19141 .text {
  7754. position:absolute;
  7755. align-self:center;
  7756. padding:2px 2px 2px 2px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u19141_text {
  7761. border-width:0px;
  7762. word-wrap:break-word;
  7763. text-transform:none;
  7764. visibility:hidden;
  7765. }
  7766. #u19142_img {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:0px;
  7770. top:0px;
  7771. width:68px;
  7772. height:30px;
  7773. }
  7774. #u19142 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:236px;
  7778. top:298px;
  7779. width:68px;
  7780. height:30px;
  7781. display:flex;
  7782. }
  7783. #u19142 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:2px 2px 2px 2px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u19142_text {
  7791. border-width:0px;
  7792. word-wrap:break-word;
  7793. text-transform:none;
  7794. visibility:hidden;
  7795. }
  7796. #u19143_img {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:68px;
  7802. height:30px;
  7803. }
  7804. #u19143 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:304px;
  7808. top:298px;
  7809. width:68px;
  7810. height:30px;
  7811. display:flex;
  7812. }
  7813. #u19143 .text {
  7814. position:absolute;
  7815. align-self:center;
  7816. padding:2px 2px 2px 2px;
  7817. box-sizing:border-box;
  7818. width:100%;
  7819. }
  7820. #u19143_text {
  7821. border-width:0px;
  7822. word-wrap:break-word;
  7823. text-transform:none;
  7824. visibility:hidden;
  7825. }
  7826. #u19144_img {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:66px;
  7832. height:30px;
  7833. }
  7834. #u19144 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:372px;
  7838. top:298px;
  7839. width:66px;
  7840. height:30px;
  7841. display:flex;
  7842. }
  7843. #u19144 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:2px 2px 2px 2px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u19144_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. visibility:hidden;
  7855. }
  7856. #u19145_img {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:70px;
  7862. height:30px;
  7863. }
  7864. #u19145 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:438px;
  7868. top:298px;
  7869. width:70px;
  7870. height:30px;
  7871. display:flex;
  7872. }
  7873. #u19145 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 2px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u19145_text {
  7881. border-width:0px;
  7882. word-wrap:break-word;
  7883. text-transform:none;
  7884. visibility:hidden;
  7885. }
  7886. #u19146_img {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:70px;
  7892. height:30px;
  7893. }
  7894. #u19146 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:508px;
  7898. top:298px;
  7899. width:70px;
  7900. height:30px;
  7901. display:flex;
  7902. }
  7903. #u19146 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:2px 2px 2px 2px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u19146_text {
  7911. border-width:0px;
  7912. word-wrap:break-word;
  7913. text-transform:none;
  7914. visibility:hidden;
  7915. }
  7916. #u19147_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:66px;
  7922. height:30px;
  7923. }
  7924. #u19147 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:578px;
  7928. top:298px;
  7929. width:66px;
  7930. height:30px;
  7931. display:flex;
  7932. }
  7933. #u19147 .text {
  7934. position:absolute;
  7935. align-self:center;
  7936. padding:2px 2px 2px 2px;
  7937. box-sizing:border-box;
  7938. width:100%;
  7939. }
  7940. #u19147_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. visibility:hidden;
  7945. }
  7946. #u19148_img {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:70px;
  7952. height:30px;
  7953. }
  7954. #u19148 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:644px;
  7958. top:298px;
  7959. width:70px;
  7960. height:30px;
  7961. display:flex;
  7962. }
  7963. #u19148 .text {
  7964. position:absolute;
  7965. align-self:center;
  7966. padding:2px 2px 2px 2px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u19148_text {
  7971. border-width:0px;
  7972. word-wrap:break-word;
  7973. text-transform:none;
  7974. visibility:hidden;
  7975. }
  7976. #u19149_img {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:0px;
  7980. top:0px;
  7981. width:74px;
  7982. height:30px;
  7983. }
  7984. #u19149 {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:714px;
  7988. top:298px;
  7989. width:74px;
  7990. height:30px;
  7991. display:flex;
  7992. }
  7993. #u19149 .text {
  7994. position:absolute;
  7995. align-self:center;
  7996. padding:2px 2px 2px 2px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u19149_text {
  8001. border-width:0px;
  8002. word-wrap:break-word;
  8003. text-transform:none;
  8004. visibility:hidden;
  8005. }
  8006. #u19150 label {
  8007. left:0px;
  8008. width:100%;
  8009. }
  8010. #u19150_img {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:12px;
  8016. height:12px;
  8017. }
  8018. #u19150 {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:356px;
  8022. top:312px;
  8023. width:69px;
  8024. height:16px;
  8025. display:flex;
  8026. }
  8027. #u19150 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:0px 2px 0px 2px;
  8031. box-sizing:border-box;
  8032. }
  8033. #u19150_img.selected {
  8034. }
  8035. #u19150.selected {
  8036. }
  8037. #u19150_img.disabled {
  8038. }
  8039. #u19150.disabled {
  8040. }
  8041. #u19150_img.selectedDisabled {
  8042. }
  8043. #u19150.selectedDisabled {
  8044. }
  8045. #u19150_text {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:14px;
  8049. top:0px;
  8050. width:53px;
  8051. word-wrap:break-word;
  8052. text-transform:none;
  8053. visibility:hidden;
  8054. }
  8055. #u19150_input {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:0px;
  8061. height:0px;
  8062. opacity:0;
  8063. }
  8064. #u19151 label {
  8065. left:0px;
  8066. width:100%;
  8067. }
  8068. #u19151_img {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:12px;
  8074. height:12px;
  8075. }
  8076. #u19151 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:356px;
  8080. top:340px;
  8081. width:69px;
  8082. height:16px;
  8083. display:flex;
  8084. }
  8085. #u19151 .text {
  8086. position:absolute;
  8087. align-self:center;
  8088. padding:0px 2px 0px 2px;
  8089. box-sizing:border-box;
  8090. }
  8091. #u19151_img.selected {
  8092. }
  8093. #u19151.selected {
  8094. }
  8095. #u19151_img.disabled {
  8096. }
  8097. #u19151.disabled {
  8098. }
  8099. #u19151_img.selectedDisabled {
  8100. }
  8101. #u19151.selectedDisabled {
  8102. }
  8103. #u19151_text {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:14px;
  8107. top:0px;
  8108. width:53px;
  8109. word-wrap:break-word;
  8110. text-transform:none;
  8111. visibility:hidden;
  8112. }
  8113. #u19151_input {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:0px;
  8119. height:0px;
  8120. opacity:0;
  8121. }
  8122. #u19152_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:623px;
  8128. height:350px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 0);
  8131. border:none;
  8132. border-top:0px;
  8133. border-right:0px;
  8134. border-bottom:0px;
  8135. border-radius:0px;
  8136. border-top-left-radius:0px;
  8137. border-bottom-left-radius:0px;
  8138. -moz-box-shadow:none;
  8139. -webkit-box-shadow:none;
  8140. box-shadow:none;
  8141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:14px;
  8145. color:#D9001B;
  8146. }
  8147. #u19152 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:368px;
  8151. top:625px;
  8152. width:623px;
  8153. height:350px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:14px;
  8159. color:#D9001B;
  8160. }
  8161. #u19152 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:5px 0px 5px 0px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u19152_text {
  8169. border-width:0px;
  8170. white-space:nowrap;
  8171. text-transform:none;
  8172. }
  8173. #u19153 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:0px;
  8179. height:0px;
  8180. }
  8181. #u19154 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:0px;
  8187. height:0px;
  8188. }
  8189. #u19155_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:380px;
  8195. height:164px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 1);
  8198. box-sizing:border-box;
  8199. border-width:1px;
  8200. border-style:solid;
  8201. border-color:rgba(242, 242, 242, 1);
  8202. border-radius:4px;
  8203. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8204. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8205. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8206. font-family:'Microsoft YaHei', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. }
  8210. #u19155 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:1019px;
  8214. top:777px;
  8215. width:380px;
  8216. height:164px;
  8217. display:flex;
  8218. font-family:'Microsoft YaHei', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. }
  8222. #u19155 .text {
  8223. position:absolute;
  8224. align-self:center;
  8225. padding:2px 2px 2px 2px;
  8226. box-sizing:border-box;
  8227. width:100%;
  8228. }
  8229. #u19155_text {
  8230. border-width:0px;
  8231. word-wrap:break-word;
  8232. text-transform:none;
  8233. visibility:hidden;
  8234. }
  8235. #u19156_div {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:0px;
  8239. top:0px;
  8240. width:299px;
  8241. height:44px;
  8242. background:inherit;
  8243. background-color:rgba(255, 255, 255, 0);
  8244. border:none;
  8245. border-radius:0px;
  8246. -moz-box-shadow:none;
  8247. -webkit-box-shadow:none;
  8248. box-shadow:none;
  8249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8250. font-weight:400;
  8251. font-style:normal;
  8252. font-size:14px;
  8253. color:#666666;
  8254. line-height:22px;
  8255. }
  8256. #u19156 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:1079px;
  8260. top:832px;
  8261. width:299px;
  8262. height:44px;
  8263. display:flex;
  8264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8265. font-weight:400;
  8266. font-style:normal;
  8267. font-size:14px;
  8268. color:#666666;
  8269. line-height:22px;
  8270. }
  8271. #u19156 .text {
  8272. position:absolute;
  8273. align-self:flex-start;
  8274. padding:0px 0px 0px 0px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u19156_text {
  8279. border-width:0px;
  8280. word-wrap:break-word;
  8281. text-transform:none;
  8282. }
  8283. #u19157_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:91px;
  8289. height:21px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 0);
  8292. border:none;
  8293. border-radius:0px;
  8294. -moz-box-shadow:none;
  8295. -webkit-box-shadow:none;
  8296. box-shadow:none;
  8297. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8298. font-weight:650;
  8299. font-style:normal;
  8300. font-size:18px;
  8301. color:#000000;
  8302. line-height:22px;
  8303. }
  8304. #u19157 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:1079px;
  8308. top:802px;
  8309. width:91px;
  8310. height:21px;
  8311. display:flex;
  8312. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8313. font-weight:650;
  8314. font-style:normal;
  8315. font-size:18px;
  8316. color:#000000;
  8317. line-height:22px;
  8318. }
  8319. #u19157 .text {
  8320. position:absolute;
  8321. align-self:flex-start;
  8322. padding:0px 0px 0px 0px;
  8323. box-sizing:border-box;
  8324. width:100%;
  8325. }
  8326. #u19157_text {
  8327. border-width:0px;
  8328. white-space:nowrap;
  8329. text-transform:none;
  8330. }
  8331. #u19158_div {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:61px;
  8337. height:32px;
  8338. background:inherit;
  8339. background-color:rgba(24, 144, 255, 1);
  8340. border:none;
  8341. border-radius:4px;
  8342. -moz-box-shadow:none;
  8343. -webkit-box-shadow:none;
  8344. box-shadow:none;
  8345. font-family:'Microsoft YaHei', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:14px;
  8349. color:#FFFFFF;
  8350. }
  8351. #u19158 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:1321px;
  8355. top:892px;
  8356. width:61px;
  8357. height:32px;
  8358. display:flex;
  8359. font-family:'Microsoft YaHei', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:14px;
  8363. color:#FFFFFF;
  8364. }
  8365. #u19158 .text {
  8366. position:absolute;
  8367. align-self:center;
  8368. padding:2px 16px 2px 16px;
  8369. box-sizing:border-box;
  8370. width:100%;
  8371. }
  8372. #u19158_text {
  8373. border-width:0px;
  8374. white-space:nowrap;
  8375. text-transform:none;
  8376. }
  8377. #u19159_div {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:66px;
  8383. height:32px;
  8384. background:inherit;
  8385. background-color:rgba(255, 255, 255, 1);
  8386. box-sizing:border-box;
  8387. border-width:1px;
  8388. border-style:solid;
  8389. border-color:rgba(217, 217, 217, 1);
  8390. border-radius:4px;
  8391. -moz-box-shadow:none;
  8392. -webkit-box-shadow:none;
  8393. box-shadow:none;
  8394. font-family:'Microsoft YaHei', sans-serif;
  8395. font-weight:400;
  8396. font-style:normal;
  8397. font-size:14px;
  8398. color:rgba(0, 0, 0, 0.647058823529412);
  8399. line-height:21px;
  8400. }
  8401. #u19159 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:1239px;
  8405. top:892px;
  8406. width:66px;
  8407. height:32px;
  8408. display:flex;
  8409. font-family:'Microsoft YaHei', sans-serif;
  8410. font-weight:400;
  8411. font-style:normal;
  8412. font-size:14px;
  8413. color:rgba(0, 0, 0, 0.647058823529412);
  8414. line-height:21px;
  8415. }
  8416. #u19159 .text {
  8417. position:absolute;
  8418. align-self:center;
  8419. padding:2px 16px 2px 16px;
  8420. box-sizing:border-box;
  8421. width:100%;
  8422. }
  8423. #u19159_text {
  8424. border-width:0px;
  8425. white-space:nowrap;
  8426. text-transform:none;
  8427. }
  8428. #u19160_img {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:20px;
  8434. height:20px;
  8435. }
  8436. #u19160 {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:1048px;
  8440. top:806px;
  8441. width:20px;
  8442. height:20px;
  8443. display:flex;
  8444. }
  8445. #u19160 .text {
  8446. position:absolute;
  8447. align-self:center;
  8448. padding:2px 2px 2px 2px;
  8449. box-sizing:border-box;
  8450. width:100%;
  8451. }
  8452. #u19160_text {
  8453. border-width:0px;
  8454. word-wrap:break-word;
  8455. text-transform:none;
  8456. visibility:hidden;
  8457. }
  8458. #u19161 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:0px;
  8462. top:0px;
  8463. width:0px;
  8464. height:0px;
  8465. }
  8466. #u19162 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:0px;
  8472. height:0px;
  8473. }
  8474. #u19163_div {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:0px;
  8478. top:0px;
  8479. width:380px;
  8480. height:164px;
  8481. background:inherit;
  8482. background-color:rgba(255, 255, 255, 1);
  8483. box-sizing:border-box;
  8484. border-width:1px;
  8485. border-style:solid;
  8486. border-color:rgba(242, 242, 242, 1);
  8487. border-radius:4px;
  8488. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8489. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8490. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8491. font-family:'Microsoft YaHei', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. }
  8495. #u19163 {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:1019px;
  8499. top:961px;
  8500. width:380px;
  8501. height:164px;
  8502. display:flex;
  8503. font-family:'Microsoft YaHei', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. }
  8507. #u19163 .text {
  8508. position:absolute;
  8509. align-self:center;
  8510. padding:2px 2px 2px 2px;
  8511. box-sizing:border-box;
  8512. width:100%;
  8513. }
  8514. #u19163_text {
  8515. border-width:0px;
  8516. word-wrap:break-word;
  8517. text-transform:none;
  8518. visibility:hidden;
  8519. }
  8520. #u19164_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:299px;
  8526. height:44px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 0);
  8529. border:none;
  8530. border-radius:0px;
  8531. -moz-box-shadow:none;
  8532. -webkit-box-shadow:none;
  8533. box-shadow:none;
  8534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:14px;
  8538. color:#666666;
  8539. line-height:22px;
  8540. }
  8541. #u19164 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:1079px;
  8545. top:1016px;
  8546. width:299px;
  8547. height:44px;
  8548. display:flex;
  8549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:14px;
  8553. color:#666666;
  8554. line-height:22px;
  8555. }
  8556. #u19164 .text {
  8557. position:absolute;
  8558. align-self:flex-start;
  8559. padding:0px 0px 0px 0px;
  8560. box-sizing:border-box;
  8561. width:100%;
  8562. }
  8563. #u19164_text {
  8564. border-width:0px;
  8565. word-wrap:break-word;
  8566. text-transform:none;
  8567. }
  8568. #u19165_div {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:0px;
  8572. top:0px;
  8573. width:91px;
  8574. height:21px;
  8575. background:inherit;
  8576. background-color:rgba(255, 255, 255, 0);
  8577. border:none;
  8578. border-radius:0px;
  8579. -moz-box-shadow:none;
  8580. -webkit-box-shadow:none;
  8581. box-shadow:none;
  8582. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8583. font-weight:650;
  8584. font-style:normal;
  8585. font-size:18px;
  8586. color:#000000;
  8587. line-height:22px;
  8588. }
  8589. #u19165 {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:1079px;
  8593. top:986px;
  8594. width:91px;
  8595. height:21px;
  8596. display:flex;
  8597. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8598. font-weight:650;
  8599. font-style:normal;
  8600. font-size:18px;
  8601. color:#000000;
  8602. line-height:22px;
  8603. }
  8604. #u19165 .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. #u19165_text {
  8612. border-width:0px;
  8613. white-space:nowrap;
  8614. text-transform:none;
  8615. }
  8616. #u19166_div {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:61px;
  8622. height:32px;
  8623. background:inherit;
  8624. background-color:rgba(24, 144, 255, 1);
  8625. border:none;
  8626. border-radius:4px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-family:'Microsoft YaHei', sans-serif;
  8631. font-weight:400;
  8632. font-style:normal;
  8633. font-size:14px;
  8634. color:#FFFFFF;
  8635. }
  8636. #u19166 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:1321px;
  8640. top:1076px;
  8641. width:61px;
  8642. height:32px;
  8643. display:flex;
  8644. font-family:'Microsoft YaHei', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:14px;
  8648. color:#FFFFFF;
  8649. }
  8650. #u19166 .text {
  8651. position:absolute;
  8652. align-self:center;
  8653. padding:2px 16px 2px 16px;
  8654. box-sizing:border-box;
  8655. width:100%;
  8656. }
  8657. #u19166_text {
  8658. border-width:0px;
  8659. white-space:nowrap;
  8660. text-transform:none;
  8661. }
  8662. #u19167_div {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:66px;
  8668. height:32px;
  8669. background:inherit;
  8670. background-color:rgba(255, 255, 255, 1);
  8671. box-sizing:border-box;
  8672. border-width:1px;
  8673. border-style:solid;
  8674. border-color:rgba(217, 217, 217, 1);
  8675. border-radius:4px;
  8676. -moz-box-shadow:none;
  8677. -webkit-box-shadow:none;
  8678. box-shadow:none;
  8679. font-family:'Microsoft YaHei', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:14px;
  8683. color:rgba(0, 0, 0, 0.647058823529412);
  8684. line-height:21px;
  8685. }
  8686. #u19167 {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:1239px;
  8690. top:1076px;
  8691. width:66px;
  8692. height:32px;
  8693. display:flex;
  8694. font-family:'Microsoft YaHei', sans-serif;
  8695. font-weight:400;
  8696. font-style:normal;
  8697. font-size:14px;
  8698. color:rgba(0, 0, 0, 0.647058823529412);
  8699. line-height:21px;
  8700. }
  8701. #u19167 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 16px 2px 16px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u19167_text {
  8709. border-width:0px;
  8710. white-space:nowrap;
  8711. text-transform:none;
  8712. }
  8713. #u19168_img {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:20px;
  8719. height:20px;
  8720. }
  8721. #u19168 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:1048px;
  8725. top:990px;
  8726. width:20px;
  8727. height:20px;
  8728. display:flex;
  8729. }
  8730. #u19168 .text {
  8731. position:absolute;
  8732. align-self:center;
  8733. padding:2px 2px 2px 2px;
  8734. box-sizing:border-box;
  8735. width:100%;
  8736. }
  8737. #u19168_text {
  8738. border-width:0px;
  8739. word-wrap:break-word;
  8740. text-transform:none;
  8741. visibility:hidden;
  8742. }
  8743. #u19169 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:0px;
  8749. height:0px;
  8750. }
  8751. #u19170 {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:0px;
  8755. top:0px;
  8756. width:0px;
  8757. height:0px;
  8758. }
  8759. #u19171_div {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:380px;
  8765. height:164px;
  8766. background:inherit;
  8767. background-color:rgba(255, 255, 255, 1);
  8768. box-sizing:border-box;
  8769. border-width:1px;
  8770. border-style:solid;
  8771. border-color:rgba(242, 242, 242, 1);
  8772. border-radius:4px;
  8773. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8774. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8775. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8776. font-family:'Microsoft YaHei', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. }
  8780. #u19171 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:1421px;
  8784. top:777px;
  8785. width:380px;
  8786. height:164px;
  8787. display:flex;
  8788. font-family:'Microsoft YaHei', sans-serif;
  8789. font-weight:400;
  8790. font-style:normal;
  8791. }
  8792. #u19171 .text {
  8793. position:absolute;
  8794. align-self:center;
  8795. padding:2px 2px 2px 2px;
  8796. box-sizing:border-box;
  8797. width:100%;
  8798. }
  8799. #u19171_text {
  8800. border-width:0px;
  8801. word-wrap:break-word;
  8802. text-transform:none;
  8803. visibility:hidden;
  8804. }
  8805. #u19172_div {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:299px;
  8811. height:44px;
  8812. background:inherit;
  8813. background-color:rgba(255, 255, 255, 0);
  8814. border:none;
  8815. border-radius:0px;
  8816. -moz-box-shadow:none;
  8817. -webkit-box-shadow:none;
  8818. box-shadow:none;
  8819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:14px;
  8823. color:#666666;
  8824. line-height:22px;
  8825. }
  8826. #u19172 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:1481px;
  8830. top:832px;
  8831. width:299px;
  8832. height:44px;
  8833. display:flex;
  8834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:14px;
  8838. color:#666666;
  8839. line-height:22px;
  8840. }
  8841. #u19172 .text {
  8842. position:absolute;
  8843. align-self:flex-start;
  8844. padding:0px 0px 0px 0px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u19172_text {
  8849. border-width:0px;
  8850. word-wrap:break-word;
  8851. text-transform:none;
  8852. }
  8853. #u19173_div {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:91px;
  8859. height:21px;
  8860. background:inherit;
  8861. background-color:rgba(255, 255, 255, 0);
  8862. border:none;
  8863. border-radius:0px;
  8864. -moz-box-shadow:none;
  8865. -webkit-box-shadow:none;
  8866. box-shadow:none;
  8867. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8868. font-weight:650;
  8869. font-style:normal;
  8870. font-size:18px;
  8871. color:#000000;
  8872. line-height:22px;
  8873. }
  8874. #u19173 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:1481px;
  8878. top:802px;
  8879. width:91px;
  8880. height:21px;
  8881. display:flex;
  8882. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8883. font-weight:650;
  8884. font-style:normal;
  8885. font-size:18px;
  8886. color:#000000;
  8887. line-height:22px;
  8888. }
  8889. #u19173 .text {
  8890. position:absolute;
  8891. align-self:flex-start;
  8892. padding:0px 0px 0px 0px;
  8893. box-sizing:border-box;
  8894. width:100%;
  8895. }
  8896. #u19173_text {
  8897. border-width:0px;
  8898. white-space:nowrap;
  8899. text-transform:none;
  8900. }
  8901. #u19174_div {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:0px;
  8905. top:0px;
  8906. width:61px;
  8907. height:32px;
  8908. background:inherit;
  8909. background-color:rgba(24, 144, 255, 1);
  8910. border:none;
  8911. border-radius:4px;
  8912. -moz-box-shadow:none;
  8913. -webkit-box-shadow:none;
  8914. box-shadow:none;
  8915. font-family:'Microsoft YaHei', sans-serif;
  8916. font-weight:400;
  8917. font-style:normal;
  8918. font-size:14px;
  8919. color:#FFFFFF;
  8920. }
  8921. #u19174 {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:1723px;
  8925. top:892px;
  8926. width:61px;
  8927. height:32px;
  8928. display:flex;
  8929. font-family:'Microsoft YaHei', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:14px;
  8933. color:#FFFFFF;
  8934. }
  8935. #u19174 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:2px 16px 2px 16px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u19174_text {
  8943. border-width:0px;
  8944. white-space:nowrap;
  8945. text-transform:none;
  8946. }
  8947. #u19175_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:66px;
  8953. height:32px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 1);
  8956. box-sizing:border-box;
  8957. border-width:1px;
  8958. border-style:solid;
  8959. border-color:rgba(217, 217, 217, 1);
  8960. border-radius:4px;
  8961. -moz-box-shadow:none;
  8962. -webkit-box-shadow:none;
  8963. box-shadow:none;
  8964. font-family:'Microsoft YaHei', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:14px;
  8968. color:rgba(0, 0, 0, 0.647058823529412);
  8969. line-height:21px;
  8970. }
  8971. #u19175 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:1641px;
  8975. top:892px;
  8976. width:66px;
  8977. height:32px;
  8978. display:flex;
  8979. font-family:'Microsoft YaHei', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. color:rgba(0, 0, 0, 0.647058823529412);
  8984. line-height:21px;
  8985. }
  8986. #u19175 .text {
  8987. position:absolute;
  8988. align-self:center;
  8989. padding:2px 16px 2px 16px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u19175_text {
  8994. border-width:0px;
  8995. white-space:nowrap;
  8996. text-transform:none;
  8997. }
  8998. #u19176_img {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:20px;
  9004. height:20px;
  9005. }
  9006. #u19176 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:1450px;
  9010. top:806px;
  9011. width:20px;
  9012. height:20px;
  9013. display:flex;
  9014. }
  9015. #u19176 .text {
  9016. position:absolute;
  9017. align-self:center;
  9018. padding:2px 2px 2px 2px;
  9019. box-sizing:border-box;
  9020. width:100%;
  9021. }
  9022. #u19176_text {
  9023. border-width:0px;
  9024. word-wrap:break-word;
  9025. text-transform:none;
  9026. visibility:hidden;
  9027. }
  9028. #u19177 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:0px;
  9032. top:0px;
  9033. width:0px;
  9034. height:0px;
  9035. }
  9036. #u19178 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:0px;
  9042. height:0px;
  9043. }
  9044. #u19179_div {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:380px;
  9050. height:164px;
  9051. background:inherit;
  9052. background-color:rgba(255, 255, 255, 1);
  9053. box-sizing:border-box;
  9054. border-width:1px;
  9055. border-style:solid;
  9056. border-color:rgba(242, 242, 242, 1);
  9057. border-radius:4px;
  9058. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9059. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9060. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9061. font-family:'Microsoft YaHei', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. }
  9065. #u19179 {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:1421px;
  9069. top:961px;
  9070. width:380px;
  9071. height:164px;
  9072. display:flex;
  9073. font-family:'Microsoft YaHei', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. }
  9077. #u19179 .text {
  9078. position:absolute;
  9079. align-self:center;
  9080. padding:2px 2px 2px 2px;
  9081. box-sizing:border-box;
  9082. width:100%;
  9083. }
  9084. #u19179_text {
  9085. border-width:0px;
  9086. word-wrap:break-word;
  9087. text-transform:none;
  9088. visibility:hidden;
  9089. }
  9090. #u19180_div {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:299px;
  9096. height:66px;
  9097. background:inherit;
  9098. background-color:rgba(255, 255, 255, 0);
  9099. border:none;
  9100. border-radius:0px;
  9101. -moz-box-shadow:none;
  9102. -webkit-box-shadow:none;
  9103. box-shadow:none;
  9104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9105. font-weight:400;
  9106. font-style:normal;
  9107. font-size:14px;
  9108. color:#666666;
  9109. line-height:22px;
  9110. }
  9111. #u19180 {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:1481px;
  9115. top:1016px;
  9116. width:299px;
  9117. height:66px;
  9118. display:flex;
  9119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9120. font-weight:400;
  9121. font-style:normal;
  9122. font-size:14px;
  9123. color:#666666;
  9124. line-height:22px;
  9125. }
  9126. #u19180 .text {
  9127. position:absolute;
  9128. align-self:flex-start;
  9129. padding:0px 0px 0px 0px;
  9130. box-sizing:border-box;
  9131. width:100%;
  9132. }
  9133. #u19180_text {
  9134. border-width:0px;
  9135. word-wrap:break-word;
  9136. text-transform:none;
  9137. }
  9138. #u19181_div {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:0px;
  9142. top:0px;
  9143. width:127px;
  9144. height:21px;
  9145. background:inherit;
  9146. background-color:rgba(255, 255, 255, 0);
  9147. border:none;
  9148. border-radius:0px;
  9149. -moz-box-shadow:none;
  9150. -webkit-box-shadow:none;
  9151. box-shadow:none;
  9152. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9153. font-weight:650;
  9154. font-style:normal;
  9155. font-size:18px;
  9156. color:#000000;
  9157. line-height:22px;
  9158. }
  9159. #u19181 {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:1481px;
  9163. top:986px;
  9164. width:127px;
  9165. height:21px;
  9166. display:flex;
  9167. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9168. font-weight:650;
  9169. font-style:normal;
  9170. font-size:18px;
  9171. color:#000000;
  9172. line-height:22px;
  9173. }
  9174. #u19181 .text {
  9175. position:absolute;
  9176. align-self:flex-start;
  9177. padding:0px 0px 0px 0px;
  9178. box-sizing:border-box;
  9179. width:100%;
  9180. }
  9181. #u19181_text {
  9182. border-width:0px;
  9183. white-space:nowrap;
  9184. text-transform:none;
  9185. }
  9186. #u19182_div {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:61px;
  9192. height:32px;
  9193. background:inherit;
  9194. background-color:rgba(24, 144, 255, 1);
  9195. border:none;
  9196. border-radius:4px;
  9197. -moz-box-shadow:none;
  9198. -webkit-box-shadow:none;
  9199. box-shadow:none;
  9200. font-family:'Microsoft YaHei', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:14px;
  9204. color:#FFFFFF;
  9205. }
  9206. #u19182 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:1723px;
  9210. top:1076px;
  9211. width:61px;
  9212. height:32px;
  9213. display:flex;
  9214. font-family:'Microsoft YaHei', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:14px;
  9218. color:#FFFFFF;
  9219. }
  9220. #u19182 .text {
  9221. position:absolute;
  9222. align-self:center;
  9223. padding:2px 16px 2px 16px;
  9224. box-sizing:border-box;
  9225. width:100%;
  9226. }
  9227. #u19182_text {
  9228. border-width:0px;
  9229. white-space:nowrap;
  9230. text-transform:none;
  9231. }
  9232. #u19183_div {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:0px;
  9236. top:0px;
  9237. width:66px;
  9238. height:32px;
  9239. background:inherit;
  9240. background-color:rgba(255, 255, 255, 1);
  9241. box-sizing:border-box;
  9242. border-width:1px;
  9243. border-style:solid;
  9244. border-color:rgba(217, 217, 217, 1);
  9245. border-radius:4px;
  9246. -moz-box-shadow:none;
  9247. -webkit-box-shadow:none;
  9248. box-shadow:none;
  9249. font-family:'Microsoft YaHei', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:14px;
  9253. color:rgba(0, 0, 0, 0.647058823529412);
  9254. line-height:21px;
  9255. }
  9256. #u19183 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:1641px;
  9260. top:1076px;
  9261. width:66px;
  9262. height:32px;
  9263. display:flex;
  9264. font-family:'Microsoft YaHei', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. font-size:14px;
  9268. color:rgba(0, 0, 0, 0.647058823529412);
  9269. line-height:21px;
  9270. }
  9271. #u19183 .text {
  9272. position:absolute;
  9273. align-self:center;
  9274. padding:2px 16px 2px 16px;
  9275. box-sizing:border-box;
  9276. width:100%;
  9277. }
  9278. #u19183_text {
  9279. border-width:0px;
  9280. white-space:nowrap;
  9281. text-transform:none;
  9282. }
  9283. #u19184_img {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:0px;
  9287. top:0px;
  9288. width:20px;
  9289. height:20px;
  9290. }
  9291. #u19184 {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:1450px;
  9295. top:990px;
  9296. width:20px;
  9297. height:20px;
  9298. display:flex;
  9299. }
  9300. #u19184 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:2px 2px 2px 2px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u19184_text {
  9308. border-width:0px;
  9309. word-wrap:break-word;
  9310. text-transform:none;
  9311. visibility:hidden;
  9312. }
  9313. #u19186 {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:0px;
  9319. height:0px;
  9320. }
  9321. #u19187_div {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:200px;
  9327. height:1193px;
  9328. background:inherit;
  9329. background-color:rgba(255, 255, 255, 1);
  9330. border:none;
  9331. border-radius:0px;
  9332. -moz-box-shadow:none;
  9333. -webkit-box-shadow:none;
  9334. box-shadow:none;
  9335. }
  9336. #u19187 {
  9337. border-width:0px;
  9338. position:absolute;
  9339. left:120px;
  9340. top:50px;
  9341. width:200px;
  9342. height:1193px;
  9343. display:flex;
  9344. }
  9345. #u19187 .text {
  9346. position:absolute;
  9347. align-self:center;
  9348. padding:2px 2px 2px 2px;
  9349. box-sizing:border-box;
  9350. width:100%;
  9351. }
  9352. #u19187_text {
  9353. border-width:0px;
  9354. word-wrap:break-word;
  9355. text-transform:none;
  9356. visibility:hidden;
  9357. }
  9358. #u19188_div {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:0px;
  9362. top:0px;
  9363. width:200px;
  9364. height:60px;
  9365. background:inherit;
  9366. background-color:rgba(224, 231, 247, 1);
  9367. border:none;
  9368. border-radius:0px;
  9369. -moz-box-shadow:none;
  9370. -webkit-box-shadow:none;
  9371. box-shadow:none;
  9372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9373. font-weight:500;
  9374. font-style:normal;
  9375. font-size:18px;
  9376. }
  9377. #u19188 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:120px;
  9381. top:50px;
  9382. width:200px;
  9383. height:60px;
  9384. display:flex;
  9385. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9386. font-weight:500;
  9387. font-style:normal;
  9388. font-size:18px;
  9389. }
  9390. #u19188 .text {
  9391. position:absolute;
  9392. align-self:center;
  9393. padding:0px 0px 0px 20px;
  9394. box-sizing:border-box;
  9395. width:100%;
  9396. }
  9397. #u19188_text {
  9398. border-width:0px;
  9399. word-wrap:break-word;
  9400. text-transform:none;
  9401. }
  9402. #u19189_div {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:65px;
  9408. height:22px;
  9409. background:inherit;
  9410. background-color:rgba(255, 255, 255, 0);
  9411. border:none;
  9412. border-radius:0px;
  9413. -moz-box-shadow:none;
  9414. -webkit-box-shadow:none;
  9415. box-shadow:none;
  9416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9417. font-weight:400;
  9418. font-style:normal;
  9419. font-size:16px;
  9420. }
  9421. #u19189 {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:150px;
  9425. top:164px;
  9426. width:65px;
  9427. height:22px;
  9428. display:flex;
  9429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9430. font-weight:400;
  9431. font-style:normal;
  9432. font-size:16px;
  9433. }
  9434. #u19189 .text {
  9435. position:absolute;
  9436. align-self:flex-start;
  9437. padding:0px 0px 0px 0px;
  9438. box-sizing:border-box;
  9439. width:100%;
  9440. }
  9441. #u19189_text {
  9442. border-width:0px;
  9443. white-space:nowrap;
  9444. text-transform:none;
  9445. }
  9446. #u19190_div {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:61px;
  9452. height:17px;
  9453. background:inherit;
  9454. background-color:rgba(255, 255, 255, 0);
  9455. border:none;
  9456. border-radius:0px;
  9457. -moz-box-shadow:none;
  9458. -webkit-box-shadow:none;
  9459. box-shadow:none;
  9460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9461. font-weight:400;
  9462. font-style:normal;
  9463. font-size:12px;
  9464. color:#AAAAAA;
  9465. }
  9466. #u19190 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:150px;
  9470. top:128px;
  9471. width:61px;
  9472. height:17px;
  9473. display:flex;
  9474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9475. font-weight:400;
  9476. font-style:normal;
  9477. font-size:12px;
  9478. color:#AAAAAA;
  9479. }
  9480. #u19190 .text {
  9481. position:absolute;
  9482. align-self:flex-start;
  9483. padding:0px 0px 0px 0px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u19190_text {
  9488. border-width:0px;
  9489. white-space:nowrap;
  9490. text-transform:none;
  9491. }
  9492. #u19191_img {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:201px;
  9498. height:2px;
  9499. }
  9500. #u19191 {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:120px;
  9504. top:292px;
  9505. width:200px;
  9506. height:1px;
  9507. display:flex;
  9508. }
  9509. #u19191 .text {
  9510. position:absolute;
  9511. align-self:center;
  9512. padding:2px 2px 2px 2px;
  9513. box-sizing:border-box;
  9514. width:100%;
  9515. }
  9516. #u19191_text {
  9517. border-width:0px;
  9518. word-wrap:break-word;
  9519. text-transform:none;
  9520. visibility:hidden;
  9521. }
  9522. #u19192_div {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:65px;
  9528. height:22px;
  9529. background:inherit;
  9530. background-color:rgba(255, 255, 255, 0);
  9531. border:none;
  9532. border-radius:0px;
  9533. -moz-box-shadow:none;
  9534. -webkit-box-shadow:none;
  9535. box-shadow:none;
  9536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9537. font-weight:400;
  9538. font-style:normal;
  9539. font-size:16px;
  9540. }
  9541. #u19192 {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:150px;
  9545. top:248px;
  9546. width:65px;
  9547. height:22px;
  9548. display:flex;
  9549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9550. font-weight:400;
  9551. font-style:normal;
  9552. font-size:16px;
  9553. }
  9554. #u19192 .text {
  9555. position:absolute;
  9556. align-self:flex-start;
  9557. padding:0px 0px 0px 0px;
  9558. box-sizing:border-box;
  9559. width:100%;
  9560. }
  9561. #u19192_text {
  9562. border-width:0px;
  9563. white-space:nowrap;
  9564. text-transform:none;
  9565. }
  9566. #u19193_div {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:65px;
  9572. height:22px;
  9573. background:inherit;
  9574. background-color:rgba(255, 255, 255, 0);
  9575. border:none;
  9576. border-radius:0px;
  9577. -moz-box-shadow:none;
  9578. -webkit-box-shadow:none;
  9579. box-shadow:none;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:16px;
  9584. }
  9585. #u19193 {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:150px;
  9589. top:349px;
  9590. width:65px;
  9591. height:22px;
  9592. display:flex;
  9593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9594. font-weight:400;
  9595. font-style:normal;
  9596. font-size:16px;
  9597. }
  9598. #u19193 .text {
  9599. position:absolute;
  9600. align-self:flex-start;
  9601. padding:0px 0px 0px 0px;
  9602. box-sizing:border-box;
  9603. width:100%;
  9604. }
  9605. #u19193_text {
  9606. border-width:0px;
  9607. white-space:nowrap;
  9608. text-transform:none;
  9609. }
  9610. #u19194_div {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:49px;
  9616. height:17px;
  9617. background:inherit;
  9618. background-color:rgba(255, 255, 255, 0);
  9619. border:none;
  9620. border-radius:0px;
  9621. -moz-box-shadow:none;
  9622. -webkit-box-shadow:none;
  9623. box-shadow:none;
  9624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9625. font-weight:400;
  9626. font-style:normal;
  9627. font-size:12px;
  9628. color:#AAAAAA;
  9629. }
  9630. #u19194 {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:150px;
  9634. top:313px;
  9635. width:49px;
  9636. height:17px;
  9637. display:flex;
  9638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9639. font-weight:400;
  9640. font-style:normal;
  9641. font-size:12px;
  9642. color:#AAAAAA;
  9643. }
  9644. #u19194 .text {
  9645. position:absolute;
  9646. align-self:flex-start;
  9647. padding:0px 0px 0px 0px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u19194_text {
  9652. border-width:0px;
  9653. white-space:nowrap;
  9654. text-transform:none;
  9655. }
  9656. #u19195_div {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:65px;
  9662. height:22px;
  9663. background:inherit;
  9664. background-color:rgba(255, 255, 255, 0);
  9665. border:none;
  9666. border-radius:0px;
  9667. -moz-box-shadow:none;
  9668. -webkit-box-shadow:none;
  9669. box-shadow:none;
  9670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9671. font-weight:400;
  9672. font-style:normal;
  9673. font-size:16px;
  9674. }
  9675. #u19195 {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:150px;
  9679. top:391px;
  9680. width:65px;
  9681. height:22px;
  9682. display:flex;
  9683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9684. font-weight:400;
  9685. font-style:normal;
  9686. font-size:16px;
  9687. }
  9688. #u19195 .text {
  9689. position:absolute;
  9690. align-self:flex-start;
  9691. padding:0px 0px 0px 0px;
  9692. box-sizing:border-box;
  9693. width:100%;
  9694. }
  9695. #u19195_text {
  9696. border-width:0px;
  9697. white-space:nowrap;
  9698. text-transform:none;
  9699. }
  9700. #u19196_img {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:201px;
  9706. height:2px;
  9707. }
  9708. #u19196 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:120px;
  9712. top:473px;
  9713. width:200px;
  9714. height:1px;
  9715. display:flex;
  9716. }
  9717. #u19196 .text {
  9718. position:absolute;
  9719. align-self:center;
  9720. padding:2px 2px 2px 2px;
  9721. box-sizing:border-box;
  9722. width:100%;
  9723. }
  9724. #u19196_text {
  9725. border-width:0px;
  9726. word-wrap:break-word;
  9727. text-transform:none;
  9728. visibility:hidden;
  9729. }
  9730. #u19197_div {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:49px;
  9736. height:22px;
  9737. background:inherit;
  9738. background-color:rgba(255, 255, 255, 0);
  9739. border:none;
  9740. border-radius:0px;
  9741. -moz-box-shadow:none;
  9742. -webkit-box-shadow:none;
  9743. box-shadow:none;
  9744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9745. font-weight:400;
  9746. font-style:normal;
  9747. font-size:16px;
  9748. }
  9749. #u19197 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:150px;
  9753. top:530px;
  9754. width:49px;
  9755. height:22px;
  9756. display:flex;
  9757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:16px;
  9761. }
  9762. #u19197 .text {
  9763. position:absolute;
  9764. align-self:flex-start;
  9765. padding:0px 0px 0px 0px;
  9766. box-sizing:border-box;
  9767. width:100%;
  9768. }
  9769. #u19197_text {
  9770. border-width:0px;
  9771. white-space:nowrap;
  9772. text-transform:none;
  9773. }
  9774. #u19198_div {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:0px;
  9778. top:0px;
  9779. width:49px;
  9780. height:17px;
  9781. background:inherit;
  9782. background-color:rgba(255, 255, 255, 0);
  9783. border:none;
  9784. border-radius:0px;
  9785. -moz-box-shadow:none;
  9786. -webkit-box-shadow:none;
  9787. box-shadow:none;
  9788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9789. font-weight:400;
  9790. font-style:normal;
  9791. font-size:12px;
  9792. color:#AAAAAA;
  9793. }
  9794. #u19198 {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:150px;
  9798. top:494px;
  9799. width:49px;
  9800. height:17px;
  9801. display:flex;
  9802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9803. font-weight:400;
  9804. font-style:normal;
  9805. font-size:12px;
  9806. color:#AAAAAA;
  9807. }
  9808. #u19198 .text {
  9809. position:absolute;
  9810. align-self:flex-start;
  9811. padding:0px 0px 0px 0px;
  9812. box-sizing:border-box;
  9813. width:100%;
  9814. }
  9815. #u19198_text {
  9816. border-width:0px;
  9817. white-space:nowrap;
  9818. text-transform:none;
  9819. }
  9820. #u19199_div {
  9821. border-width:0px;
  9822. position:absolute;
  9823. left:0px;
  9824. top:0px;
  9825. width:65px;
  9826. height:22px;
  9827. background:inherit;
  9828. background-color:rgba(255, 255, 255, 0);
  9829. border:none;
  9830. border-radius:0px;
  9831. -moz-box-shadow:none;
  9832. -webkit-box-shadow:none;
  9833. box-shadow:none;
  9834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. font-size:16px;
  9838. }
  9839. #u19199 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:150px;
  9843. top:206px;
  9844. width:65px;
  9845. height:22px;
  9846. display:flex;
  9847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9848. font-weight:400;
  9849. font-style:normal;
  9850. font-size:16px;
  9851. }
  9852. #u19199 .text {
  9853. position:absolute;
  9854. align-self:flex-start;
  9855. padding:0px 0px 0px 0px;
  9856. box-sizing:border-box;
  9857. width:100%;
  9858. }
  9859. #u19199_text {
  9860. border-width:0px;
  9861. white-space:nowrap;
  9862. text-transform:none;
  9863. }
  9864. #u19200_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:65px;
  9870. height:22px;
  9871. background:inherit;
  9872. background-color:rgba(255, 255, 255, 0);
  9873. border:none;
  9874. border-radius:0px;
  9875. -moz-box-shadow:none;
  9876. -webkit-box-shadow:none;
  9877. box-shadow:none;
  9878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9879. font-weight:400;
  9880. font-style:normal;
  9881. font-size:16px;
  9882. }
  9883. #u19200 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:150px;
  9887. top:433px;
  9888. width:65px;
  9889. height:22px;
  9890. display:flex;
  9891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9892. font-weight:400;
  9893. font-style:normal;
  9894. font-size:16px;
  9895. }
  9896. #u19200 .text {
  9897. position:absolute;
  9898. align-self:flex-start;
  9899. padding:0px 0px 0px 0px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u19200_text {
  9904. border-width:0px;
  9905. white-space:nowrap;
  9906. text-transform:none;
  9907. }
  9908. #u19201_div {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:561px;
  9914. height:20px;
  9915. background:inherit;
  9916. background-color:rgba(255, 255, 255, 0);
  9917. border:none;
  9918. border-left:0px;
  9919. border-top:0px;
  9920. border-right:0px;
  9921. border-radius:0px;
  9922. border-bottom-right-radius:0px;
  9923. border-bottom-left-radius:0px;
  9924. -moz-box-shadow:none;
  9925. -webkit-box-shadow:none;
  9926. box-shadow:none;
  9927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9928. font-weight:400;
  9929. font-style:normal;
  9930. font-size:14px;
  9931. color:#7F7F7F;
  9932. }
  9933. #u19201 {
  9934. border-width:0px;
  9935. position:absolute;
  9936. left:352px;
  9937. top:100px;
  9938. width:561px;
  9939. height:20px;
  9940. display:flex;
  9941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9942. font-weight:400;
  9943. font-style:normal;
  9944. font-size:14px;
  9945. color:#7F7F7F;
  9946. }
  9947. #u19201 .text {
  9948. position:absolute;
  9949. align-self:center;
  9950. padding:0px 0px 0px 0px;
  9951. box-sizing:border-box;
  9952. width:100%;
  9953. }
  9954. #u19201_text {
  9955. border-width:0px;
  9956. white-space:nowrap;
  9957. text-transform:none;
  9958. }
  9959. #u19202 {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:0px;
  9965. height:0px;
  9966. }
  9967. #u19203_div {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:0px;
  9971. top:0px;
  9972. width:500px;
  9973. height:180px;
  9974. background:inherit;
  9975. background-color:rgba(255, 255, 255, 1);
  9976. box-sizing:border-box;
  9977. border-width:1px;
  9978. border-style:solid;
  9979. border-color:rgba(204, 204, 204, 1);
  9980. border-radius:4px;
  9981. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9982. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9983. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9984. font-family:'Microsoft YaHei', sans-serif;
  9985. font-weight:400;
  9986. font-style:normal;
  9987. }
  9988. #u19203 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1858px;
  9992. top:777px;
  9993. width:500px;
  9994. height:180px;
  9995. display:flex;
  9996. font-family:'Microsoft YaHei', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. }
  10000. #u19203 .text {
  10001. position:absolute;
  10002. align-self:center;
  10003. padding:2px 2px 2px 2px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u19203_text {
  10008. border-width:0px;
  10009. word-wrap:break-word;
  10010. text-transform:none;
  10011. visibility:hidden;
  10012. }
  10013. #u19204_div {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:0px;
  10018. width:265px;
  10019. height:22px;
  10020. background:inherit;
  10021. background-color:rgba(255, 255, 255, 0);
  10022. border:none;
  10023. border-radius:0px;
  10024. -moz-box-shadow:none;
  10025. -webkit-box-shadow:none;
  10026. box-shadow:none;
  10027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10028. font-weight:400;
  10029. font-style:normal;
  10030. font-size:12px;
  10031. color:#D9001B;
  10032. line-height:22px;
  10033. }
  10034. #u19204 {
  10035. border-width:0px;
  10036. position:absolute;
  10037. left:1908px;
  10038. top:878px;
  10039. width:265px;
  10040. height:22px;
  10041. display:flex;
  10042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10043. font-weight:400;
  10044. font-style:normal;
  10045. font-size:12px;
  10046. color:#D9001B;
  10047. line-height:22px;
  10048. }
  10049. #u19204 .text {
  10050. position:absolute;
  10051. align-self:flex-start;
  10052. padding:0px 0px 0px 0px;
  10053. box-sizing:border-box;
  10054. width:100%;
  10055. }
  10056. #u19204_text {
  10057. border-width:0px;
  10058. white-space:nowrap;
  10059. text-transform:none;
  10060. }
  10061. #u19205 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:0px;
  10065. top:0px;
  10066. width:0px;
  10067. height:0px;
  10068. }
  10069. #u19206_div {
  10070. border-width:0px;
  10071. position:absolute;
  10072. left:0px;
  10073. top:0px;
  10074. width:92px;
  10075. height:21px;
  10076. background:inherit;
  10077. background-color:rgba(255, 255, 255, 0);
  10078. border:none;
  10079. border-radius:0px;
  10080. -moz-box-shadow:none;
  10081. -webkit-box-shadow:none;
  10082. box-shadow:none;
  10083. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10084. font-weight:650;
  10085. font-style:normal;
  10086. font-size:18px;
  10087. color:#000000;
  10088. line-height:22px;
  10089. }
  10090. #u19206 {
  10091. border-width:0px;
  10092. position:absolute;
  10093. left:1947px;
  10094. top:810px;
  10095. width:92px;
  10096. height:21px;
  10097. display:flex;
  10098. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10099. font-weight:650;
  10100. font-style:normal;
  10101. font-size:18px;
  10102. color:#000000;
  10103. line-height:22px;
  10104. }
  10105. #u19206 .text {
  10106. position:absolute;
  10107. align-self:flex-start;
  10108. padding:0px 0px 0px 0px;
  10109. box-sizing:border-box;
  10110. width:100%;
  10111. }
  10112. #u19206_text {
  10113. border-width:0px;
  10114. white-space:nowrap;
  10115. text-transform:none;
  10116. }
  10117. #u19207_img {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:26px;
  10123. height:26px;
  10124. }
  10125. #u19207 {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:1908px;
  10129. top:808px;
  10130. width:26px;
  10131. height:26px;
  10132. display:flex;
  10133. }
  10134. #u19207 .text {
  10135. position:absolute;
  10136. align-self:center;
  10137. padding:2px 2px 2px 2px;
  10138. box-sizing:border-box;
  10139. width:100%;
  10140. }
  10141. #u19207_text {
  10142. border-width:0px;
  10143. word-wrap:break-word;
  10144. text-transform:none;
  10145. visibility:hidden;
  10146. }
  10147. #u19208_div {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:0px;
  10151. top:0px;
  10152. width:57px;
  10153. height:30px;
  10154. background:inherit;
  10155. background-color:rgba(255, 255, 255, 1);
  10156. box-sizing:border-box;
  10157. border-width:1px;
  10158. border-style:solid;
  10159. border-color:rgba(217, 217, 217, 1);
  10160. border-radius:4px;
  10161. -moz-box-shadow:none;
  10162. -webkit-box-shadow:none;
  10163. box-shadow:none;
  10164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10165. font-weight:400;
  10166. font-style:normal;
  10167. font-size:12px;
  10168. color:rgba(0, 0, 0, 0.647058823529412);
  10169. line-height:21px;
  10170. }
  10171. #u19208 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:2281px;
  10175. top:907px;
  10176. width:57px;
  10177. height:30px;
  10178. display:flex;
  10179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. font-size:12px;
  10183. color:rgba(0, 0, 0, 0.647058823529412);
  10184. line-height:21px;
  10185. }
  10186. #u19208 .text {
  10187. position:absolute;
  10188. align-self:center;
  10189. padding:2px 16px 2px 16px;
  10190. box-sizing:border-box;
  10191. width:100%;
  10192. }
  10193. #u19208_text {
  10194. border-width:0px;
  10195. white-space:nowrap;
  10196. text-transform:none;
  10197. }
  10198. #u19209 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:0px;
  10204. height:0px;
  10205. }
  10206. #u19210_div {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:0px;
  10210. top:0px;
  10211. width:380px;
  10212. height:18px;
  10213. background:inherit;
  10214. background-color:rgba(255, 255, 255, 1);
  10215. box-sizing:border-box;
  10216. border-width:1px;
  10217. border-style:solid;
  10218. border-color:rgba(228, 228, 228, 1);
  10219. border-radius:0px;
  10220. -moz-box-shadow:none;
  10221. -webkit-box-shadow:none;
  10222. box-shadow:none;
  10223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10224. font-weight:400;
  10225. font-style:normal;
  10226. font-size:12px;
  10227. color:#FFFFFF;
  10228. }
  10229. #u19210 {
  10230. border-width:0px;
  10231. position:absolute;
  10232. left:1908px;
  10233. top:854px;
  10234. width:380px;
  10235. height:18px;
  10236. display:flex;
  10237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10238. font-weight:400;
  10239. font-style:normal;
  10240. font-size:12px;
  10241. color:#FFFFFF;
  10242. }
  10243. #u19210 .text {
  10244. position:absolute;
  10245. align-self:center;
  10246. padding:8px 15px 8px 15px;
  10247. box-sizing:border-box;
  10248. width:100%;
  10249. }
  10250. #u19210_text {
  10251. border-width:0px;
  10252. word-wrap:break-word;
  10253. text-transform:none;
  10254. visibility:hidden;
  10255. }
  10256. #u19211_div {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:280px;
  10262. height:18px;
  10263. background:inherit;
  10264. background-color:rgba(51, 153, 255, 1);
  10265. box-sizing:border-box;
  10266. border-width:1px;
  10267. border-style:solid;
  10268. border-color:rgba(228, 228, 228, 1);
  10269. border-radius:0px;
  10270. -moz-box-shadow:none;
  10271. -webkit-box-shadow:none;
  10272. box-shadow:none;
  10273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10274. font-weight:400;
  10275. font-style:normal;
  10276. font-size:12px;
  10277. color:#FFFFFF;
  10278. }
  10279. #u19211 {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:1908px;
  10283. top:854px;
  10284. width:280px;
  10285. height:18px;
  10286. display:flex;
  10287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:12px;
  10291. color:#FFFFFF;
  10292. }
  10293. #u19211 .text {
  10294. position:absolute;
  10295. align-self:center;
  10296. padding:8px 15px 8px 15px;
  10297. box-sizing:border-box;
  10298. width:100%;
  10299. }
  10300. #u19211_text {
  10301. border-width:0px;
  10302. word-wrap:break-word;
  10303. text-transform:none;
  10304. }
  10305. #u19212 {
  10306. border-width:0px;
  10307. position:absolute;
  10308. left:0px;
  10309. top:0px;
  10310. width:0px;
  10311. height:0px;
  10312. }
  10313. #u19213_div {
  10314. border-width:0px;
  10315. position:absolute;
  10316. left:0px;
  10317. top:0px;
  10318. width:500px;
  10319. height:280px;
  10320. background:inherit;
  10321. background-color:rgba(255, 255, 255, 1);
  10322. box-sizing:border-box;
  10323. border-width:1px;
  10324. border-style:solid;
  10325. border-color:rgba(204, 204, 204, 1);
  10326. border-radius:4px;
  10327. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10328. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10329. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10330. font-family:'Microsoft YaHei', sans-serif;
  10331. font-weight:400;
  10332. font-style:normal;
  10333. }
  10334. #u19213 {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:2377px;
  10338. top:777px;
  10339. width:500px;
  10340. height:280px;
  10341. display:flex;
  10342. font-family:'Microsoft YaHei', sans-serif;
  10343. font-weight:400;
  10344. font-style:normal;
  10345. }
  10346. #u19213 .text {
  10347. position:absolute;
  10348. align-self:center;
  10349. padding:2px 2px 2px 2px;
  10350. box-sizing:border-box;
  10351. width:100%;
  10352. }
  10353. #u19213_text {
  10354. border-width:0px;
  10355. word-wrap:break-word;
  10356. text-transform:none;
  10357. visibility:hidden;
  10358. }
  10359. #u19214_div {
  10360. border-width:0px;
  10361. position:absolute;
  10362. left:0px;
  10363. top:0px;
  10364. width:177px;
  10365. height:22px;
  10366. background:inherit;
  10367. background-color:rgba(255, 255, 255, 0);
  10368. border:none;
  10369. border-radius:0px;
  10370. -moz-box-shadow:none;
  10371. -webkit-box-shadow:none;
  10372. box-shadow:none;
  10373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10374. font-weight:400;
  10375. font-style:normal;
  10376. font-size:12px;
  10377. line-height:22px;
  10378. }
  10379. #u19214 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:2427px;
  10383. top:850px;
  10384. width:177px;
  10385. height:22px;
  10386. display:flex;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. font-size:12px;
  10391. line-height:22px;
  10392. }
  10393. #u19214 .text {
  10394. position:absolute;
  10395. align-self:flex-start;
  10396. padding:0px 0px 0px 0px;
  10397. box-sizing:border-box;
  10398. width:100%;
  10399. }
  10400. #u19214_text {
  10401. border-width:0px;
  10402. white-space:nowrap;
  10403. text-transform:none;
  10404. }
  10405. #u19215 {
  10406. border-width:0px;
  10407. position:absolute;
  10408. left:0px;
  10409. top:0px;
  10410. width:0px;
  10411. height:0px;
  10412. }
  10413. #u19216_div {
  10414. border-width:0px;
  10415. position:absolute;
  10416. left:0px;
  10417. top:0px;
  10418. width:91px;
  10419. height:21px;
  10420. background:inherit;
  10421. background-color:rgba(255, 255, 255, 0);
  10422. border:none;
  10423. border-radius:0px;
  10424. -moz-box-shadow:none;
  10425. -webkit-box-shadow:none;
  10426. box-shadow:none;
  10427. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10428. font-weight:650;
  10429. font-style:normal;
  10430. font-size:18px;
  10431. color:#000000;
  10432. line-height:22px;
  10433. }
  10434. #u19216 {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:2466px;
  10438. top:810px;
  10439. width:91px;
  10440. height:21px;
  10441. display:flex;
  10442. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10443. font-weight:650;
  10444. font-style:normal;
  10445. font-size:18px;
  10446. color:#000000;
  10447. line-height:22px;
  10448. }
  10449. #u19216 .text {
  10450. position:absolute;
  10451. align-self:flex-start;
  10452. padding:0px 0px 0px 0px;
  10453. box-sizing:border-box;
  10454. width:100%;
  10455. }
  10456. #u19216_text {
  10457. border-width:0px;
  10458. white-space:nowrap;
  10459. text-transform:none;
  10460. }
  10461. #u19217_img {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:0px;
  10465. top:0px;
  10466. width:30px;
  10467. height:25px;
  10468. }
  10469. #u19217 {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:2427px;
  10473. top:809px;
  10474. width:30px;
  10475. height:25px;
  10476. display:flex;
  10477. }
  10478. #u19217 .text {
  10479. position:absolute;
  10480. align-self:center;
  10481. padding:2px 2px 2px 2px;
  10482. box-sizing:border-box;
  10483. width:100%;
  10484. }
  10485. #u19217_text {
  10486. border-width:0px;
  10487. word-wrap:break-word;
  10488. text-transform:none;
  10489. visibility:hidden;
  10490. }
  10491. #u19218_div {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:0px;
  10495. top:0px;
  10496. width:61px;
  10497. height:22px;
  10498. background:inherit;
  10499. background-color:rgba(255, 255, 255, 0);
  10500. border:none;
  10501. border-radius:0px;
  10502. -moz-box-shadow:none;
  10503. -webkit-box-shadow:none;
  10504. box-shadow:none;
  10505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10506. font-weight:400;
  10507. font-style:normal;
  10508. font-size:12px;
  10509. line-height:22px;
  10510. }
  10511. #u19218 {
  10512. border-width:0px;
  10513. position:absolute;
  10514. left:2427px;
  10515. top:882px;
  10516. width:61px;
  10517. height:22px;
  10518. display:flex;
  10519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10520. font-weight:400;
  10521. font-style:normal;
  10522. font-size:12px;
  10523. line-height:22px;
  10524. }
  10525. #u19218 .text {
  10526. position:absolute;
  10527. align-self:flex-start;
  10528. padding:0px 0px 0px 0px;
  10529. box-sizing:border-box;
  10530. width:100%;
  10531. }
  10532. #u19218_text {
  10533. border-width:0px;
  10534. white-space:nowrap;
  10535. text-transform:none;
  10536. }
  10537. #u19219_div {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:143px;
  10543. height:44px;
  10544. background:inherit;
  10545. background-color:rgba(255, 255, 255, 0);
  10546. border:none;
  10547. border-radius:0px;
  10548. -moz-box-shadow:none;
  10549. -webkit-box-shadow:none;
  10550. box-shadow:none;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:12px;
  10555. line-height:22px;
  10556. }
  10557. #u19219 {
  10558. border-width:0px;
  10559. position:absolute;
  10560. left:2427px;
  10561. top:915px;
  10562. width:143px;
  10563. height:44px;
  10564. display:flex;
  10565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10566. font-weight:400;
  10567. font-style:normal;
  10568. font-size:12px;
  10569. line-height:22px;
  10570. }
  10571. #u19219 .text {
  10572. position:absolute;
  10573. align-self:flex-start;
  10574. padding:0px 0px 0px 0px;
  10575. box-sizing:border-box;
  10576. width:100%;
  10577. }
  10578. #u19219_text {
  10579. border-width:0px;
  10580. white-space:nowrap;
  10581. text-transform:none;
  10582. }
  10583. #u19220_div {
  10584. border-width:0px;
  10585. position:absolute;
  10586. left:0px;
  10587. top:0px;
  10588. width:89px;
  10589. height:32px;
  10590. background:inherit;
  10591. background-color:rgba(24, 144, 255, 1);
  10592. border:none;
  10593. border-radius:4px;
  10594. -moz-box-shadow:none;
  10595. -webkit-box-shadow:none;
  10596. box-shadow:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:14px;
  10601. color:#FFFFFF;
  10602. }
  10603. #u19220 {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:2768px;
  10607. top:1005px;
  10608. width:89px;
  10609. height:32px;
  10610. display:flex;
  10611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10612. font-weight:400;
  10613. font-style:normal;
  10614. font-size:14px;
  10615. color:#FFFFFF;
  10616. }
  10617. #u19220 .text {
  10618. position:absolute;
  10619. align-self:center;
  10620. padding:2px 16px 2px 16px;
  10621. box-sizing:border-box;
  10622. width:100%;
  10623. }
  10624. #u19220_text {
  10625. border-width:0px;
  10626. white-space:nowrap;
  10627. text-transform:none;
  10628. }
  10629. #u19221_div {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:0px;
  10633. top:0px;
  10634. width:61px;
  10635. height:30px;
  10636. background:inherit;
  10637. background-color:rgba(255, 255, 255, 1);
  10638. box-sizing:border-box;
  10639. border-width:1px;
  10640. border-style:solid;
  10641. border-color:rgba(217, 217, 217, 1);
  10642. border-radius:4px;
  10643. -moz-box-shadow:none;
  10644. -webkit-box-shadow:none;
  10645. box-shadow:none;
  10646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10647. font-weight:400;
  10648. font-style:normal;
  10649. font-size:14px;
  10650. color:rgba(0, 0, 0, 0.647058823529412);
  10651. line-height:21px;
  10652. }
  10653. #u19221 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:2699px;
  10657. top:1006px;
  10658. width:61px;
  10659. height:30px;
  10660. display:flex;
  10661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10662. font-weight:400;
  10663. font-style:normal;
  10664. font-size:14px;
  10665. color:rgba(0, 0, 0, 0.647058823529412);
  10666. line-height:21px;
  10667. }
  10668. #u19221 .text {
  10669. position:absolute;
  10670. align-self:center;
  10671. padding:2px 16px 2px 16px;
  10672. box-sizing:border-box;
  10673. width:100%;
  10674. }
  10675. #u19221_text {
  10676. border-width:0px;
  10677. white-space:nowrap;
  10678. text-transform:none;
  10679. }
  10680. #u19222_div {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:283px;
  10686. height:22px;
  10687. background:inherit;
  10688. background-color:rgba(255, 255, 255, 0);
  10689. border:none;
  10690. border-radius:0px;
  10691. -moz-box-shadow:none;
  10692. -webkit-box-shadow:none;
  10693. box-shadow:none;
  10694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10695. font-weight:400;
  10696. font-style:normal;
  10697. font-size:12px;
  10698. color:#D9001B;
  10699. line-height:22px;
  10700. }
  10701. #u19222 {
  10702. border-width:0px;
  10703. position:absolute;
  10704. left:2066px;
  10705. top:791px;
  10706. width:283px;
  10707. height:22px;
  10708. display:flex;
  10709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10710. font-weight:400;
  10711. font-style:normal;
  10712. font-size:12px;
  10713. color:#D9001B;
  10714. line-height:22px;
  10715. }
  10716. #u19222 .text {
  10717. position:absolute;
  10718. align-self:flex-start;
  10719. padding:0px 0px 0px 0px;
  10720. box-sizing:border-box;
  10721. width:100%;
  10722. }
  10723. #u19222_text {
  10724. border-width:0px;
  10725. white-space:nowrap;
  10726. text-transform:none;
  10727. }
  10728. #u19223 {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:0px;
  10732. top:0px;
  10733. width:0px;
  10734. height:0px;
  10735. }
  10736. #u19224_div {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:0px;
  10740. top:0px;
  10741. width:59px;
  10742. height:30px;
  10743. background:inherit;
  10744. background-color:rgba(24, 144, 255, 1);
  10745. box-sizing:border-box;
  10746. border-width:1px;
  10747. border-style:solid;
  10748. border-color:rgba(0, 153, 255, 1);
  10749. border-radius:4px;
  10750. -moz-box-shadow:none;
  10751. -webkit-box-shadow:none;
  10752. box-shadow:none;
  10753. font-family:'Microsoft YaHei', sans-serif;
  10754. font-weight:400;
  10755. font-style:normal;
  10756. font-size:14px;
  10757. color:#FFFFFF;
  10758. }
  10759. #u19224 {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:650px;
  10763. top:180px;
  10764. width:59px;
  10765. height:30px;
  10766. display:flex;
  10767. font-family:'Microsoft YaHei', sans-serif;
  10768. font-weight:400;
  10769. font-style:normal;
  10770. font-size:14px;
  10771. color:#FFFFFF;
  10772. }
  10773. #u19224 .text {
  10774. position:absolute;
  10775. align-self:center;
  10776. padding:5px 15px 5px 15px;
  10777. box-sizing:border-box;
  10778. width:100%;
  10779. }
  10780. #u19224_text {
  10781. border-width:0px;
  10782. white-space:nowrap;
  10783. text-transform:none;
  10784. }
  10785. #u19225_div {
  10786. border-width:0px;
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:55px;
  10791. height:30px;
  10792. background:inherit;
  10793. background-color:rgba(255, 255, 255, 1);
  10794. box-sizing:border-box;
  10795. border-width:1px;
  10796. border-style:solid;
  10797. border-color:rgba(170, 170, 170, 1);
  10798. border-radius:4px;
  10799. -moz-box-shadow:none;
  10800. -webkit-box-shadow:none;
  10801. box-shadow:none;
  10802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10803. font-weight:400;
  10804. font-style:normal;
  10805. font-size:12px;
  10806. color:#555555;
  10807. }
  10808. #u19225 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:719px;
  10812. top:180px;
  10813. width:55px;
  10814. height:30px;
  10815. display:flex;
  10816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10817. font-weight:400;
  10818. font-style:normal;
  10819. font-size:12px;
  10820. color:#555555;
  10821. }
  10822. #u19225 .text {
  10823. position:absolute;
  10824. align-self:center;
  10825. padding:5px 15px 5px 15px;
  10826. box-sizing:border-box;
  10827. width:100%;
  10828. }
  10829. #u19225_text {
  10830. border-width:0px;
  10831. white-space:nowrap;
  10832. text-transform:none;
  10833. }
  10834. #u19226 {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:0px;
  10840. height:0px;
  10841. }
  10842. #u19227_div {
  10843. border-width:0px;
  10844. position:absolute;
  10845. left:0px;
  10846. top:0px;
  10847. width:140px;
  10848. height:30px;
  10849. background:inherit;
  10850. background-color:rgba(255, 255, 255, 1);
  10851. box-sizing:border-box;
  10852. border-width:1px;
  10853. border-style:solid;
  10854. border-color:rgba(215, 215, 215, 1);
  10855. border-radius:4px;
  10856. -moz-box-shadow:none;
  10857. -webkit-box-shadow:none;
  10858. box-shadow:none;
  10859. font-size:14px;
  10860. }
  10861. #u19227 {
  10862. border-width:0px;
  10863. position:absolute;
  10864. left:350px;
  10865. top:140px;
  10866. width:140px;
  10867. height:30px;
  10868. display:flex;
  10869. font-size:14px;
  10870. }
  10871. #u19227 .text {
  10872. position:absolute;
  10873. align-self:center;
  10874. padding:2px 2px 2px 2px;
  10875. box-sizing:border-box;
  10876. width:100%;
  10877. }
  10878. #u19227_text {
  10879. border-width:0px;
  10880. word-wrap:break-word;
  10881. text-transform:none;
  10882. visibility:hidden;
  10883. }
  10884. #u19228_input {
  10885. position:absolute;
  10886. left:0px;
  10887. top:0px;
  10888. width:134px;
  10889. height:23px;
  10890. padding:2px 2px 2px 2px;
  10891. font-family:'ArialMT', 'Arial', sans-serif;
  10892. font-weight:400;
  10893. font-style:normal;
  10894. font-size:14px;
  10895. letter-spacing:normal;
  10896. color:#AAAAAA;
  10897. vertical-align:none;
  10898. text-align:left;
  10899. text-transform:none;
  10900. background-color:transparent;
  10901. border-color:transparent;
  10902. }
  10903. #u19228_input.disabled {
  10904. position:absolute;
  10905. left:0px;
  10906. top:0px;
  10907. width:134px;
  10908. height:23px;
  10909. padding:2px 2px 2px 2px;
  10910. font-family:'ArialMT', 'Arial', sans-serif;
  10911. font-weight:400;
  10912. font-style:normal;
  10913. font-size:14px;
  10914. letter-spacing:normal;
  10915. color:#AAAAAA;
  10916. vertical-align:none;
  10917. text-align:left;
  10918. text-transform:none;
  10919. background-color:transparent;
  10920. border-color:transparent;
  10921. }
  10922. #u19228_div {
  10923. border-width:0px;
  10924. position:absolute;
  10925. left:0px;
  10926. top:0px;
  10927. width:134px;
  10928. height:23px;
  10929. background:inherit;
  10930. background-color:rgba(255, 255, 255, 1);
  10931. border:none;
  10932. border-radius:0px;
  10933. -moz-box-shadow:none;
  10934. -webkit-box-shadow:none;
  10935. box-shadow:none;
  10936. font-size:14px;
  10937. color:#AAAAAA;
  10938. }
  10939. #u19228 {
  10940. border-width:0px;
  10941. position:absolute;
  10942. left:354px;
  10943. top:142px;
  10944. width:134px;
  10945. height:23px;
  10946. display:flex;
  10947. font-size:14px;
  10948. color:#AAAAAA;
  10949. }
  10950. #u19228 .text {
  10951. position:absolute;
  10952. align-self:flex-start;
  10953. padding:2px 2px 2px 2px;
  10954. box-sizing:border-box;
  10955. width:100%;
  10956. }
  10957. #u19228_div.disabled {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:134px;
  10963. height:23px;
  10964. background:inherit;
  10965. background-color:rgba(240, 240, 240, 1);
  10966. border:none;
  10967. border-radius:0px;
  10968. -moz-box-shadow:none;
  10969. -webkit-box-shadow:none;
  10970. box-shadow:none;
  10971. font-size:14px;
  10972. color:#AAAAAA;
  10973. }
  10974. #u19228.disabled {
  10975. }
  10976. .u19228_input_option {
  10977. font-size:14px;
  10978. }
  10979. #u19229 {
  10980. border-width:0px;
  10981. position:absolute;
  10982. left:0px;
  10983. top:0px;
  10984. width:0px;
  10985. height:0px;
  10986. }
  10987. #u19230_div {
  10988. border-width:0px;
  10989. position:absolute;
  10990. left:0px;
  10991. top:0px;
  10992. width:140px;
  10993. height:30px;
  10994. background:inherit;
  10995. background-color:rgba(255, 255, 255, 1);
  10996. box-sizing:border-box;
  10997. border-width:1px;
  10998. border-style:solid;
  10999. border-color:rgba(215, 215, 215, 1);
  11000. border-radius:4px;
  11001. -moz-box-shadow:none;
  11002. -webkit-box-shadow:none;
  11003. box-shadow:none;
  11004. font-size:14px;
  11005. }
  11006. #u19230 {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:500px;
  11010. top:140px;
  11011. width:140px;
  11012. height:30px;
  11013. display:flex;
  11014. font-size:14px;
  11015. }
  11016. #u19230 .text {
  11017. position:absolute;
  11018. align-self:center;
  11019. padding:2px 2px 2px 2px;
  11020. box-sizing:border-box;
  11021. width:100%;
  11022. }
  11023. #u19230_text {
  11024. border-width:0px;
  11025. word-wrap:break-word;
  11026. text-transform:none;
  11027. visibility:hidden;
  11028. }
  11029. #u19231_input {
  11030. position:absolute;
  11031. left:0px;
  11032. top:0px;
  11033. width:134px;
  11034. height:23px;
  11035. padding:2px 2px 2px 2px;
  11036. font-family:'ArialMT', 'Arial', sans-serif;
  11037. font-weight:400;
  11038. font-style:normal;
  11039. font-size:14px;
  11040. letter-spacing:normal;
  11041. color:#AAAAAA;
  11042. vertical-align:none;
  11043. text-align:left;
  11044. text-transform:none;
  11045. background-color:transparent;
  11046. border-color:transparent;
  11047. }
  11048. #u19231_input.disabled {
  11049. position:absolute;
  11050. left:0px;
  11051. top:0px;
  11052. width:134px;
  11053. height:23px;
  11054. padding:2px 2px 2px 2px;
  11055. font-family:'ArialMT', 'Arial', sans-serif;
  11056. font-weight:400;
  11057. font-style:normal;
  11058. font-size:14px;
  11059. letter-spacing:normal;
  11060. color:#AAAAAA;
  11061. vertical-align:none;
  11062. text-align:left;
  11063. text-transform:none;
  11064. background-color:transparent;
  11065. border-color:transparent;
  11066. }
  11067. #u19231_div {
  11068. border-width:0px;
  11069. position:absolute;
  11070. left:0px;
  11071. top:0px;
  11072. width:134px;
  11073. height:23px;
  11074. background:inherit;
  11075. background-color:rgba(255, 255, 255, 1);
  11076. border:none;
  11077. border-radius:0px;
  11078. -moz-box-shadow:none;
  11079. -webkit-box-shadow:none;
  11080. box-shadow:none;
  11081. font-size:14px;
  11082. color:#AAAAAA;
  11083. }
  11084. #u19231 {
  11085. border-width:0px;
  11086. position:absolute;
  11087. left:504px;
  11088. top:142px;
  11089. width:134px;
  11090. height:23px;
  11091. display:flex;
  11092. font-size:14px;
  11093. color:#AAAAAA;
  11094. }
  11095. #u19231 .text {
  11096. position:absolute;
  11097. align-self:flex-start;
  11098. padding:2px 2px 2px 2px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u19231_div.disabled {
  11103. border-width:0px;
  11104. position:absolute;
  11105. left:0px;
  11106. top:0px;
  11107. width:134px;
  11108. height:23px;
  11109. background:inherit;
  11110. background-color:rgba(240, 240, 240, 1);
  11111. border:none;
  11112. border-radius:0px;
  11113. -moz-box-shadow:none;
  11114. -webkit-box-shadow:none;
  11115. box-shadow:none;
  11116. font-size:14px;
  11117. color:#AAAAAA;
  11118. }
  11119. #u19231.disabled {
  11120. }
  11121. .u19231_input_option {
  11122. font-size:14px;
  11123. }
  11124. #u19232 {
  11125. border-width:0px;
  11126. position:absolute;
  11127. left:0px;
  11128. top:0px;
  11129. width:0px;
  11130. height:0px;
  11131. }
  11132. #u19233_div {
  11133. border-width:0px;
  11134. position:absolute;
  11135. left:0px;
  11136. top:0px;
  11137. width:140px;
  11138. height:30px;
  11139. background:inherit;
  11140. background-color:rgba(255, 255, 255, 1);
  11141. box-sizing:border-box;
  11142. border-width:1px;
  11143. border-style:solid;
  11144. border-color:rgba(215, 215, 215, 1);
  11145. border-radius:4px;
  11146. -moz-box-shadow:none;
  11147. -webkit-box-shadow:none;
  11148. box-shadow:none;
  11149. font-size:14px;
  11150. }
  11151. #u19233 {
  11152. border-width:0px;
  11153. position:absolute;
  11154. left:650px;
  11155. top:140px;
  11156. width:140px;
  11157. height:30px;
  11158. display:flex;
  11159. font-size:14px;
  11160. }
  11161. #u19233 .text {
  11162. position:absolute;
  11163. align-self:center;
  11164. padding:2px 2px 2px 2px;
  11165. box-sizing:border-box;
  11166. width:100%;
  11167. }
  11168. #u19233_text {
  11169. border-width:0px;
  11170. word-wrap:break-word;
  11171. text-transform:none;
  11172. visibility:hidden;
  11173. }
  11174. #u19234_input {
  11175. position:absolute;
  11176. left:0px;
  11177. top:0px;
  11178. width:134px;
  11179. height:23px;
  11180. padding:2px 2px 2px 2px;
  11181. font-family:'ArialMT', 'Arial', sans-serif;
  11182. font-weight:400;
  11183. font-style:normal;
  11184. font-size:14px;
  11185. letter-spacing:normal;
  11186. color:#AAAAAA;
  11187. vertical-align:none;
  11188. text-align:left;
  11189. text-transform:none;
  11190. background-color:transparent;
  11191. border-color:transparent;
  11192. }
  11193. #u19234_input.disabled {
  11194. position:absolute;
  11195. left:0px;
  11196. top:0px;
  11197. width:134px;
  11198. height:23px;
  11199. padding:2px 2px 2px 2px;
  11200. font-family:'ArialMT', 'Arial', sans-serif;
  11201. font-weight:400;
  11202. font-style:normal;
  11203. font-size:14px;
  11204. letter-spacing:normal;
  11205. color:#AAAAAA;
  11206. vertical-align:none;
  11207. text-align:left;
  11208. text-transform:none;
  11209. background-color:transparent;
  11210. border-color:transparent;
  11211. }
  11212. #u19234_div {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:0px;
  11216. top:0px;
  11217. width:134px;
  11218. height:23px;
  11219. background:inherit;
  11220. background-color:rgba(255, 255, 255, 1);
  11221. border:none;
  11222. border-radius:0px;
  11223. -moz-box-shadow:none;
  11224. -webkit-box-shadow:none;
  11225. box-shadow:none;
  11226. font-size:14px;
  11227. color:#AAAAAA;
  11228. }
  11229. #u19234 {
  11230. border-width:0px;
  11231. position:absolute;
  11232. left:654px;
  11233. top:142px;
  11234. width:134px;
  11235. height:23px;
  11236. display:flex;
  11237. font-size:14px;
  11238. color:#AAAAAA;
  11239. }
  11240. #u19234 .text {
  11241. position:absolute;
  11242. align-self:flex-start;
  11243. padding:2px 2px 2px 2px;
  11244. box-sizing:border-box;
  11245. width:100%;
  11246. }
  11247. #u19234_div.disabled {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:0px;
  11251. top:0px;
  11252. width:134px;
  11253. height:23px;
  11254. background:inherit;
  11255. background-color:rgba(240, 240, 240, 1);
  11256. border:none;
  11257. border-radius:0px;
  11258. -moz-box-shadow:none;
  11259. -webkit-box-shadow:none;
  11260. box-shadow:none;
  11261. font-size:14px;
  11262. color:#AAAAAA;
  11263. }
  11264. #u19234.disabled {
  11265. }
  11266. .u19234_input_option {
  11267. font-size:14px;
  11268. }
  11269. #u19235 {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:0px;
  11275. height:0px;
  11276. }
  11277. #u19236_div {
  11278. border-width:0px;
  11279. position:absolute;
  11280. left:0px;
  11281. top:0px;
  11282. width:140px;
  11283. height:30px;
  11284. background:inherit;
  11285. background-color:rgba(255, 255, 255, 1);
  11286. box-sizing:border-box;
  11287. border-width:1px;
  11288. border-style:solid;
  11289. border-color:rgba(215, 215, 215, 1);
  11290. border-radius:4px;
  11291. -moz-box-shadow:none;
  11292. -webkit-box-shadow:none;
  11293. box-shadow:none;
  11294. font-size:14px;
  11295. }
  11296. #u19236 {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:950px;
  11300. top:140px;
  11301. width:140px;
  11302. height:30px;
  11303. display:flex;
  11304. font-size:14px;
  11305. }
  11306. #u19236 .text {
  11307. position:absolute;
  11308. align-self:center;
  11309. padding:2px 2px 2px 2px;
  11310. box-sizing:border-box;
  11311. width:100%;
  11312. }
  11313. #u19236_text {
  11314. border-width:0px;
  11315. word-wrap:break-word;
  11316. text-transform:none;
  11317. visibility:hidden;
  11318. }
  11319. #u19237_input {
  11320. position:absolute;
  11321. left:0px;
  11322. top:0px;
  11323. width:134px;
  11324. height:23px;
  11325. padding:2px 2px 2px 2px;
  11326. font-family:'ArialMT', 'Arial', sans-serif;
  11327. font-weight:400;
  11328. font-style:normal;
  11329. font-size:14px;
  11330. letter-spacing:normal;
  11331. color:#AAAAAA;
  11332. vertical-align:none;
  11333. text-align:left;
  11334. text-transform:none;
  11335. background-color:transparent;
  11336. border-color:transparent;
  11337. }
  11338. #u19237_input.disabled {
  11339. position:absolute;
  11340. left:0px;
  11341. top:0px;
  11342. width:134px;
  11343. height:23px;
  11344. padding:2px 2px 2px 2px;
  11345. font-family:'ArialMT', 'Arial', sans-serif;
  11346. font-weight:400;
  11347. font-style:normal;
  11348. font-size:14px;
  11349. letter-spacing:normal;
  11350. color:#AAAAAA;
  11351. vertical-align:none;
  11352. text-align:left;
  11353. text-transform:none;
  11354. background-color:transparent;
  11355. border-color:transparent;
  11356. }
  11357. #u19237_div {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:134px;
  11363. height:23px;
  11364. background:inherit;
  11365. background-color:rgba(255, 255, 255, 1);
  11366. border:none;
  11367. border-radius:0px;
  11368. -moz-box-shadow:none;
  11369. -webkit-box-shadow:none;
  11370. box-shadow:none;
  11371. font-size:14px;
  11372. color:#AAAAAA;
  11373. }
  11374. #u19237 {
  11375. border-width:0px;
  11376. position:absolute;
  11377. left:954px;
  11378. top:142px;
  11379. width:134px;
  11380. height:23px;
  11381. display:flex;
  11382. font-size:14px;
  11383. color:#AAAAAA;
  11384. }
  11385. #u19237 .text {
  11386. position:absolute;
  11387. align-self:flex-start;
  11388. padding:2px 2px 2px 2px;
  11389. box-sizing:border-box;
  11390. width:100%;
  11391. }
  11392. #u19237_div.disabled {
  11393. border-width:0px;
  11394. position:absolute;
  11395. left:0px;
  11396. top:0px;
  11397. width:134px;
  11398. height:23px;
  11399. background:inherit;
  11400. background-color:rgba(240, 240, 240, 1);
  11401. border:none;
  11402. border-radius:0px;
  11403. -moz-box-shadow:none;
  11404. -webkit-box-shadow:none;
  11405. box-shadow:none;
  11406. font-size:14px;
  11407. color:#AAAAAA;
  11408. }
  11409. #u19237.disabled {
  11410. }
  11411. .u19237_input_option {
  11412. font-size:14px;
  11413. }
  11414. #u19238 {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:0px;
  11420. height:0px;
  11421. }
  11422. #u19239_div {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:0px;
  11426. top:0px;
  11427. width:140px;
  11428. height:30px;
  11429. background:inherit;
  11430. background-color:rgba(255, 255, 255, 1);
  11431. box-sizing:border-box;
  11432. border-width:1px;
  11433. border-style:solid;
  11434. border-color:rgba(201, 201, 201, 1);
  11435. border-radius:4px;
  11436. -moz-box-shadow:none;
  11437. -webkit-box-shadow:none;
  11438. box-shadow:none;
  11439. font-family:'Microsoft YaHei', sans-serif;
  11440. font-weight:400;
  11441. font-style:normal;
  11442. font-size:14px;
  11443. color:#CCCCCC;
  11444. text-align:left;
  11445. }
  11446. #u19239 {
  11447. border-width:0px;
  11448. position:absolute;
  11449. left:350px;
  11450. top:180px;
  11451. width:140px;
  11452. height:30px;
  11453. display:flex;
  11454. font-family:'Microsoft YaHei', sans-serif;
  11455. font-weight:400;
  11456. font-style:normal;
  11457. font-size:14px;
  11458. color:#CCCCCC;
  11459. text-align:left;
  11460. }
  11461. #u19239 .text {
  11462. position:absolute;
  11463. align-self:center;
  11464. padding:2px 8px 2px 8px;
  11465. box-sizing:border-box;
  11466. width:100%;
  11467. }
  11468. #u19239_text {
  11469. border-width:0px;
  11470. word-wrap:break-word;
  11471. text-transform:none;
  11472. visibility:hidden;
  11473. }
  11474. #u19240_input {
  11475. position:absolute;
  11476. left:0px;
  11477. top:0px;
  11478. width:127px;
  11479. height:25px;
  11480. padding:2px 2px 2px 2px;
  11481. font-family:'Microsoft YaHei', sans-serif;
  11482. font-weight:400;
  11483. font-style:normal;
  11484. font-size:14px;
  11485. letter-spacing:normal;
  11486. color:#000000;
  11487. vertical-align:none;
  11488. text-align:left;
  11489. text-transform:none;
  11490. background-color:transparent;
  11491. border-color:transparent;
  11492. }
  11493. #u19240_input.disabled {
  11494. position:absolute;
  11495. left:0px;
  11496. top:0px;
  11497. width:127px;
  11498. height:25px;
  11499. padding:2px 2px 2px 2px;
  11500. font-family:'Microsoft YaHei', sans-serif;
  11501. font-weight:400;
  11502. font-style:normal;
  11503. font-size:14px;
  11504. letter-spacing:normal;
  11505. color:#000000;
  11506. vertical-align:none;
  11507. text-align:left;
  11508. text-transform:none;
  11509. background-color:transparent;
  11510. border-color:transparent;
  11511. }
  11512. #u19240_div {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:0px;
  11516. top:0px;
  11517. width:127px;
  11518. height:25px;
  11519. background:inherit;
  11520. background-color:rgba(255, 255, 255, 1);
  11521. border:none;
  11522. border-radius:0px;
  11523. -moz-box-shadow:none;
  11524. -webkit-box-shadow:none;
  11525. box-shadow:none;
  11526. font-family:'Microsoft YaHei', sans-serif;
  11527. font-weight:400;
  11528. font-style:normal;
  11529. font-size:14px;
  11530. }
  11531. #u19240 {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:358px;
  11535. top:181px;
  11536. width:127px;
  11537. height:25px;
  11538. display:flex;
  11539. font-family:'Microsoft YaHei', sans-serif;
  11540. font-weight:400;
  11541. font-style:normal;
  11542. font-size:14px;
  11543. }
  11544. #u19240 .text {
  11545. position:absolute;
  11546. align-self:center;
  11547. padding:2px 2px 2px 2px;
  11548. box-sizing:border-box;
  11549. width:100%;
  11550. }
  11551. #u19240_div.disabled {
  11552. border-width:0px;
  11553. position:absolute;
  11554. left:0px;
  11555. top:0px;
  11556. width:127px;
  11557. height:25px;
  11558. background:inherit;
  11559. background-color:rgba(240, 240, 240, 1);
  11560. border:none;
  11561. border-radius:0px;
  11562. -moz-box-shadow:none;
  11563. -webkit-box-shadow:none;
  11564. box-shadow:none;
  11565. font-family:'Microsoft YaHei', sans-serif;
  11566. font-weight:400;
  11567. font-style:normal;
  11568. font-size:14px;
  11569. }
  11570. #u19240.disabled {
  11571. }
  11572. #u19241 {
  11573. border-width:0px;
  11574. position:absolute;
  11575. left:0px;
  11576. top:0px;
  11577. width:0px;
  11578. height:0px;
  11579. }
  11580. #u19242_div {
  11581. border-width:0px;
  11582. position:absolute;
  11583. left:0px;
  11584. top:0px;
  11585. width:140px;
  11586. height:30px;
  11587. background:inherit;
  11588. background-color:rgba(255, 255, 255, 1);
  11589. box-sizing:border-box;
  11590. border-width:1px;
  11591. border-style:solid;
  11592. border-color:rgba(215, 215, 215, 1);
  11593. border-radius:4px;
  11594. -moz-box-shadow:none;
  11595. -webkit-box-shadow:none;
  11596. box-shadow:none;
  11597. font-size:14px;
  11598. }
  11599. #u19242 {
  11600. border-width:0px;
  11601. position:absolute;
  11602. left:500px;
  11603. top:182px;
  11604. width:140px;
  11605. height:30px;
  11606. display:flex;
  11607. font-size:14px;
  11608. }
  11609. #u19242 .text {
  11610. position:absolute;
  11611. align-self:center;
  11612. padding:2px 2px 2px 2px;
  11613. box-sizing:border-box;
  11614. width:100%;
  11615. }
  11616. #u19242_text {
  11617. border-width:0px;
  11618. word-wrap:break-word;
  11619. text-transform:none;
  11620. visibility:hidden;
  11621. }
  11622. #u19243_input {
  11623. position:absolute;
  11624. left:0px;
  11625. top:0px;
  11626. width:134px;
  11627. height:23px;
  11628. padding:2px 2px 2px 2px;
  11629. font-family:'ArialMT', 'Arial', sans-serif;
  11630. font-weight:400;
  11631. font-style:normal;
  11632. font-size:14px;
  11633. letter-spacing:normal;
  11634. color:#AAAAAA;
  11635. vertical-align:none;
  11636. text-align:left;
  11637. text-transform:none;
  11638. background-color:transparent;
  11639. border-color:transparent;
  11640. }
  11641. #u19243_input.disabled {
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:134px;
  11646. height:23px;
  11647. padding:2px 2px 2px 2px;
  11648. font-family:'ArialMT', 'Arial', sans-serif;
  11649. font-weight:400;
  11650. font-style:normal;
  11651. font-size:14px;
  11652. letter-spacing:normal;
  11653. color:#AAAAAA;
  11654. vertical-align:none;
  11655. text-align:left;
  11656. text-transform:none;
  11657. background-color:transparent;
  11658. border-color:transparent;
  11659. }
  11660. #u19243_div {
  11661. border-width:0px;
  11662. position:absolute;
  11663. left:0px;
  11664. top:0px;
  11665. width:134px;
  11666. height:23px;
  11667. background:inherit;
  11668. background-color:rgba(255, 255, 255, 1);
  11669. border:none;
  11670. border-radius:0px;
  11671. -moz-box-shadow:none;
  11672. -webkit-box-shadow:none;
  11673. box-shadow:none;
  11674. font-size:14px;
  11675. color:#AAAAAA;
  11676. }
  11677. #u19243 {
  11678. border-width:0px;
  11679. position:absolute;
  11680. left:504px;
  11681. top:184px;
  11682. width:134px;
  11683. height:23px;
  11684. display:flex;
  11685. font-size:14px;
  11686. color:#AAAAAA;
  11687. }
  11688. #u19243 .text {
  11689. position:absolute;
  11690. align-self:flex-start;
  11691. padding:2px 2px 2px 2px;
  11692. box-sizing:border-box;
  11693. width:100%;
  11694. }
  11695. #u19243_div.disabled {
  11696. border-width:0px;
  11697. position:absolute;
  11698. left:0px;
  11699. top:0px;
  11700. width:134px;
  11701. height:23px;
  11702. background:inherit;
  11703. background-color:rgba(240, 240, 240, 1);
  11704. border:none;
  11705. border-radius:0px;
  11706. -moz-box-shadow:none;
  11707. -webkit-box-shadow:none;
  11708. box-shadow:none;
  11709. font-size:14px;
  11710. color:#AAAAAA;
  11711. }
  11712. #u19243.disabled {
  11713. }
  11714. .u19243_input_option {
  11715. font-size:14px;
  11716. }
  11717. #u19244 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:0px;
  11721. top:0px;
  11722. width:0px;
  11723. height:0px;
  11724. }
  11725. #u19245_div {
  11726. border-width:0px;
  11727. position:absolute;
  11728. left:0px;
  11729. top:0px;
  11730. width:140px;
  11731. height:30px;
  11732. background:inherit;
  11733. background-color:rgba(255, 255, 255, 1);
  11734. box-sizing:border-box;
  11735. border-width:1px;
  11736. border-style:solid;
  11737. border-color:rgba(215, 215, 215, 1);
  11738. border-radius:4px;
  11739. -moz-box-shadow:none;
  11740. -webkit-box-shadow:none;
  11741. box-shadow:none;
  11742. font-size:14px;
  11743. }
  11744. #u19245 {
  11745. border-width:0px;
  11746. position:absolute;
  11747. left:800px;
  11748. top:140px;
  11749. width:140px;
  11750. height:30px;
  11751. display:flex;
  11752. font-size:14px;
  11753. }
  11754. #u19245 .text {
  11755. position:absolute;
  11756. align-self:center;
  11757. padding:2px 2px 2px 2px;
  11758. box-sizing:border-box;
  11759. width:100%;
  11760. }
  11761. #u19245_text {
  11762. border-width:0px;
  11763. word-wrap:break-word;
  11764. text-transform:none;
  11765. visibility:hidden;
  11766. }
  11767. #u19246_input {
  11768. position:absolute;
  11769. left:0px;
  11770. top:0px;
  11771. width:134px;
  11772. height:23px;
  11773. padding:2px 2px 2px 2px;
  11774. font-family:'ArialMT', 'Arial', sans-serif;
  11775. font-weight:400;
  11776. font-style:normal;
  11777. font-size:14px;
  11778. letter-spacing:normal;
  11779. color:#AAAAAA;
  11780. vertical-align:none;
  11781. text-align:left;
  11782. text-transform:none;
  11783. background-color:transparent;
  11784. border-color:transparent;
  11785. }
  11786. #u19246_input.disabled {
  11787. position:absolute;
  11788. left:0px;
  11789. top:0px;
  11790. width:134px;
  11791. height:23px;
  11792. padding:2px 2px 2px 2px;
  11793. font-family:'ArialMT', 'Arial', sans-serif;
  11794. font-weight:400;
  11795. font-style:normal;
  11796. font-size:14px;
  11797. letter-spacing:normal;
  11798. color:#AAAAAA;
  11799. vertical-align:none;
  11800. text-align:left;
  11801. text-transform:none;
  11802. background-color:transparent;
  11803. border-color:transparent;
  11804. }
  11805. #u19246_div {
  11806. border-width:0px;
  11807. position:absolute;
  11808. left:0px;
  11809. top:0px;
  11810. width:134px;
  11811. height:23px;
  11812. background:inherit;
  11813. background-color:rgba(255, 255, 255, 1);
  11814. border:none;
  11815. border-radius:0px;
  11816. -moz-box-shadow:none;
  11817. -webkit-box-shadow:none;
  11818. box-shadow:none;
  11819. font-size:14px;
  11820. color:#AAAAAA;
  11821. }
  11822. #u19246 {
  11823. border-width:0px;
  11824. position:absolute;
  11825. left:804px;
  11826. top:142px;
  11827. width:134px;
  11828. height:23px;
  11829. display:flex;
  11830. font-size:14px;
  11831. color:#AAAAAA;
  11832. }
  11833. #u19246 .text {
  11834. position:absolute;
  11835. align-self:flex-start;
  11836. padding:2px 2px 2px 2px;
  11837. box-sizing:border-box;
  11838. width:100%;
  11839. }
  11840. #u19246_div.disabled {
  11841. border-width:0px;
  11842. position:absolute;
  11843. left:0px;
  11844. top:0px;
  11845. width:134px;
  11846. height:23px;
  11847. background:inherit;
  11848. background-color:rgba(240, 240, 240, 1);
  11849. border:none;
  11850. border-radius:0px;
  11851. -moz-box-shadow:none;
  11852. -webkit-box-shadow:none;
  11853. box-shadow:none;
  11854. font-size:14px;
  11855. color:#AAAAAA;
  11856. }
  11857. #u19246.disabled {
  11858. }
  11859. .u19246_input_option {
  11860. font-size:14px;
  11861. }
  11862. #u19247 {
  11863. border-width:0px;
  11864. position:absolute;
  11865. left:0px;
  11866. top:0px;
  11867. width:0px;
  11868. height:0px;
  11869. }
  11870. #u19248_div {
  11871. border-width:0px;
  11872. position:absolute;
  11873. left:0px;
  11874. top:0px;
  11875. width:386px;
  11876. height:40px;
  11877. background:inherit;
  11878. background-color:rgba(255, 255, 255, 1);
  11879. box-sizing:border-box;
  11880. border-width:1px;
  11881. border-style:solid;
  11882. border-color:rgba(201, 201, 201, 1);
  11883. border-radius:4px;
  11884. -moz-box-shadow:none;
  11885. -webkit-box-shadow:none;
  11886. box-shadow:none;
  11887. font-family:'Microsoft YaHei', sans-serif;
  11888. font-weight:400;
  11889. font-style:normal;
  11890. font-size:14px;
  11891. color:#CCCCCC;
  11892. text-align:left;
  11893. }
  11894. #u19248 {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:1173px;
  11898. top:319px;
  11899. width:386px;
  11900. height:40px;
  11901. display:flex;
  11902. font-family:'Microsoft YaHei', sans-serif;
  11903. font-weight:400;
  11904. font-style:normal;
  11905. font-size:14px;
  11906. color:#CCCCCC;
  11907. text-align:left;
  11908. }
  11909. #u19248 .text {
  11910. position:absolute;
  11911. align-self:center;
  11912. padding:2px 8px 2px 8px;
  11913. box-sizing:border-box;
  11914. width:100%;
  11915. }
  11916. #u19248_text {
  11917. border-width:0px;
  11918. word-wrap:break-word;
  11919. text-transform:none;
  11920. visibility:hidden;
  11921. }
  11922. #u19249_input {
  11923. position:absolute;
  11924. left:0px;
  11925. top:0px;
  11926. width:204px;
  11927. height:33px;
  11928. padding:2px 2px 2px 2px;
  11929. font-family:'Microsoft YaHei', sans-serif;
  11930. font-weight:400;
  11931. font-style:normal;
  11932. font-size:13px;
  11933. letter-spacing:normal;
  11934. color:#000000;
  11935. vertical-align:none;
  11936. text-align:left;
  11937. text-transform:none;
  11938. background-color:transparent;
  11939. border-color:transparent;
  11940. }
  11941. #u19249_input.disabled {
  11942. position:absolute;
  11943. left:0px;
  11944. top:0px;
  11945. width:204px;
  11946. height:33px;
  11947. padding:2px 2px 2px 2px;
  11948. font-family:'Microsoft YaHei', sans-serif;
  11949. font-weight:400;
  11950. font-style:normal;
  11951. font-size:13px;
  11952. letter-spacing:normal;
  11953. color:#000000;
  11954. vertical-align:none;
  11955. text-align:left;
  11956. text-transform:none;
  11957. background-color:transparent;
  11958. border-color:transparent;
  11959. }
  11960. #u19249_div {
  11961. border-width:0px;
  11962. position:absolute;
  11963. left:0px;
  11964. top:0px;
  11965. width:204px;
  11966. height:33px;
  11967. background:inherit;
  11968. background-color:rgba(255, 255, 255, 1);
  11969. border:none;
  11970. border-radius:0px;
  11971. -moz-box-shadow:none;
  11972. -webkit-box-shadow:none;
  11973. box-shadow:none;
  11974. font-family:'Microsoft YaHei', sans-serif;
  11975. font-weight:400;
  11976. font-style:normal;
  11977. }
  11978. #u19249 {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:1212px;
  11982. top:322px;
  11983. width:204px;
  11984. height:33px;
  11985. display:flex;
  11986. font-family:'Microsoft YaHei', sans-serif;
  11987. font-weight:400;
  11988. font-style:normal;
  11989. }
  11990. #u19249 .text {
  11991. position:absolute;
  11992. align-self:center;
  11993. padding:2px 2px 2px 2px;
  11994. box-sizing:border-box;
  11995. width:100%;
  11996. }
  11997. #u19249_div.disabled {
  11998. border-width:0px;
  11999. position:absolute;
  12000. left:0px;
  12001. top:0px;
  12002. width:204px;
  12003. height:33px;
  12004. background:inherit;
  12005. background-color:rgba(240, 240, 240, 1);
  12006. border:none;
  12007. border-radius:0px;
  12008. -moz-box-shadow:none;
  12009. -webkit-box-shadow:none;
  12010. box-shadow:none;
  12011. font-family:'Microsoft YaHei', sans-serif;
  12012. font-weight:400;
  12013. font-style:normal;
  12014. }
  12015. #u19249.disabled {
  12016. }
  12017. #u19250_img {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:0px;
  12021. top:0px;
  12022. width:24px;
  12023. height:24px;
  12024. }
  12025. #u19250 {
  12026. border-width:0px;
  12027. position:absolute;
  12028. left:1181px;
  12029. top:327px;
  12030. width:24px;
  12031. height:24px;
  12032. display:flex;
  12033. font-family:'Microsoft YaHei', sans-serif;
  12034. font-weight:400;
  12035. font-style:normal;
  12036. }
  12037. #u19250 .text {
  12038. position:absolute;
  12039. align-self:center;
  12040. padding:2px 2px 2px 2px;
  12041. box-sizing:border-box;
  12042. width:100%;
  12043. }
  12044. #u19250_text {
  12045. border-width:0px;
  12046. word-wrap:break-word;
  12047. text-transform:none;
  12048. visibility:hidden;
  12049. }
  12050. #u19251 {
  12051. border-width:0px;
  12052. position:absolute;
  12053. left:0px;
  12054. top:0px;
  12055. width:0px;
  12056. height:0px;
  12057. }
  12058. #u19252_div {
  12059. border-width:0px;
  12060. position:absolute;
  12061. left:0px;
  12062. top:0px;
  12063. width:140px;
  12064. height:30px;
  12065. background:inherit;
  12066. background-color:rgba(255, 255, 255, 1);
  12067. box-sizing:border-box;
  12068. border-width:1px;
  12069. border-style:solid;
  12070. border-color:rgba(201, 201, 201, 1);
  12071. border-radius:4px;
  12072. -moz-box-shadow:none;
  12073. -webkit-box-shadow:none;
  12074. box-shadow:none;
  12075. font-family:'Microsoft YaHei', sans-serif;
  12076. font-weight:400;
  12077. font-style:normal;
  12078. font-size:14px;
  12079. color:#CCCCCC;
  12080. text-align:left;
  12081. }
  12082. #u19252 {
  12083. border-width:0px;
  12084. position:absolute;
  12085. left:1104px;
  12086. top:140px;
  12087. width:140px;
  12088. height:30px;
  12089. display:flex;
  12090. font-family:'Microsoft YaHei', sans-serif;
  12091. font-weight:400;
  12092. font-style:normal;
  12093. font-size:14px;
  12094. color:#CCCCCC;
  12095. text-align:left;
  12096. }
  12097. #u19252 .text {
  12098. position:absolute;
  12099. align-self:center;
  12100. padding:2px 8px 2px 8px;
  12101. box-sizing:border-box;
  12102. width:100%;
  12103. }
  12104. #u19252_text {
  12105. border-width:0px;
  12106. word-wrap:break-word;
  12107. text-transform:none;
  12108. visibility:hidden;
  12109. }
  12110. #u19253_input {
  12111. position:absolute;
  12112. left:0px;
  12113. top:0px;
  12114. width:127px;
  12115. height:25px;
  12116. padding:2px 2px 2px 2px;
  12117. font-family:'Microsoft YaHei', sans-serif;
  12118. font-weight:400;
  12119. font-style:normal;
  12120. font-size:10px;
  12121. letter-spacing:normal;
  12122. color:#000000;
  12123. vertical-align:none;
  12124. text-align:left;
  12125. text-transform:none;
  12126. background-color:transparent;
  12127. border-color:transparent;
  12128. }
  12129. #u19253_input.disabled {
  12130. position:absolute;
  12131. left:0px;
  12132. top:0px;
  12133. width:127px;
  12134. height:25px;
  12135. padding:2px 2px 2px 2px;
  12136. font-family:'Microsoft YaHei', sans-serif;
  12137. font-weight:400;
  12138. font-style:normal;
  12139. font-size:10px;
  12140. letter-spacing:normal;
  12141. color:#000000;
  12142. vertical-align:none;
  12143. text-align:left;
  12144. text-transform:none;
  12145. background-color:transparent;
  12146. border-color:transparent;
  12147. }
  12148. #u19253_div {
  12149. border-width:0px;
  12150. position:absolute;
  12151. left:0px;
  12152. top:0px;
  12153. width:127px;
  12154. height:25px;
  12155. background:inherit;
  12156. background-color:rgba(255, 255, 255, 1);
  12157. border:none;
  12158. border-radius:0px;
  12159. -moz-box-shadow:none;
  12160. -webkit-box-shadow:none;
  12161. box-shadow:none;
  12162. font-family:'Microsoft YaHei', sans-serif;
  12163. font-weight:400;
  12164. font-style:normal;
  12165. font-size:10px;
  12166. }
  12167. #u19253 {
  12168. border-width:0px;
  12169. position:absolute;
  12170. left:1112px;
  12171. top:141px;
  12172. width:127px;
  12173. height:25px;
  12174. display:flex;
  12175. font-family:'Microsoft YaHei', sans-serif;
  12176. font-weight:400;
  12177. font-style:normal;
  12178. font-size:10px;
  12179. }
  12180. #u19253 .text {
  12181. position:absolute;
  12182. align-self:center;
  12183. padding:2px 2px 2px 2px;
  12184. box-sizing:border-box;
  12185. width:100%;
  12186. }
  12187. #u19253_div.disabled {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:0px;
  12191. top:0px;
  12192. width:127px;
  12193. height:25px;
  12194. background:inherit;
  12195. background-color:rgba(240, 240, 240, 1);
  12196. border:none;
  12197. border-radius:0px;
  12198. -moz-box-shadow:none;
  12199. -webkit-box-shadow:none;
  12200. box-shadow:none;
  12201. font-family:'Microsoft YaHei', sans-serif;
  12202. font-weight:400;
  12203. font-style:normal;
  12204. font-size:10px;
  12205. }
  12206. #u19253.disabled {
  12207. }
  12208. #u19254 {
  12209. border-width:0px;
  12210. position:absolute;
  12211. left:0px;
  12212. top:0px;
  12213. width:0px;
  12214. height:0px;
  12215. }
  12216. #u19255_div {
  12217. border-width:0px;
  12218. position:absolute;
  12219. left:0px;
  12220. top:0px;
  12221. width:140px;
  12222. height:30px;
  12223. background:inherit;
  12224. background-color:rgba(255, 255, 255, 1);
  12225. box-sizing:border-box;
  12226. border-width:1px;
  12227. border-style:solid;
  12228. border-color:rgba(201, 201, 201, 1);
  12229. border-radius:4px;
  12230. -moz-box-shadow:none;
  12231. -webkit-box-shadow:none;
  12232. box-shadow:none;
  12233. font-family:'Microsoft YaHei', sans-serif;
  12234. font-weight:400;
  12235. font-style:normal;
  12236. font-size:14px;
  12237. color:#CCCCCC;
  12238. text-align:left;
  12239. }
  12240. #u19255 {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:1404px;
  12244. top:140px;
  12245. width:140px;
  12246. height:30px;
  12247. display:flex;
  12248. font-family:'Microsoft YaHei', sans-serif;
  12249. font-weight:400;
  12250. font-style:normal;
  12251. font-size:14px;
  12252. color:#CCCCCC;
  12253. text-align:left;
  12254. }
  12255. #u19255 .text {
  12256. position:absolute;
  12257. align-self:center;
  12258. padding:2px 8px 2px 8px;
  12259. box-sizing:border-box;
  12260. width:100%;
  12261. }
  12262. #u19255_text {
  12263. border-width:0px;
  12264. word-wrap:break-word;
  12265. text-transform:none;
  12266. visibility:hidden;
  12267. }
  12268. #u19256_input {
  12269. position:absolute;
  12270. left:0px;
  12271. top:0px;
  12272. width:127px;
  12273. height:25px;
  12274. padding:2px 2px 2px 2px;
  12275. font-family:'Microsoft YaHei', sans-serif;
  12276. font-weight:400;
  12277. font-style:normal;
  12278. font-size:14px;
  12279. letter-spacing:normal;
  12280. color:#000000;
  12281. vertical-align:none;
  12282. text-align:left;
  12283. text-transform:none;
  12284. background-color:transparent;
  12285. border-color:transparent;
  12286. }
  12287. #u19256_input.disabled {
  12288. position:absolute;
  12289. left:0px;
  12290. top:0px;
  12291. width:127px;
  12292. height:25px;
  12293. padding:2px 2px 2px 2px;
  12294. font-family:'Microsoft YaHei', sans-serif;
  12295. font-weight:400;
  12296. font-style:normal;
  12297. font-size:14px;
  12298. letter-spacing:normal;
  12299. color:#000000;
  12300. vertical-align:none;
  12301. text-align:left;
  12302. text-transform:none;
  12303. background-color:transparent;
  12304. border-color:transparent;
  12305. }
  12306. #u19256_div {
  12307. border-width:0px;
  12308. position:absolute;
  12309. left:0px;
  12310. top:0px;
  12311. width:127px;
  12312. height:25px;
  12313. background:inherit;
  12314. background-color:rgba(255, 255, 255, 1);
  12315. border:none;
  12316. border-radius:0px;
  12317. -moz-box-shadow:none;
  12318. -webkit-box-shadow:none;
  12319. box-shadow:none;
  12320. font-family:'Microsoft YaHei', sans-serif;
  12321. font-weight:400;
  12322. font-style:normal;
  12323. font-size:14px;
  12324. }
  12325. #u19256 {
  12326. border-width:0px;
  12327. position:absolute;
  12328. left:1412px;
  12329. top:141px;
  12330. width:127px;
  12331. height:25px;
  12332. display:flex;
  12333. font-family:'Microsoft YaHei', sans-serif;
  12334. font-weight:400;
  12335. font-style:normal;
  12336. font-size:14px;
  12337. }
  12338. #u19256 .text {
  12339. position:absolute;
  12340. align-self:center;
  12341. padding:2px 2px 2px 2px;
  12342. box-sizing:border-box;
  12343. width:100%;
  12344. }
  12345. #u19256_div.disabled {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:0px;
  12349. top:0px;
  12350. width:127px;
  12351. height:25px;
  12352. background:inherit;
  12353. background-color:rgba(240, 240, 240, 1);
  12354. border:none;
  12355. border-radius:0px;
  12356. -moz-box-shadow:none;
  12357. -webkit-box-shadow:none;
  12358. box-shadow:none;
  12359. font-family:'Microsoft YaHei', sans-serif;
  12360. font-weight:400;
  12361. font-style:normal;
  12362. font-size:14px;
  12363. }
  12364. #u19256.disabled {
  12365. }
  12366. #u19257 {
  12367. border-width:0px;
  12368. position:absolute;
  12369. left:0px;
  12370. top:0px;
  12371. width:0px;
  12372. height:0px;
  12373. }
  12374. #u19258_div {
  12375. border-width:0px;
  12376. position:absolute;
  12377. left:0px;
  12378. top:0px;
  12379. width:140px;
  12380. height:30px;
  12381. background:inherit;
  12382. background-color:rgba(255, 255, 255, 1);
  12383. box-sizing:border-box;
  12384. border-width:1px;
  12385. border-style:solid;
  12386. border-color:rgba(201, 201, 201, 1);
  12387. border-radius:4px;
  12388. -moz-box-shadow:none;
  12389. -webkit-box-shadow:none;
  12390. box-shadow:none;
  12391. font-family:'Microsoft YaHei', sans-serif;
  12392. font-weight:400;
  12393. font-style:normal;
  12394. font-size:14px;
  12395. color:#CCCCCC;
  12396. text-align:left;
  12397. }
  12398. #u19258 {
  12399. border-width:0px;
  12400. position:absolute;
  12401. left:1254px;
  12402. top:140px;
  12403. width:140px;
  12404. height:30px;
  12405. display:flex;
  12406. font-family:'Microsoft YaHei', sans-serif;
  12407. font-weight:400;
  12408. font-style:normal;
  12409. font-size:14px;
  12410. color:#CCCCCC;
  12411. text-align:left;
  12412. }
  12413. #u19258 .text {
  12414. position:absolute;
  12415. align-self:center;
  12416. padding:2px 8px 2px 8px;
  12417. box-sizing:border-box;
  12418. width:100%;
  12419. }
  12420. #u19258_text {
  12421. border-width:0px;
  12422. word-wrap:break-word;
  12423. text-transform:none;
  12424. visibility:hidden;
  12425. }
  12426. #u19259_input {
  12427. position:absolute;
  12428. left:0px;
  12429. top:0px;
  12430. width:127px;
  12431. height:25px;
  12432. padding:2px 2px 2px 2px;
  12433. font-family:'Microsoft YaHei', sans-serif;
  12434. font-weight:400;
  12435. font-style:normal;
  12436. font-size:10px;
  12437. letter-spacing:normal;
  12438. color:#000000;
  12439. vertical-align:none;
  12440. text-align:left;
  12441. text-transform:none;
  12442. background-color:transparent;
  12443. border-color:transparent;
  12444. }
  12445. #u19259_input.disabled {
  12446. position:absolute;
  12447. left:0px;
  12448. top:0px;
  12449. width:127px;
  12450. height:25px;
  12451. padding:2px 2px 2px 2px;
  12452. font-family:'Microsoft YaHei', sans-serif;
  12453. font-weight:400;
  12454. font-style:normal;
  12455. font-size:10px;
  12456. letter-spacing:normal;
  12457. color:#000000;
  12458. vertical-align:none;
  12459. text-align:left;
  12460. text-transform:none;
  12461. background-color:transparent;
  12462. border-color:transparent;
  12463. }
  12464. #u19259_div {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:127px;
  12470. height:25px;
  12471. background:inherit;
  12472. background-color:rgba(255, 255, 255, 1);
  12473. border:none;
  12474. border-radius:0px;
  12475. -moz-box-shadow:none;
  12476. -webkit-box-shadow:none;
  12477. box-shadow:none;
  12478. font-family:'Microsoft YaHei', sans-serif;
  12479. font-weight:400;
  12480. font-style:normal;
  12481. font-size:10px;
  12482. }
  12483. #u19259 {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:1262px;
  12487. top:141px;
  12488. width:127px;
  12489. height:25px;
  12490. display:flex;
  12491. font-family:'Microsoft YaHei', sans-serif;
  12492. font-weight:400;
  12493. font-style:normal;
  12494. font-size:10px;
  12495. }
  12496. #u19259 .text {
  12497. position:absolute;
  12498. align-self:center;
  12499. padding:2px 2px 2px 2px;
  12500. box-sizing:border-box;
  12501. width:100%;
  12502. }
  12503. #u19259_div.disabled {
  12504. border-width:0px;
  12505. position:absolute;
  12506. left:0px;
  12507. top:0px;
  12508. width:127px;
  12509. height:25px;
  12510. background:inherit;
  12511. background-color:rgba(240, 240, 240, 1);
  12512. border:none;
  12513. border-radius:0px;
  12514. -moz-box-shadow:none;
  12515. -webkit-box-shadow:none;
  12516. box-shadow:none;
  12517. font-family:'Microsoft YaHei', sans-serif;
  12518. font-weight:400;
  12519. font-style:normal;
  12520. font-size:10px;
  12521. }
  12522. #u19259.disabled {
  12523. }