styles.css 224 KB

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