styles.css 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068
  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. #u16797_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. #u16797 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u16797 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u16797_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u16798_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. #u16798 {
  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. #u16798 .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. #u16798_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u16799_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. #u16799 {
  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. #u16799 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u16799_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u16800 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u16801_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u16801 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u16801 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u16801_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u16802_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. #u16802 {
  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. #u16802 .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. #u16802_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u16803_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. #u16803 {
  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. #u16803 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u16803_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u16804 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u16805_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. #u16805_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. #u16805_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. #u16805 {
  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. #u16805 .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. #u16805_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. #u16805.disabled {
  356. }
  357. .u16805_input_option {
  358. font-size:14px;
  359. }
  360. #u16806_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u16806 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u16806 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u16806_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u16807_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. #u16807 {
  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. #u16807 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u16807_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u16808_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. #u16808 {
  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. #u16808 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u16808_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u16809 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u16810_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. #u16810 {
  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. #u16810 .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. #u16810_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u16811_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u16811 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u16811 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u16811_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u16812 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u16813_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. #u16813 {
  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. #u16813 .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. #u16813_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u16814_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u16814 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u16814 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u16814_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u16815 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u16816_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. #u16816 {
  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. #u16816 .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. #u16816_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u16817_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u16817 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u16817 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u16817_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u16818 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u16819_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. #u16819 {
  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. #u16819 .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. #u16819_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u16820_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u16820 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u16820 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u16820_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u16821 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u16822_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. #u16822 {
  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. #u16822 .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. #u16822_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u16823_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u16823 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u16823 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u16823_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u16824 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u16825_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. #u16825 {
  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. #u16825 .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. #u16825_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u16826_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u16826 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u16826 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u16826_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u16827 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u16828_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. #u16828 {
  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. #u16828 .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. #u16828_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u16829_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u16829 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u16829 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u16829_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u16830 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u16831_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. #u16831 {
  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. #u16831 .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. #u16831_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u16832_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u16832 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u16832 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u16832_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u16833 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u16834_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. #u16834 {
  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. #u16834 .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. #u16834_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u16835_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u16835 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u16835 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u16835_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u16836 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u16837_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. #u16837 {
  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. #u16837 .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. #u16837_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u16838_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u16838 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u16838 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u16838_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u16839_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. #u16839 {
  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. #u16839 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u16839_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u16840_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u16840 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u16840 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u16840_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u16841_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. #u16841 {
  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. #u16841 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u16841_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u16842_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u16842 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u16842 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u16842_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u16843 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u16844_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. #u16844 {
  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. #u16844 .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. #u16844_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u16845_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u16845 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u16845 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u16845_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u16846 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u16847_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. #u16847 {
  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. #u16847 .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. #u16847_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u16848_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u16848 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u16848 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u16848_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u16849 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u16850_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. #u16850 {
  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. #u16850 .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. #u16850_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u16851_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u16851 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u16851 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u16851_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u16852_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:100px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u16852 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:329px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:100px;
  1744. display:flex;
  1745. }
  1746. #u16852 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u16852_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u16853_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:73px;
  1765. height:50px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. color:#298FFF;
  1783. line-height:40px;
  1784. }
  1785. #u16853 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:352px;
  1789. top:50px;
  1790. width:73px;
  1791. height:50px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. color:#298FFF;
  1798. line-height:40px;
  1799. }
  1800. #u16853 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:0px 0px 0px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u16853_text {
  1808. border-width:0px;
  1809. white-space:nowrap;
  1810. text-transform:none;
  1811. }
  1812. #u16854_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:1260px;
  1818. height:1077px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 1);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. }
  1827. #u16854 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:329px;
  1831. top:160px;
  1832. width:1260px;
  1833. height:1077px;
  1834. display:flex;
  1835. }
  1836. #u16854 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u16854_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. visibility:hidden;
  1848. }
  1849. #u16855 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:352px;
  1853. top:269px;
  1854. width:1218px;
  1855. height:321px;
  1856. }
  1857. #u16856_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:69px;
  1863. height:38px;
  1864. }
  1865. #u16856 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:69px;
  1871. height:38px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u16856 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u16856_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u16857_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:68px;
  1897. height:38px;
  1898. }
  1899. #u16857 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:69px;
  1903. top:0px;
  1904. width:68px;
  1905. height:38px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u16857 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u16857_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u16858_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:69px;
  1931. height:38px;
  1932. }
  1933. #u16858 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:137px;
  1937. top:0px;
  1938. width:69px;
  1939. height:38px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u16858 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u16858_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u16859_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:69px;
  1965. height:38px;
  1966. }
  1967. #u16859 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:206px;
  1971. top:0px;
  1972. width:69px;
  1973. height:38px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u16859 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u16859_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u16860_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:69px;
  1999. height:38px;
  2000. }
  2001. #u16860 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:275px;
  2005. top:0px;
  2006. width:69px;
  2007. height:38px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u16860 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u16860_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u16861_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:69px;
  2033. height:38px;
  2034. }
  2035. #u16861 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:344px;
  2039. top:0px;
  2040. width:69px;
  2041. height:38px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u16861 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u16861_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u16862_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:69px;
  2067. height:38px;
  2068. }
  2069. #u16862 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:413px;
  2073. top:0px;
  2074. width:69px;
  2075. height:38px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u16862 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u16862_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u16863_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:69px;
  2101. height:38px;
  2102. }
  2103. #u16863 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:482px;
  2107. top:0px;
  2108. width:69px;
  2109. height:38px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u16863 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u16863_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u16864_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:69px;
  2135. height:38px;
  2136. }
  2137. #u16864 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:551px;
  2141. top:0px;
  2142. width:69px;
  2143. height:38px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u16864 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u16864_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. }
  2163. #u16865_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:69px;
  2169. height:38px;
  2170. }
  2171. #u16865 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:620px;
  2175. top:0px;
  2176. width:69px;
  2177. height:38px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u16865 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u16865_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u16866_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:69px;
  2203. height:38px;
  2204. }
  2205. #u16866 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:689px;
  2209. top:0px;
  2210. width:69px;
  2211. height:38px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#FFFFFF;
  2218. }
  2219. #u16866 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u16866_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u16867_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:69px;
  2237. height:38px;
  2238. }
  2239. #u16867 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:758px;
  2243. top:0px;
  2244. width:69px;
  2245. height:38px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#FFFFFF;
  2252. }
  2253. #u16867 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u16867_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u16868_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:80px;
  2271. height:38px;
  2272. }
  2273. #u16868 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:827px;
  2277. top:0px;
  2278. width:80px;
  2279. height:38px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. color:#FFFFFF;
  2286. }
  2287. #u16868 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u16868_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u16869_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:92px;
  2305. height:38px;
  2306. }
  2307. #u16869 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:907px;
  2311. top:0px;
  2312. width:92px;
  2313. height:38px;
  2314. display:flex;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. color:#FFFFFF;
  2320. }
  2321. #u16869 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u16869_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u16870_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:69px;
  2339. height:38px;
  2340. }
  2341. #u16870 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:999px;
  2345. top:0px;
  2346. width:69px;
  2347. height:38px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. color:#FFFFFF;
  2354. }
  2355. #u16870 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u16870_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u16871_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:69px;
  2373. height:38px;
  2374. }
  2375. #u16871 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:1068px;
  2379. top:0px;
  2380. width:69px;
  2381. height:38px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. color:#FFFFFF;
  2388. }
  2389. #u16871 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u16871_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u16872_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:81px;
  2407. height:38px;
  2408. }
  2409. #u16872 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:1137px;
  2413. top:0px;
  2414. width:81px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. color:#FFFFFF;
  2422. }
  2423. #u16872 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u16872_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. }
  2435. #u16873_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:69px;
  2441. height:38px;
  2442. }
  2443. #u16873 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:38px;
  2448. width:69px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. }
  2456. #u16873 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u16873_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u16874_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:68px;
  2475. height:38px;
  2476. }
  2477. #u16874 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:69px;
  2481. top:38px;
  2482. width:68px;
  2483. height:38px;
  2484. display:flex;
  2485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. }
  2490. #u16874 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u16874_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u16875_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:69px;
  2509. height:38px;
  2510. }
  2511. #u16875 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:137px;
  2515. top:38px;
  2516. width:69px;
  2517. height:38px;
  2518. display:flex;
  2519. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. }
  2524. #u16875 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u16875_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u16876_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:69px;
  2543. height:38px;
  2544. }
  2545. #u16876 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:206px;
  2549. top:38px;
  2550. width:69px;
  2551. height:38px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. }
  2558. #u16876 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u16876_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. visibility:hidden;
  2570. }
  2571. #u16877_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:69px;
  2577. height:38px;
  2578. }
  2579. #u16877 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:275px;
  2583. top:38px;
  2584. width:69px;
  2585. height:38px;
  2586. display:flex;
  2587. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. }
  2592. #u16877 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u16877_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. }
  2604. #u16878_img {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:69px;
  2610. height:38px;
  2611. }
  2612. #u16878 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:344px;
  2616. top:38px;
  2617. width:69px;
  2618. height:38px;
  2619. display:flex;
  2620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:12px;
  2624. }
  2625. #u16878 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u16878_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u16879_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:69px;
  2644. height:38px;
  2645. }
  2646. #u16879 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:413px;
  2650. top:38px;
  2651. width:69px;
  2652. height:38px;
  2653. display:flex;
  2654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. }
  2659. #u16879 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 0px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u16879_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u16880_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:69px;
  2678. height:38px;
  2679. }
  2680. #u16880 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:482px;
  2684. top:38px;
  2685. width:69px;
  2686. height:38px;
  2687. display:flex;
  2688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:12px;
  2692. }
  2693. #u16880 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u16880_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u16881_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:69px;
  2712. height:38px;
  2713. }
  2714. #u16881 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:551px;
  2718. top:38px;
  2719. width:69px;
  2720. height:38px;
  2721. display:flex;
  2722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. }
  2727. #u16881 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u16881_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u16882_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:69px;
  2746. height:38px;
  2747. }
  2748. #u16882 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:620px;
  2752. top:38px;
  2753. width:69px;
  2754. height:38px;
  2755. display:flex;
  2756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:12px;
  2760. }
  2761. #u16882 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 0px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u16882_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u16883_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:69px;
  2780. height:38px;
  2781. }
  2782. #u16883 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:689px;
  2786. top:38px;
  2787. width:69px;
  2788. height:38px;
  2789. display:flex;
  2790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. }
  2795. #u16883 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u16883_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u16884_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:69px;
  2814. height:38px;
  2815. }
  2816. #u16884 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:758px;
  2820. top:38px;
  2821. width:69px;
  2822. height:38px;
  2823. display:flex;
  2824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. }
  2829. #u16884 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 0px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u16884_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u16885_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:80px;
  2848. height:38px;
  2849. }
  2850. #u16885 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:827px;
  2854. top:38px;
  2855. width:80px;
  2856. height:38px;
  2857. display:flex;
  2858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:12px;
  2862. }
  2863. #u16885 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u16885_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u16886_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:92px;
  2882. height:38px;
  2883. }
  2884. #u16886 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:907px;
  2888. top:38px;
  2889. width:92px;
  2890. height:38px;
  2891. display:flex;
  2892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u16886 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u16886_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u16887_img {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:69px;
  2916. height:38px;
  2917. }
  2918. #u16887 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:999px;
  2922. top:38px;
  2923. width:69px;
  2924. height:38px;
  2925. display:flex;
  2926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:12px;
  2930. }
  2931. #u16887 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u16887_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. visibility:hidden;
  2943. }
  2944. #u16888_img {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:69px;
  2950. height:38px;
  2951. }
  2952. #u16888 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:1068px;
  2956. top:38px;
  2957. width:69px;
  2958. height:38px;
  2959. display:flex;
  2960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. }
  2965. #u16888 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 0px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u16888_text {
  2973. border-width:0px;
  2974. word-wrap:break-word;
  2975. text-transform:none;
  2976. }
  2977. #u16889_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:81px;
  2983. height:38px;
  2984. }
  2985. #u16889 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:1137px;
  2989. top:38px;
  2990. width:81px;
  2991. height:38px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. color:#1890FF;
  2998. }
  2999. #u16889 .text {
  3000. position:absolute;
  3001. align-self:center;
  3002. padding:2px 2px 2px 0px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u16889_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. }
  3011. #u16890_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:69px;
  3017. height:38px;
  3018. }
  3019. #u16890 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:76px;
  3024. width:69px;
  3025. height:38px;
  3026. display:flex;
  3027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#606266;
  3032. }
  3033. #u16890 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u16890_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u16891_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:68px;
  3052. height:38px;
  3053. }
  3054. #u16891 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:69px;
  3058. top:76px;
  3059. width:68px;
  3060. height:38px;
  3061. display:flex;
  3062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#606266;
  3067. }
  3068. #u16891 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u16891_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u16892_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:69px;
  3087. height:38px;
  3088. }
  3089. #u16892 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:137px;
  3093. top:76px;
  3094. width:69px;
  3095. height:38px;
  3096. display:flex;
  3097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#606266;
  3102. }
  3103. #u16892 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u16892_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u16893_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:69px;
  3122. height:38px;
  3123. }
  3124. #u16893 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:206px;
  3128. top:76px;
  3129. width:69px;
  3130. height:38px;
  3131. display:flex;
  3132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:12px;
  3136. color:#606266;
  3137. }
  3138. #u16893 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u16893_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u16894_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:69px;
  3157. height:38px;
  3158. }
  3159. #u16894 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:275px;
  3163. top:76px;
  3164. width:69px;
  3165. height:38px;
  3166. display:flex;
  3167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. color:#606266;
  3172. }
  3173. #u16894 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 2px 2px 0px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u16894_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. visibility:hidden;
  3185. }
  3186. #u16895_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:69px;
  3192. height:38px;
  3193. }
  3194. #u16895 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:344px;
  3198. top:76px;
  3199. width:69px;
  3200. height:38px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:12px;
  3206. color:#606266;
  3207. }
  3208. #u16895 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u16895_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u16896_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:69px;
  3227. height:38px;
  3228. }
  3229. #u16896 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:413px;
  3233. top:76px;
  3234. width:69px;
  3235. height:38px;
  3236. display:flex;
  3237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. color:#606266;
  3242. }
  3243. #u16896 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u16896_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u16897_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:69px;
  3262. height:38px;
  3263. }
  3264. #u16897 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:482px;
  3268. top:76px;
  3269. width:69px;
  3270. height:38px;
  3271. display:flex;
  3272. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:12px;
  3276. color:#606266;
  3277. }
  3278. #u16897 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u16897_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u16898_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:69px;
  3297. height:38px;
  3298. }
  3299. #u16898 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:551px;
  3303. top:76px;
  3304. width:69px;
  3305. height:38px;
  3306. display:flex;
  3307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. color:#606266;
  3312. }
  3313. #u16898 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u16898_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. visibility:hidden;
  3325. }
  3326. #u16899_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:69px;
  3332. height:38px;
  3333. }
  3334. #u16899 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:620px;
  3338. top:76px;
  3339. width:69px;
  3340. height:38px;
  3341. display:flex;
  3342. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:12px;
  3346. color:#606266;
  3347. }
  3348. #u16899 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 0px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u16899_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. visibility:hidden;
  3360. }
  3361. #u16900_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:69px;
  3367. height:38px;
  3368. }
  3369. #u16900 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:689px;
  3373. top:76px;
  3374. width:69px;
  3375. height:38px;
  3376. display:flex;
  3377. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:12px;
  3381. color:#606266;
  3382. }
  3383. #u16900 .text {
  3384. position:absolute;
  3385. align-self:center;
  3386. padding:2px 2px 2px 0px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u16900_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u16901_img {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:69px;
  3402. height:38px;
  3403. }
  3404. #u16901 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:758px;
  3408. top:76px;
  3409. width:69px;
  3410. height:38px;
  3411. display:flex;
  3412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:12px;
  3416. color:#606266;
  3417. }
  3418. #u16901 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u16901_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u16902_img {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:80px;
  3437. height:38px;
  3438. }
  3439. #u16902 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:827px;
  3443. top:76px;
  3444. width:80px;
  3445. height:38px;
  3446. display:flex;
  3447. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. color:#606266;
  3452. }
  3453. #u16902 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 0px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u16902_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u16903_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:92px;
  3472. height:38px;
  3473. }
  3474. #u16903 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:907px;
  3478. top:76px;
  3479. width:92px;
  3480. height:38px;
  3481. display:flex;
  3482. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:12px;
  3486. color:#606266;
  3487. }
  3488. #u16903 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u16903_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u16904_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:69px;
  3507. height:38px;
  3508. }
  3509. #u16904 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:999px;
  3513. top:76px;
  3514. width:69px;
  3515. height:38px;
  3516. display:flex;
  3517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:12px;
  3521. color:#606266;
  3522. }
  3523. #u16904 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u16904_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u16905_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:69px;
  3542. height:38px;
  3543. }
  3544. #u16905 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:1068px;
  3548. top:76px;
  3549. width:69px;
  3550. height:38px;
  3551. display:flex;
  3552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. color:#606266;
  3557. }
  3558. #u16905 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 0px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u16905_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u16906_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:81px;
  3577. height:38px;
  3578. }
  3579. #u16906 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1137px;
  3583. top:76px;
  3584. width:81px;
  3585. height:38px;
  3586. display:flex;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. color:#1890FF;
  3592. }
  3593. #u16906 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 0px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u16906_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u16907_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:69px;
  3612. height:38px;
  3613. }
  3614. #u16907 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:114px;
  3619. width:69px;
  3620. height:38px;
  3621. display:flex;
  3622. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. color:#606266;
  3627. }
  3628. #u16907 .text {
  3629. position:absolute;
  3630. align-self:center;
  3631. padding:2px 2px 2px 0px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u16907_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. visibility:hidden;
  3640. }
  3641. #u16908_img {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:68px;
  3647. height:38px;
  3648. }
  3649. #u16908 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:69px;
  3653. top:114px;
  3654. width:68px;
  3655. height:38px;
  3656. display:flex;
  3657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:12px;
  3661. color:#606266;
  3662. }
  3663. #u16908 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 0px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u16908_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. visibility:hidden;
  3675. }
  3676. #u16909_img {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:69px;
  3682. height:38px;
  3683. }
  3684. #u16909 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:137px;
  3688. top:114px;
  3689. width:69px;
  3690. height:38px;
  3691. display:flex;
  3692. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3693. font-weight:400;
  3694. font-style:normal;
  3695. font-size:12px;
  3696. color:#606266;
  3697. }
  3698. #u16909 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 0px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u16909_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u16910_img {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:69px;
  3717. height:38px;
  3718. }
  3719. #u16910 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:206px;
  3723. top:114px;
  3724. width:69px;
  3725. height:38px;
  3726. display:flex;
  3727. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:12px;
  3731. color:#606266;
  3732. }
  3733. #u16910 .text {
  3734. position:absolute;
  3735. align-self:center;
  3736. padding:2px 2px 2px 0px;
  3737. box-sizing:border-box;
  3738. width:100%;
  3739. }
  3740. #u16910_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. visibility:hidden;
  3745. }
  3746. #u16911_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:69px;
  3752. height:38px;
  3753. }
  3754. #u16911 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:275px;
  3758. top:114px;
  3759. width:69px;
  3760. height:38px;
  3761. display:flex;
  3762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. color:#606266;
  3767. }
  3768. #u16911 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 0px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u16911_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u16912_img {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:69px;
  3787. height:38px;
  3788. }
  3789. #u16912 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:344px;
  3793. top:114px;
  3794. width:69px;
  3795. height:38px;
  3796. display:flex;
  3797. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:12px;
  3801. color:#606266;
  3802. }
  3803. #u16912 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 0px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u16912_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u16913_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:69px;
  3822. height:38px;
  3823. }
  3824. #u16913 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:413px;
  3828. top:114px;
  3829. width:69px;
  3830. height:38px;
  3831. display:flex;
  3832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:12px;
  3836. color:#606266;
  3837. }
  3838. #u16913 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u16913_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u16914_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:69px;
  3857. height:38px;
  3858. }
  3859. #u16914 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:482px;
  3863. top:114px;
  3864. width:69px;
  3865. height:38px;
  3866. display:flex;
  3867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. color:#606266;
  3872. }
  3873. #u16914 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u16914_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u16915_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:69px;
  3892. height:38px;
  3893. }
  3894. #u16915 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:551px;
  3898. top:114px;
  3899. width:69px;
  3900. height:38px;
  3901. display:flex;
  3902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. color:#606266;
  3907. }
  3908. #u16915 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u16915_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u16916_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:69px;
  3927. height:38px;
  3928. }
  3929. #u16916 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:620px;
  3933. top:114px;
  3934. width:69px;
  3935. height:38px;
  3936. display:flex;
  3937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#606266;
  3942. }
  3943. #u16916 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u16916_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u16917_img {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:69px;
  3962. height:38px;
  3963. }
  3964. #u16917 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:689px;
  3968. top:114px;
  3969. width:69px;
  3970. height:38px;
  3971. display:flex;
  3972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:12px;
  3976. color:#606266;
  3977. }
  3978. #u16917 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 0px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u16917_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u16918_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:69px;
  3997. height:38px;
  3998. }
  3999. #u16918 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:758px;
  4003. top:114px;
  4004. width:69px;
  4005. height:38px;
  4006. display:flex;
  4007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. color:#606266;
  4012. }
  4013. #u16918 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u16918_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u16919_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:80px;
  4032. height:38px;
  4033. }
  4034. #u16919 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:827px;
  4038. top:114px;
  4039. width:80px;
  4040. height:38px;
  4041. display:flex;
  4042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. color:#606266;
  4047. }
  4048. #u16919 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 0px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u16919_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u16920_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:92px;
  4067. height:38px;
  4068. }
  4069. #u16920 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:907px;
  4073. top:114px;
  4074. width:92px;
  4075. height:38px;
  4076. display:flex;
  4077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. color:#606266;
  4082. }
  4083. #u16920 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u16920_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u16921_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:69px;
  4102. height:38px;
  4103. }
  4104. #u16921 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:999px;
  4108. top:114px;
  4109. width:69px;
  4110. height:38px;
  4111. display:flex;
  4112. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:12px;
  4116. color:#606266;
  4117. }
  4118. #u16921 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 0px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u16921_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u16922_img {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:69px;
  4137. height:38px;
  4138. }
  4139. #u16922 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:1068px;
  4143. top:114px;
  4144. width:69px;
  4145. height:38px;
  4146. display:flex;
  4147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#606266;
  4152. }
  4153. #u16922 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u16922_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. visibility:hidden;
  4165. }
  4166. #u16923_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:81px;
  4172. height:38px;
  4173. }
  4174. #u16923 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:1137px;
  4178. top:114px;
  4179. width:81px;
  4180. height:38px;
  4181. display:flex;
  4182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#02A7F0;
  4187. }
  4188. #u16923 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u16923_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u16924_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:69px;
  4207. height:38px;
  4208. }
  4209. #u16924 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:152px;
  4214. width:69px;
  4215. height:38px;
  4216. display:flex;
  4217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. color:#606266;
  4222. }
  4223. #u16924 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u16924_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u16925_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:68px;
  4242. height:38px;
  4243. }
  4244. #u16925 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:69px;
  4248. top:152px;
  4249. width:68px;
  4250. height:38px;
  4251. display:flex;
  4252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:12px;
  4256. color:#606266;
  4257. }
  4258. #u16925 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u16925_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u16926_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:69px;
  4277. height:38px;
  4278. }
  4279. #u16926 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:137px;
  4283. top:152px;
  4284. width:69px;
  4285. height:38px;
  4286. display:flex;
  4287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. color:#606266;
  4292. }
  4293. #u16926 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u16926_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. visibility:hidden;
  4305. }
  4306. #u16927_img {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:69px;
  4312. height:38px;
  4313. }
  4314. #u16927 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:206px;
  4318. top:152px;
  4319. width:69px;
  4320. height:38px;
  4321. display:flex;
  4322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:#606266;
  4327. }
  4328. #u16927 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u16927_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u16928_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:69px;
  4347. height:38px;
  4348. }
  4349. #u16928 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:275px;
  4353. top:152px;
  4354. width:69px;
  4355. height:38px;
  4356. display:flex;
  4357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:12px;
  4361. color:#606266;
  4362. }
  4363. #u16928 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 0px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u16928_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u16929_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:69px;
  4382. height:38px;
  4383. }
  4384. #u16929 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:344px;
  4388. top:152px;
  4389. width:69px;
  4390. height:38px;
  4391. display:flex;
  4392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:12px;
  4396. color:#606266;
  4397. }
  4398. #u16929 .text {
  4399. position:absolute;
  4400. align-self:center;
  4401. padding:2px 2px 2px 0px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u16929_text {
  4406. border-width:0px;
  4407. word-wrap:break-word;
  4408. text-transform:none;
  4409. visibility:hidden;
  4410. }
  4411. #u16930_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:69px;
  4417. height:38px;
  4418. }
  4419. #u16930 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:413px;
  4423. top:152px;
  4424. width:69px;
  4425. height:38px;
  4426. display:flex;
  4427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:12px;
  4431. color:#606266;
  4432. }
  4433. #u16930 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 0px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u16930_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u16931_img {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:69px;
  4452. height:38px;
  4453. }
  4454. #u16931 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:482px;
  4458. top:152px;
  4459. width:69px;
  4460. height:38px;
  4461. display:flex;
  4462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:12px;
  4466. color:#606266;
  4467. }
  4468. #u16931 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 0px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u16931_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u16932_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:69px;
  4487. height:38px;
  4488. }
  4489. #u16932 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:551px;
  4493. top:152px;
  4494. width:69px;
  4495. height:38px;
  4496. display:flex;
  4497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:12px;
  4501. color:#606266;
  4502. }
  4503. #u16932 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u16932_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u16933_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:69px;
  4522. height:38px;
  4523. }
  4524. #u16933 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:620px;
  4528. top:152px;
  4529. width:69px;
  4530. height:38px;
  4531. display:flex;
  4532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. color:#606266;
  4537. }
  4538. #u16933 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 0px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u16933_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u16934_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:69px;
  4557. height:38px;
  4558. }
  4559. #u16934 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:689px;
  4563. top:152px;
  4564. width:69px;
  4565. height:38px;
  4566. display:flex;
  4567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. color:#606266;
  4572. }
  4573. #u16934 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u16934_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u16935_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:69px;
  4592. height:38px;
  4593. }
  4594. #u16935 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:758px;
  4598. top:152px;
  4599. width:69px;
  4600. height:38px;
  4601. display:flex;
  4602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:12px;
  4606. color:#606266;
  4607. }
  4608. #u16935 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u16935_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u16936_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:80px;
  4627. height:38px;
  4628. }
  4629. #u16936 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:827px;
  4633. top:152px;
  4634. width:80px;
  4635. height:38px;
  4636. display:flex;
  4637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:#606266;
  4642. }
  4643. #u16936 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u16936_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u16937_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:92px;
  4662. height:38px;
  4663. }
  4664. #u16937 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:907px;
  4668. top:152px;
  4669. width:92px;
  4670. height:38px;
  4671. display:flex;
  4672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:12px;
  4676. color:#606266;
  4677. }
  4678. #u16937 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 0px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u16937_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u16938_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:69px;
  4697. height:38px;
  4698. }
  4699. #u16938 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:999px;
  4703. top:152px;
  4704. width:69px;
  4705. height:38px;
  4706. display:flex;
  4707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:12px;
  4711. color:#606266;
  4712. }
  4713. #u16938 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u16938_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u16939_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:69px;
  4732. height:38px;
  4733. }
  4734. #u16939 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1068px;
  4738. top:152px;
  4739. width:69px;
  4740. height:38px;
  4741. display:flex;
  4742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. color:#606266;
  4747. }
  4748. #u16939 .text {
  4749. position:absolute;
  4750. align-self:center;
  4751. padding:2px 2px 2px 0px;
  4752. box-sizing:border-box;
  4753. width:100%;
  4754. }
  4755. #u16939_text {
  4756. border-width:0px;
  4757. word-wrap:break-word;
  4758. text-transform:none;
  4759. visibility:hidden;
  4760. }
  4761. #u16940_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:81px;
  4767. height:38px;
  4768. }
  4769. #u16940 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:1137px;
  4773. top:152px;
  4774. width:81px;
  4775. height:38px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#02A7F0;
  4782. }
  4783. #u16940 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u16940_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u16941_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:69px;
  4802. height:35px;
  4803. }
  4804. #u16941 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:190px;
  4809. width:69px;
  4810. height:35px;
  4811. display:flex;
  4812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. color:#606266;
  4817. }
  4818. #u16941 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u16941_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u16942_img {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:68px;
  4837. height:35px;
  4838. }
  4839. #u16942 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:69px;
  4843. top:190px;
  4844. width:68px;
  4845. height:35px;
  4846. display:flex;
  4847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#606266;
  4852. }
  4853. #u16942 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u16942_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u16943_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:69px;
  4872. height:35px;
  4873. }
  4874. #u16943 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:137px;
  4878. top:190px;
  4879. width:69px;
  4880. height:35px;
  4881. display:flex;
  4882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#606266;
  4887. }
  4888. #u16943 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u16943_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u16944_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:69px;
  4907. height:35px;
  4908. }
  4909. #u16944 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:206px;
  4913. top:190px;
  4914. width:69px;
  4915. height:35px;
  4916. display:flex;
  4917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#606266;
  4922. }
  4923. #u16944 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u16944_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u16945_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:69px;
  4942. height:35px;
  4943. }
  4944. #u16945 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:275px;
  4948. top:190px;
  4949. width:69px;
  4950. height:35px;
  4951. display:flex;
  4952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:12px;
  4956. color:#606266;
  4957. }
  4958. #u16945 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u16945_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. visibility:hidden;
  4970. }
  4971. #u16946_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:69px;
  4977. height:35px;
  4978. }
  4979. #u16946 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:344px;
  4983. top:190px;
  4984. width:69px;
  4985. height:35px;
  4986. display:flex;
  4987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#606266;
  4992. }
  4993. #u16946 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u16946_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u16947_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:69px;
  5012. height:35px;
  5013. }
  5014. #u16947 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:413px;
  5018. top:190px;
  5019. width:69px;
  5020. height:35px;
  5021. display:flex;
  5022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. color:#606266;
  5027. }
  5028. #u16947 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 2px 2px 0px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u16947_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. visibility:hidden;
  5040. }
  5041. #u16948_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:69px;
  5047. height:35px;
  5048. }
  5049. #u16948 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:482px;
  5053. top:190px;
  5054. width:69px;
  5055. height:35px;
  5056. display:flex;
  5057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:12px;
  5061. color:#606266;
  5062. }
  5063. #u16948 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u16948_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. visibility:hidden;
  5075. }
  5076. #u16949_img {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:69px;
  5082. height:35px;
  5083. }
  5084. #u16949 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:551px;
  5088. top:190px;
  5089. width:69px;
  5090. height:35px;
  5091. display:flex;
  5092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. color:#606266;
  5097. }
  5098. #u16949 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u16949_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u16950_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:69px;
  5117. height:35px;
  5118. }
  5119. #u16950 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:620px;
  5123. top:190px;
  5124. width:69px;
  5125. height:35px;
  5126. display:flex;
  5127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:12px;
  5131. color:#606266;
  5132. }
  5133. #u16950 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u16950_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u16951_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:69px;
  5152. height:35px;
  5153. }
  5154. #u16951 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:689px;
  5158. top:190px;
  5159. width:69px;
  5160. height:35px;
  5161. display:flex;
  5162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#606266;
  5167. }
  5168. #u16951 .text {
  5169. position:absolute;
  5170. align-self:center;
  5171. padding:2px 2px 2px 0px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u16951_text {
  5176. border-width:0px;
  5177. word-wrap:break-word;
  5178. text-transform:none;
  5179. visibility:hidden;
  5180. }
  5181. #u16952_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:69px;
  5187. height:35px;
  5188. }
  5189. #u16952 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:758px;
  5193. top:190px;
  5194. width:69px;
  5195. height:35px;
  5196. display:flex;
  5197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. color:#606266;
  5202. }
  5203. #u16952 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 0px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u16952_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u16953_img {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:80px;
  5222. height:35px;
  5223. }
  5224. #u16953 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:827px;
  5228. top:190px;
  5229. width:80px;
  5230. height:35px;
  5231. display:flex;
  5232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:12px;
  5236. color:#606266;
  5237. }
  5238. #u16953 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 0px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u16953_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u16954_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:92px;
  5257. height:35px;
  5258. }
  5259. #u16954 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:907px;
  5263. top:190px;
  5264. width:92px;
  5265. height:35px;
  5266. display:flex;
  5267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:12px;
  5271. color:#606266;
  5272. }
  5273. #u16954 .text {
  5274. position:absolute;
  5275. align-self:center;
  5276. padding:2px 2px 2px 0px;
  5277. box-sizing:border-box;
  5278. width:100%;
  5279. }
  5280. #u16954_text {
  5281. border-width:0px;
  5282. word-wrap:break-word;
  5283. text-transform:none;
  5284. visibility:hidden;
  5285. }
  5286. #u16955_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:69px;
  5292. height:35px;
  5293. }
  5294. #u16955 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:999px;
  5298. top:190px;
  5299. width:69px;
  5300. height:35px;
  5301. display:flex;
  5302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:12px;
  5306. color:#606266;
  5307. }
  5308. #u16955 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:2px 2px 2px 0px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u16955_text {
  5316. border-width:0px;
  5317. word-wrap:break-word;
  5318. text-transform:none;
  5319. visibility:hidden;
  5320. }
  5321. #u16956_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:69px;
  5327. height:35px;
  5328. }
  5329. #u16956 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:1068px;
  5333. top:190px;
  5334. width:69px;
  5335. height:35px;
  5336. display:flex;
  5337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. color:#606266;
  5342. }
  5343. #u16956 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u16956_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u16957_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:81px;
  5362. height:35px;
  5363. }
  5364. #u16957 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1137px;
  5368. top:190px;
  5369. width:81px;
  5370. height:35px;
  5371. display:flex;
  5372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#606266;
  5377. }
  5378. #u16957 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u16957_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. visibility:hidden;
  5390. }
  5391. #u16958_img {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:69px;
  5397. height:34px;
  5398. }
  5399. #u16958 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:225px;
  5404. width:69px;
  5405. height:34px;
  5406. display:flex;
  5407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:12px;
  5411. color:#606266;
  5412. }
  5413. #u16958 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u16958_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u16959_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:68px;
  5432. height:34px;
  5433. }
  5434. #u16959 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:69px;
  5438. top:225px;
  5439. width:68px;
  5440. height:34px;
  5441. display:flex;
  5442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. color:#606266;
  5447. }
  5448. #u16959 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u16959_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. visibility:hidden;
  5460. }
  5461. #u16960_img {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:69px;
  5467. height:34px;
  5468. }
  5469. #u16960 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:137px;
  5473. top:225px;
  5474. width:69px;
  5475. height:34px;
  5476. display:flex;
  5477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:12px;
  5481. color:#606266;
  5482. }
  5483. #u16960 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u16960_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. visibility:hidden;
  5495. }
  5496. #u16961_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:69px;
  5502. height:34px;
  5503. }
  5504. #u16961 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:206px;
  5508. top:225px;
  5509. width:69px;
  5510. height:34px;
  5511. display:flex;
  5512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:12px;
  5516. color:#606266;
  5517. }
  5518. #u16961 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 0px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u16961_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u16962_img {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:69px;
  5537. height:34px;
  5538. }
  5539. #u16962 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:275px;
  5543. top:225px;
  5544. width:69px;
  5545. height:34px;
  5546. display:flex;
  5547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#606266;
  5552. }
  5553. #u16962 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 0px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u16962_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. visibility:hidden;
  5565. }
  5566. #u16963_img {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:69px;
  5572. height:34px;
  5573. }
  5574. #u16963 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:344px;
  5578. top:225px;
  5579. width:69px;
  5580. height:34px;
  5581. display:flex;
  5582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. color:#606266;
  5587. }
  5588. #u16963 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u16963_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u16964_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:69px;
  5607. height:34px;
  5608. }
  5609. #u16964 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:413px;
  5613. top:225px;
  5614. width:69px;
  5615. height:34px;
  5616. display:flex;
  5617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:12px;
  5621. color:#606266;
  5622. }
  5623. #u16964 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 0px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u16964_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u16965_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:69px;
  5642. height:34px;
  5643. }
  5644. #u16965 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:482px;
  5648. top:225px;
  5649. width:69px;
  5650. height:34px;
  5651. display:flex;
  5652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. color:#606266;
  5657. }
  5658. #u16965 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:2px 2px 2px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u16965_text {
  5666. border-width:0px;
  5667. word-wrap:break-word;
  5668. text-transform:none;
  5669. visibility:hidden;
  5670. }
  5671. #u16966_img {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:69px;
  5677. height:34px;
  5678. }
  5679. #u16966 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:551px;
  5683. top:225px;
  5684. width:69px;
  5685. height:34px;
  5686. display:flex;
  5687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#606266;
  5692. }
  5693. #u16966 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u16966_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u16967_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:69px;
  5712. height:34px;
  5713. }
  5714. #u16967 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:620px;
  5718. top:225px;
  5719. width:69px;
  5720. height:34px;
  5721. display:flex;
  5722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. color:#606266;
  5727. }
  5728. #u16967 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 0px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u16967_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u16968_img {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:69px;
  5747. height:34px;
  5748. }
  5749. #u16968 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:689px;
  5753. top:225px;
  5754. width:69px;
  5755. height:34px;
  5756. display:flex;
  5757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:12px;
  5761. color:#606266;
  5762. }
  5763. #u16968 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 0px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u16968_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. visibility:hidden;
  5775. }
  5776. #u16969_img {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:69px;
  5782. height:34px;
  5783. }
  5784. #u16969 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:758px;
  5788. top:225px;
  5789. width:69px;
  5790. height:34px;
  5791. display:flex;
  5792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#606266;
  5797. }
  5798. #u16969 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 2px 2px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u16969_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u16970_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:80px;
  5817. height:34px;
  5818. }
  5819. #u16970 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:827px;
  5823. top:225px;
  5824. width:80px;
  5825. height:34px;
  5826. display:flex;
  5827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:12px;
  5831. color:#606266;
  5832. }
  5833. #u16970 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u16970_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u16971_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:92px;
  5852. height:34px;
  5853. }
  5854. #u16971 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:907px;
  5858. top:225px;
  5859. width:92px;
  5860. height:34px;
  5861. display:flex;
  5862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#606266;
  5867. }
  5868. #u16971 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 0px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u16971_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u16972_img {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:69px;
  5887. height:34px;
  5888. }
  5889. #u16972 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:999px;
  5893. top:225px;
  5894. width:69px;
  5895. height:34px;
  5896. display:flex;
  5897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:12px;
  5901. color:#606266;
  5902. }
  5903. #u16972 .text {
  5904. position:absolute;
  5905. align-self:center;
  5906. padding:2px 2px 2px 0px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u16972_text {
  5911. border-width:0px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. visibility:hidden;
  5915. }
  5916. #u16973_img {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:69px;
  5922. height:34px;
  5923. }
  5924. #u16973 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:1068px;
  5928. top:225px;
  5929. width:69px;
  5930. height:34px;
  5931. display:flex;
  5932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:12px;
  5936. color:#606266;
  5937. }
  5938. #u16973 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u16973_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u16974_img {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:81px;
  5957. height:34px;
  5958. }
  5959. #u16974 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:1137px;
  5963. top:225px;
  5964. width:81px;
  5965. height:34px;
  5966. display:flex;
  5967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:12px;
  5971. color:#606266;
  5972. }
  5973. #u16974 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u16974_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u16975_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:69px;
  5992. height:32px;
  5993. }
  5994. #u16975 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:259px;
  5999. width:69px;
  6000. height:32px;
  6001. display:flex;
  6002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#606266;
  6007. }
  6008. #u16975 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u16975_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u16976_img {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:68px;
  6027. height:32px;
  6028. }
  6029. #u16976 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:69px;
  6033. top:259px;
  6034. width:68px;
  6035. height:32px;
  6036. display:flex;
  6037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. color:#606266;
  6042. }
  6043. #u16976 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 0px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u16976_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u16977_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:69px;
  6062. height:32px;
  6063. }
  6064. #u16977 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:137px;
  6068. top:259px;
  6069. width:69px;
  6070. height:32px;
  6071. display:flex;
  6072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:12px;
  6076. color:#606266;
  6077. }
  6078. #u16977 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u16977_text {
  6086. border-width:0px;
  6087. word-wrap:break-word;
  6088. text-transform:none;
  6089. visibility:hidden;
  6090. }
  6091. #u16978_img {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:69px;
  6097. height:32px;
  6098. }
  6099. #u16978 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:206px;
  6103. top:259px;
  6104. width:69px;
  6105. height:32px;
  6106. display:flex;
  6107. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:12px;
  6111. color:#606266;
  6112. }
  6113. #u16978 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u16978_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u16979_img {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:69px;
  6132. height:32px;
  6133. }
  6134. #u16979 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:275px;
  6138. top:259px;
  6139. width:69px;
  6140. height:32px;
  6141. display:flex;
  6142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:12px;
  6146. color:#606266;
  6147. }
  6148. #u16979 .text {
  6149. position:absolute;
  6150. align-self:center;
  6151. padding:2px 2px 2px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u16979_text {
  6156. border-width:0px;
  6157. word-wrap:break-word;
  6158. text-transform:none;
  6159. visibility:hidden;
  6160. }
  6161. #u16980_img {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:69px;
  6167. height:32px;
  6168. }
  6169. #u16980 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:344px;
  6173. top:259px;
  6174. width:69px;
  6175. height:32px;
  6176. display:flex;
  6177. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:12px;
  6181. color:#606266;
  6182. }
  6183. #u16980 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 0px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u16980_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u16981_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:69px;
  6202. height:32px;
  6203. }
  6204. #u16981 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:413px;
  6208. top:259px;
  6209. width:69px;
  6210. height:32px;
  6211. display:flex;
  6212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:12px;
  6216. color:#606266;
  6217. }
  6218. #u16981 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u16981_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u16982_img {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:69px;
  6237. height:32px;
  6238. }
  6239. #u16982 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:482px;
  6243. top:259px;
  6244. width:69px;
  6245. height:32px;
  6246. display:flex;
  6247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#606266;
  6252. }
  6253. #u16982 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:2px 2px 2px 0px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u16982_text {
  6261. border-width:0px;
  6262. word-wrap:break-word;
  6263. text-transform:none;
  6264. visibility:hidden;
  6265. }
  6266. #u16983_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:69px;
  6272. height:32px;
  6273. }
  6274. #u16983 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:551px;
  6278. top:259px;
  6279. width:69px;
  6280. height:32px;
  6281. display:flex;
  6282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. color:#606266;
  6287. }
  6288. #u16983 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 0px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u16983_text {
  6296. border-width:0px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. visibility:hidden;
  6300. }
  6301. #u16984_img {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:69px;
  6307. height:32px;
  6308. }
  6309. #u16984 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:620px;
  6313. top:259px;
  6314. width:69px;
  6315. height:32px;
  6316. display:flex;
  6317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:12px;
  6321. color:#606266;
  6322. }
  6323. #u16984 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 0px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u16984_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. visibility:hidden;
  6335. }
  6336. #u16985_img {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:69px;
  6342. height:32px;
  6343. }
  6344. #u16985 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:689px;
  6348. top:259px;
  6349. width:69px;
  6350. height:32px;
  6351. display:flex;
  6352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. color:#606266;
  6357. }
  6358. #u16985 .text {
  6359. position:absolute;
  6360. align-self:center;
  6361. padding:2px 2px 2px 0px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u16985_text {
  6366. border-width:0px;
  6367. word-wrap:break-word;
  6368. text-transform:none;
  6369. visibility:hidden;
  6370. }
  6371. #u16986_img {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:69px;
  6377. height:32px;
  6378. }
  6379. #u16986 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:758px;
  6383. top:259px;
  6384. width:69px;
  6385. height:32px;
  6386. display:flex;
  6387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:12px;
  6391. color:#606266;
  6392. }
  6393. #u16986 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u16986_text {
  6401. border-width:0px;
  6402. word-wrap:break-word;
  6403. text-transform:none;
  6404. visibility:hidden;
  6405. }
  6406. #u16987_img {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:80px;
  6412. height:32px;
  6413. }
  6414. #u16987 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:827px;
  6418. top:259px;
  6419. width:80px;
  6420. height:32px;
  6421. display:flex;
  6422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:12px;
  6426. color:#606266;
  6427. }
  6428. #u16987 .text {
  6429. position:absolute;
  6430. align-self:center;
  6431. padding:2px 2px 2px 0px;
  6432. box-sizing:border-box;
  6433. width:100%;
  6434. }
  6435. #u16987_text {
  6436. border-width:0px;
  6437. word-wrap:break-word;
  6438. text-transform:none;
  6439. visibility:hidden;
  6440. }
  6441. #u16988_img {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:92px;
  6447. height:32px;
  6448. }
  6449. #u16988 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:907px;
  6453. top:259px;
  6454. width:92px;
  6455. height:32px;
  6456. display:flex;
  6457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:12px;
  6461. color:#606266;
  6462. }
  6463. #u16988 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u16988_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u16989_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:69px;
  6482. height:32px;
  6483. }
  6484. #u16989 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:999px;
  6488. top:259px;
  6489. width:69px;
  6490. height:32px;
  6491. display:flex;
  6492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:12px;
  6496. color:#606266;
  6497. }
  6498. #u16989 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u16989_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u16990_img {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:69px;
  6517. height:32px;
  6518. }
  6519. #u16990 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:1068px;
  6523. top:259px;
  6524. width:69px;
  6525. height:32px;
  6526. display:flex;
  6527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:12px;
  6531. color:#606266;
  6532. }
  6533. #u16990 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 0px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u16990_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u16991_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:81px;
  6552. height:32px;
  6553. }
  6554. #u16991 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:1137px;
  6558. top:259px;
  6559. width:81px;
  6560. height:32px;
  6561. display:flex;
  6562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:12px;
  6566. color:#606266;
  6567. }
  6568. #u16991 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u16991_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. visibility:hidden;
  6580. }
  6581. #u16992_img {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:69px;
  6587. height:30px;
  6588. }
  6589. #u16992 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:291px;
  6594. width:69px;
  6595. height:30px;
  6596. display:flex;
  6597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:12px;
  6601. color:#606266;
  6602. }
  6603. #u16992 .text {
  6604. position:absolute;
  6605. align-self:center;
  6606. padding:2px 2px 2px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u16992_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. visibility:hidden;
  6615. }
  6616. #u16993_img {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:68px;
  6622. height:30px;
  6623. }
  6624. #u16993 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:69px;
  6628. top:291px;
  6629. width:68px;
  6630. height:30px;
  6631. display:flex;
  6632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:12px;
  6636. color:#606266;
  6637. }
  6638. #u16993 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u16993_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u16994_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:69px;
  6657. height:30px;
  6658. }
  6659. #u16994 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:137px;
  6663. top:291px;
  6664. width:69px;
  6665. height:30px;
  6666. display:flex;
  6667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:12px;
  6671. color:#606266;
  6672. }
  6673. #u16994 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 0px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u16994_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u16995_img {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:69px;
  6692. height:30px;
  6693. }
  6694. #u16995 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:206px;
  6698. top:291px;
  6699. width:69px;
  6700. height:30px;
  6701. display:flex;
  6702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. color:#606266;
  6707. }
  6708. #u16995 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 0px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u16995_text {
  6716. border-width:0px;
  6717. word-wrap:break-word;
  6718. text-transform:none;
  6719. visibility:hidden;
  6720. }
  6721. #u16996_img {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:69px;
  6727. height:30px;
  6728. }
  6729. #u16996 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:275px;
  6733. top:291px;
  6734. width:69px;
  6735. height:30px;
  6736. display:flex;
  6737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. color:#606266;
  6742. }
  6743. #u16996 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:2px 2px 2px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u16996_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. visibility:hidden;
  6755. }
  6756. #u16997_img {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:69px;
  6762. height:30px;
  6763. }
  6764. #u16997 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:344px;
  6768. top:291px;
  6769. width:69px;
  6770. height:30px;
  6771. display:flex;
  6772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. color:#606266;
  6777. }
  6778. #u16997 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:2px 2px 2px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u16997_text {
  6786. border-width:0px;
  6787. word-wrap:break-word;
  6788. text-transform:none;
  6789. visibility:hidden;
  6790. }
  6791. #u16998_img {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:69px;
  6797. height:30px;
  6798. }
  6799. #u16998 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:413px;
  6803. top:291px;
  6804. width:69px;
  6805. height:30px;
  6806. display:flex;
  6807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. color:#606266;
  6812. }
  6813. #u16998 .text {
  6814. position:absolute;
  6815. align-self:center;
  6816. padding:2px 2px 2px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u16998_text {
  6821. border-width:0px;
  6822. word-wrap:break-word;
  6823. text-transform:none;
  6824. visibility:hidden;
  6825. }
  6826. #u16999_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:69px;
  6832. height:30px;
  6833. }
  6834. #u16999 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:482px;
  6838. top:291px;
  6839. width:69px;
  6840. height:30px;
  6841. display:flex;
  6842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:12px;
  6846. color:#606266;
  6847. }
  6848. #u16999 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:2px 2px 2px 0px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u16999_text {
  6856. border-width:0px;
  6857. word-wrap:break-word;
  6858. text-transform:none;
  6859. visibility:hidden;
  6860. }
  6861. #u17000_img {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:69px;
  6867. height:30px;
  6868. }
  6869. #u17000 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:551px;
  6873. top:291px;
  6874. width:69px;
  6875. height:30px;
  6876. display:flex;
  6877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. color:#606266;
  6882. }
  6883. #u17000 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u17000_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u17001_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:69px;
  6902. height:30px;
  6903. }
  6904. #u17001 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:620px;
  6908. top:291px;
  6909. width:69px;
  6910. height:30px;
  6911. display:flex;
  6912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:12px;
  6916. color:#606266;
  6917. }
  6918. #u17001 .text {
  6919. position:absolute;
  6920. align-self:center;
  6921. padding:2px 2px 2px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u17001_text {
  6926. border-width:0px;
  6927. word-wrap:break-word;
  6928. text-transform:none;
  6929. visibility:hidden;
  6930. }
  6931. #u17002_img {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:0px;
  6935. top:0px;
  6936. width:69px;
  6937. height:30px;
  6938. }
  6939. #u17002 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:689px;
  6943. top:291px;
  6944. width:69px;
  6945. height:30px;
  6946. display:flex;
  6947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#606266;
  6952. }
  6953. #u17002 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u17002_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u17003_img {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:69px;
  6972. height:30px;
  6973. }
  6974. #u17003 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:758px;
  6978. top:291px;
  6979. width:69px;
  6980. height:30px;
  6981. display:flex;
  6982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:12px;
  6986. color:#606266;
  6987. }
  6988. #u17003 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u17003_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u17004_img {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:80px;
  7007. height:30px;
  7008. }
  7009. #u17004 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:827px;
  7013. top:291px;
  7014. width:80px;
  7015. height:30px;
  7016. display:flex;
  7017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:12px;
  7021. color:#606266;
  7022. }
  7023. #u17004 .text {
  7024. position:absolute;
  7025. align-self:center;
  7026. padding:2px 2px 2px 0px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u17004_text {
  7031. border-width:0px;
  7032. word-wrap:break-word;
  7033. text-transform:none;
  7034. visibility:hidden;
  7035. }
  7036. #u17005_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:92px;
  7042. height:30px;
  7043. }
  7044. #u17005 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:907px;
  7048. top:291px;
  7049. width:92px;
  7050. height:30px;
  7051. display:flex;
  7052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:12px;
  7056. color:#606266;
  7057. }
  7058. #u17005 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 0px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u17005_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u17006_img {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:69px;
  7077. height:30px;
  7078. }
  7079. #u17006 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:999px;
  7083. top:291px;
  7084. width:69px;
  7085. height:30px;
  7086. display:flex;
  7087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:12px;
  7091. color:#606266;
  7092. }
  7093. #u17006 .text {
  7094. position:absolute;
  7095. align-self:center;
  7096. padding:2px 2px 2px 0px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u17006_text {
  7101. border-width:0px;
  7102. word-wrap:break-word;
  7103. text-transform:none;
  7104. visibility:hidden;
  7105. }
  7106. #u17007_img {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:69px;
  7112. height:30px;
  7113. }
  7114. #u17007 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:1068px;
  7118. top:291px;
  7119. width:69px;
  7120. height:30px;
  7121. display:flex;
  7122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. color:#606266;
  7127. }
  7128. #u17007 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:2px 2px 2px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u17007_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. visibility:hidden;
  7140. }
  7141. #u17008_img {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:81px;
  7147. height:30px;
  7148. }
  7149. #u17008 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:1137px;
  7153. top:291px;
  7154. width:81px;
  7155. height:30px;
  7156. display:flex;
  7157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:12px;
  7161. color:#606266;
  7162. }
  7163. #u17008 .text {
  7164. position:absolute;
  7165. align-self:center;
  7166. padding:2px 2px 2px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u17008_text {
  7171. border-width:0px;
  7172. word-wrap:break-word;
  7173. text-transform:none;
  7174. visibility:hidden;
  7175. }
  7176. #u17009_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:55px;
  7182. height:30px;
  7183. background:inherit;
  7184. background-color:rgba(255, 255, 255, 1);
  7185. box-sizing:border-box;
  7186. border-width:1px;
  7187. border-style:solid;
  7188. border-color:rgba(170, 170, 170, 1);
  7189. border-radius:4px;
  7190. -moz-box-shadow:none;
  7191. -webkit-box-shadow:none;
  7192. box-shadow:none;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:12px;
  7197. color:#555555;
  7198. }
  7199. #u17009 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:352px;
  7203. top:229px;
  7204. width:55px;
  7205. height:30px;
  7206. display:flex;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:12px;
  7211. color:#555555;
  7212. }
  7213. #u17009 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:5px 15px 5px 15px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u17009_text {
  7221. border-width:0px;
  7222. white-space:nowrap;
  7223. text-transform:none;
  7224. }
  7225. #u17010_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:73px;
  7231. height:50px;
  7232. background:inherit;
  7233. background-color:rgba(255, 255, 255, 0);
  7234. border:none;
  7235. border-left:0px;
  7236. border-top:0px;
  7237. border-right:0px;
  7238. border-radius:0px;
  7239. border-bottom-right-radius:0px;
  7240. border-bottom-left-radius:0px;
  7241. -moz-box-shadow:none;
  7242. -webkit-box-shadow:none;
  7243. box-shadow:none;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:18px;
  7248. color:#000000;
  7249. line-height:40px;
  7250. }
  7251. #u17010 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:455px;
  7255. top:50px;
  7256. width:73px;
  7257. height:50px;
  7258. display:flex;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:18px;
  7263. color:#000000;
  7264. line-height:40px;
  7265. }
  7266. #u17010 .text {
  7267. position:absolute;
  7268. align-self:center;
  7269. padding:0px 0px 0px 0px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u17010_text {
  7274. border-width:0px;
  7275. white-space:nowrap;
  7276. text-transform:none;
  7277. }
  7278. #u17011_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:43px;
  7284. height:50px;
  7285. background:inherit;
  7286. background-color:rgba(255, 255, 255, 0);
  7287. box-sizing:border-box;
  7288. border-width:2px;
  7289. border-style:solid;
  7290. border-color:rgba(41, 143, 255, 1);
  7291. border-left:0px;
  7292. border-top:0px;
  7293. border-right:0px;
  7294. border-radius:0px;
  7295. border-bottom-right-radius:0px;
  7296. border-bottom-left-radius:0px;
  7297. -moz-box-shadow:none;
  7298. -webkit-box-shadow:none;
  7299. box-shadow:none;
  7300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:14px;
  7304. color:#000000;
  7305. line-height:40px;
  7306. }
  7307. #u17011 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:352px;
  7311. top:100px;
  7312. width:43px;
  7313. height:50px;
  7314. display:flex;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. color:#000000;
  7320. line-height:40px;
  7321. }
  7322. #u17011 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:0px 0px 0px 0px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u17011_text {
  7330. border-width:0px;
  7331. white-space:nowrap;
  7332. text-transform:none;
  7333. }
  7334. #u17012_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:43px;
  7340. height:50px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 0);
  7343. border:none;
  7344. border-left:0px;
  7345. border-top:0px;
  7346. border-right:0px;
  7347. border-radius:0px;
  7348. border-bottom-right-radius:0px;
  7349. border-bottom-left-radius:0px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#000000;
  7358. line-height:40px;
  7359. }
  7360. #u17012 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:425px;
  7364. top:100px;
  7365. width:43px;
  7366. height:50px;
  7367. display:flex;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:14px;
  7372. color:#000000;
  7373. line-height:40px;
  7374. }
  7375. #u17012 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:0px 0px 0px 0px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u17012_text {
  7383. border-width:0px;
  7384. white-space:nowrap;
  7385. text-transform:none;
  7386. }
  7387. #u17013_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:43px;
  7393. height:50px;
  7394. background:inherit;
  7395. background-color:rgba(255, 255, 255, 0);
  7396. border:none;
  7397. border-left:0px;
  7398. border-top:0px;
  7399. border-right:0px;
  7400. border-radius:0px;
  7401. border-bottom-right-radius:0px;
  7402. border-bottom-left-radius:0px;
  7403. -moz-box-shadow:none;
  7404. -webkit-box-shadow:none;
  7405. box-shadow:none;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:14px;
  7410. color:#000000;
  7411. line-height:40px;
  7412. }
  7413. #u17013 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:498px;
  7417. top:100px;
  7418. width:43px;
  7419. height:50px;
  7420. display:flex;
  7421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:14px;
  7425. color:#000000;
  7426. line-height:40px;
  7427. }
  7428. #u17013 .text {
  7429. position:absolute;
  7430. align-self:center;
  7431. padding:0px 0px 0px 0px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u17013_text {
  7436. border-width:0px;
  7437. white-space:nowrap;
  7438. text-transform:none;
  7439. }
  7440. #u17014_div {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:43px;
  7446. height:50px;
  7447. background:inherit;
  7448. background-color:rgba(255, 255, 255, 0);
  7449. border:none;
  7450. border-left:0px;
  7451. border-top:0px;
  7452. border-right:0px;
  7453. border-radius:0px;
  7454. border-bottom-right-radius:0px;
  7455. border-bottom-left-radius:0px;
  7456. -moz-box-shadow:none;
  7457. -webkit-box-shadow:none;
  7458. box-shadow:none;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. color:#000000;
  7464. line-height:40px;
  7465. }
  7466. #u17014 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:571px;
  7470. top:100px;
  7471. width:43px;
  7472. height:50px;
  7473. display:flex;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:14px;
  7478. color:#000000;
  7479. line-height:40px;
  7480. }
  7481. #u17014 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:0px 0px 0px 0px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u17014_text {
  7489. border-width:0px;
  7490. white-space:nowrap;
  7491. text-transform:none;
  7492. }
  7493. #u17015 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:0px;
  7499. height:0px;
  7500. }
  7501. #u17016_div {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:55px;
  7507. height:30px;
  7508. background:inherit;
  7509. background-color:rgba(255, 255, 255, 1);
  7510. box-sizing:border-box;
  7511. border-width:1px;
  7512. border-style:solid;
  7513. border-color:rgba(170, 170, 170, 1);
  7514. border-radius:4px;
  7515. -moz-box-shadow:none;
  7516. -webkit-box-shadow:none;
  7517. box-shadow:none;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:12px;
  7522. color:#555555;
  7523. }
  7524. #u17016 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:1471px;
  7528. top:179px;
  7529. width:55px;
  7530. height:30px;
  7531. display:flex;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:12px;
  7536. color:#555555;
  7537. }
  7538. #u17016 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:5px 15px 5px 15px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u17016_text {
  7546. border-width:0px;
  7547. white-space:nowrap;
  7548. text-transform:none;
  7549. }
  7550. #u17017_div {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:59px;
  7556. height:30px;
  7557. background:inherit;
  7558. background-color:rgba(24, 144, 255, 1);
  7559. box-sizing:border-box;
  7560. border-width:1px;
  7561. border-style:solid;
  7562. border-color:rgba(0, 153, 255, 1);
  7563. border-radius:4px;
  7564. -moz-box-shadow:none;
  7565. -webkit-box-shadow:none;
  7566. box-shadow:none;
  7567. font-family:'Microsoft YaHei', sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. font-size:14px;
  7571. color:#FFFFFF;
  7572. }
  7573. #u17017 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:1402px;
  7577. top:179px;
  7578. width:59px;
  7579. height:30px;
  7580. display:flex;
  7581. font-family:'Microsoft YaHei', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:14px;
  7585. color:#FFFFFF;
  7586. }
  7587. #u17017 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:5px 15px 5px 15px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u17017_text {
  7595. border-width:0px;
  7596. white-space:nowrap;
  7597. text-transform:none;
  7598. }
  7599. #u17018 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:0px;
  7605. height:0px;
  7606. }
  7607. #u17019_div {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:140px;
  7613. height:30px;
  7614. background:inherit;
  7615. background-color:rgba(255, 255, 255, 1);
  7616. box-sizing:border-box;
  7617. border-width:1px;
  7618. border-style:solid;
  7619. border-color:rgba(201, 201, 201, 1);
  7620. border-radius:4px;
  7621. -moz-box-shadow:none;
  7622. -webkit-box-shadow:none;
  7623. box-shadow:none;
  7624. font-family:'Microsoft YaHei', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:14px;
  7628. color:#CCCCCC;
  7629. text-align:left;
  7630. }
  7631. #u17019 {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:502px;
  7635. top:179px;
  7636. width:140px;
  7637. height:30px;
  7638. display:flex;
  7639. font-family:'Microsoft YaHei', sans-serif;
  7640. font-weight:400;
  7641. font-style:normal;
  7642. font-size:14px;
  7643. color:#CCCCCC;
  7644. text-align:left;
  7645. }
  7646. #u17019 .text {
  7647. position:absolute;
  7648. align-self:center;
  7649. padding:2px 8px 2px 8px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u17019_text {
  7654. border-width:0px;
  7655. word-wrap:break-word;
  7656. text-transform:none;
  7657. visibility:hidden;
  7658. }
  7659. #u17020_input {
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:126px;
  7664. height:25px;
  7665. padding:2px 2px 2px 2px;
  7666. font-family:'Microsoft YaHei', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:10px;
  7670. letter-spacing:normal;
  7671. color:#000000;
  7672. vertical-align:none;
  7673. text-align:left;
  7674. text-transform:none;
  7675. background-color:transparent;
  7676. border-color:transparent;
  7677. }
  7678. #u17020_input.disabled {
  7679. position:absolute;
  7680. left:0px;
  7681. top:0px;
  7682. width:126px;
  7683. height:25px;
  7684. padding:2px 2px 2px 2px;
  7685. font-family:'Microsoft YaHei', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:10px;
  7689. letter-spacing:normal;
  7690. color:#000000;
  7691. vertical-align:none;
  7692. text-align:left;
  7693. text-transform:none;
  7694. background-color:transparent;
  7695. border-color:transparent;
  7696. }
  7697. #u17020_div {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:126px;
  7703. height:25px;
  7704. background:inherit;
  7705. background-color:rgba(255, 255, 255, 1);
  7706. border:none;
  7707. border-radius:0px;
  7708. -moz-box-shadow:none;
  7709. -webkit-box-shadow:none;
  7710. box-shadow:none;
  7711. font-family:'Microsoft YaHei', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:10px;
  7715. }
  7716. #u17020 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:510px;
  7720. top:180px;
  7721. width:126px;
  7722. height:25px;
  7723. display:flex;
  7724. font-family:'Microsoft YaHei', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:10px;
  7728. }
  7729. #u17020 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 2px 2px 2px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u17020_div.disabled {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:126px;
  7742. height:25px;
  7743. background:inherit;
  7744. background-color:rgba(240, 240, 240, 1);
  7745. border:none;
  7746. border-radius:0px;
  7747. -moz-box-shadow:none;
  7748. -webkit-box-shadow:none;
  7749. box-shadow:none;
  7750. font-family:'Microsoft YaHei', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:10px;
  7754. }
  7755. #u17020.disabled {
  7756. }
  7757. #u17021 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:0px;
  7761. top:0px;
  7762. width:0px;
  7763. height:0px;
  7764. }
  7765. #u17022_div {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:140px;
  7771. height:28px;
  7772. background:inherit;
  7773. background-color:rgba(255, 255, 255, 1);
  7774. box-sizing:border-box;
  7775. border-width:1px;
  7776. border-style:solid;
  7777. border-color:rgba(201, 201, 201, 1);
  7778. border-radius:4px;
  7779. -moz-box-shadow:none;
  7780. -webkit-box-shadow:none;
  7781. box-shadow:none;
  7782. font-family:'Microsoft YaHei', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:14px;
  7786. color:#CCCCCC;
  7787. text-align:left;
  7788. }
  7789. #u17022 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:1252px;
  7793. top:180px;
  7794. width:140px;
  7795. height:28px;
  7796. display:flex;
  7797. font-family:'Microsoft YaHei', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:14px;
  7801. color:#CCCCCC;
  7802. text-align:left;
  7803. }
  7804. #u17022 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 8px 2px 8px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u17022_text {
  7812. border-width:0px;
  7813. word-wrap:break-word;
  7814. text-transform:none;
  7815. visibility:hidden;
  7816. }
  7817. #u17023_input {
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:113px;
  7822. height:26px;
  7823. padding:2px 2px 2px 2px;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:14px;
  7828. letter-spacing:normal;
  7829. color:#000000;
  7830. vertical-align:none;
  7831. text-align:left;
  7832. text-transform:none;
  7833. background-color:transparent;
  7834. border-color:transparent;
  7835. }
  7836. #u17023_input.disabled {
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:113px;
  7841. height:26px;
  7842. padding:2px 2px 2px 2px;
  7843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7844. font-weight:400;
  7845. font-style:normal;
  7846. font-size:14px;
  7847. letter-spacing:normal;
  7848. color:#000000;
  7849. vertical-align:none;
  7850. text-align:left;
  7851. text-transform:none;
  7852. background-color:transparent;
  7853. border-color:transparent;
  7854. }
  7855. #u17023_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:113px;
  7861. height:26px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 1);
  7864. border:none;
  7865. border-radius:0px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:14px;
  7873. }
  7874. #u17023 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:1258px;
  7878. top:181px;
  7879. width:113px;
  7880. height:26px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:14px;
  7886. }
  7887. #u17023 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u17023_div.disabled {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:113px;
  7900. height:26px;
  7901. background:inherit;
  7902. background-color:rgba(240, 240, 240, 1);
  7903. border:none;
  7904. border-radius:0px;
  7905. -moz-box-shadow:none;
  7906. -webkit-box-shadow:none;
  7907. box-shadow:none;
  7908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7909. font-weight:400;
  7910. font-style:normal;
  7911. font-size:14px;
  7912. }
  7913. #u17023.disabled {
  7914. }
  7915. #u17024_img {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:12px;
  7921. height:15px;
  7922. }
  7923. #u17024 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:1371px;
  7927. top:187px;
  7928. width:12px;
  7929. height:15px;
  7930. display:flex;
  7931. }
  7932. #u17024 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u17024_text {
  7940. border-width:0px;
  7941. word-wrap:break-word;
  7942. text-transform:none;
  7943. visibility:hidden;
  7944. }
  7945. #u17025 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:0px;
  7951. height:0px;
  7952. }
  7953. #u17026_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:140px;
  7959. height:30px;
  7960. background:inherit;
  7961. background-color:rgba(255, 255, 255, 1);
  7962. box-sizing:border-box;
  7963. border-width:1px;
  7964. border-style:solid;
  7965. border-color:rgba(201, 201, 201, 1);
  7966. border-radius:4px;
  7967. -moz-box-shadow:none;
  7968. -webkit-box-shadow:none;
  7969. box-shadow:none;
  7970. font-family:'Microsoft YaHei', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:14px;
  7974. color:#CCCCCC;
  7975. text-align:left;
  7976. }
  7977. #u17026 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:952px;
  7981. top:179px;
  7982. width:140px;
  7983. height:30px;
  7984. display:flex;
  7985. font-family:'Microsoft YaHei', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:14px;
  7989. color:#CCCCCC;
  7990. text-align:left;
  7991. }
  7992. #u17026 .text {
  7993. position:absolute;
  7994. align-self:center;
  7995. padding:2px 8px 2px 8px;
  7996. box-sizing:border-box;
  7997. width:100%;
  7998. }
  7999. #u17026_text {
  8000. border-width:0px;
  8001. word-wrap:break-word;
  8002. text-transform:none;
  8003. visibility:hidden;
  8004. }
  8005. #u17027_input {
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:126px;
  8010. height:25px;
  8011. padding:2px 2px 2px 2px;
  8012. font-family:'Microsoft YaHei', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:10px;
  8016. letter-spacing:normal;
  8017. color:#000000;
  8018. vertical-align:none;
  8019. text-align:left;
  8020. text-transform:none;
  8021. background-color:transparent;
  8022. border-color:transparent;
  8023. }
  8024. #u17027_input.disabled {
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:126px;
  8029. height:25px;
  8030. padding:2px 2px 2px 2px;
  8031. font-family:'Microsoft YaHei', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:10px;
  8035. letter-spacing:normal;
  8036. color:#000000;
  8037. vertical-align:none;
  8038. text-align:left;
  8039. text-transform:none;
  8040. background-color:transparent;
  8041. border-color:transparent;
  8042. }
  8043. #u17027_div {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:126px;
  8049. height:25px;
  8050. background:inherit;
  8051. background-color:rgba(255, 255, 255, 1);
  8052. border:none;
  8053. border-radius:0px;
  8054. -moz-box-shadow:none;
  8055. -webkit-box-shadow:none;
  8056. box-shadow:none;
  8057. font-family:'Microsoft YaHei', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:10px;
  8061. }
  8062. #u17027 {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:961px;
  8066. top:180px;
  8067. width:126px;
  8068. height:25px;
  8069. display:flex;
  8070. font-family:'Microsoft YaHei', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:10px;
  8074. }
  8075. #u17027 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:2px 2px 2px 2px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u17027_div.disabled {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:126px;
  8088. height:25px;
  8089. background:inherit;
  8090. background-color:rgba(240, 240, 240, 1);
  8091. border:none;
  8092. border-radius:0px;
  8093. -moz-box-shadow:none;
  8094. -webkit-box-shadow:none;
  8095. box-shadow:none;
  8096. font-family:'Microsoft YaHei', sans-serif;
  8097. font-weight:400;
  8098. font-style:normal;
  8099. font-size:10px;
  8100. }
  8101. #u17027.disabled {
  8102. }
  8103. #u17028 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:0px;
  8109. height:0px;
  8110. }
  8111. #u17029_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:140px;
  8117. height:30px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 1);
  8120. box-sizing:border-box;
  8121. border-width:1px;
  8122. border-style:solid;
  8123. border-color:rgba(215, 215, 215, 1);
  8124. border-radius:4px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-size:11px;
  8129. }
  8130. #u17029 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:652px;
  8134. top:179px;
  8135. width:140px;
  8136. height:30px;
  8137. display:flex;
  8138. font-size:11px;
  8139. }
  8140. #u17029 .text {
  8141. position:absolute;
  8142. align-self:center;
  8143. padding:2px 2px 2px 2px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u17029_text {
  8148. border-width:0px;
  8149. word-wrap:break-word;
  8150. text-transform:none;
  8151. visibility:hidden;
  8152. }
  8153. #u17030_input {
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:125px;
  8158. height:23px;
  8159. padding:2px 2px 2px 2px;
  8160. font-family:'ArialMT', 'Arial', sans-serif;
  8161. font-weight:400;
  8162. font-style:normal;
  8163. font-size:11px;
  8164. letter-spacing:normal;
  8165. color:#AAAAAA;
  8166. vertical-align:none;
  8167. text-align:left;
  8168. text-transform:none;
  8169. background-color:transparent;
  8170. border-color:transparent;
  8171. }
  8172. #u17030_input.disabled {
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:125px;
  8177. height:23px;
  8178. padding:2px 2px 2px 2px;
  8179. font-family:'ArialMT', 'Arial', sans-serif;
  8180. font-weight:400;
  8181. font-style:normal;
  8182. font-size:11px;
  8183. letter-spacing:normal;
  8184. color:#AAAAAA;
  8185. vertical-align:none;
  8186. text-align:left;
  8187. text-transform:none;
  8188. background-color:transparent;
  8189. border-color:transparent;
  8190. }
  8191. #u17030_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:125px;
  8197. height:23px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 1);
  8200. border:none;
  8201. border-radius:0px;
  8202. -moz-box-shadow:none;
  8203. -webkit-box-shadow:none;
  8204. box-shadow:none;
  8205. font-size:11px;
  8206. color:#AAAAAA;
  8207. }
  8208. #u17030 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:658px;
  8212. top:181px;
  8213. width:125px;
  8214. height:23px;
  8215. display:flex;
  8216. font-size:11px;
  8217. color:#AAAAAA;
  8218. }
  8219. #u17030 .text {
  8220. position:absolute;
  8221. align-self:flex-start;
  8222. padding:2px 2px 2px 2px;
  8223. box-sizing:border-box;
  8224. width:100%;
  8225. }
  8226. #u17030_div.disabled {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:125px;
  8232. height:23px;
  8233. background:inherit;
  8234. background-color:rgba(240, 240, 240, 1);
  8235. border:none;
  8236. border-radius:0px;
  8237. -moz-box-shadow:none;
  8238. -webkit-box-shadow:none;
  8239. box-shadow:none;
  8240. font-size:11px;
  8241. color:#AAAAAA;
  8242. }
  8243. #u17030.disabled {
  8244. }
  8245. .u17030_input_option {
  8246. font-size:11px;
  8247. }
  8248. #u17031 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:0px;
  8254. height:0px;
  8255. }
  8256. #u17032_div {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:140px;
  8262. height:30px;
  8263. background:inherit;
  8264. background-color:rgba(255, 255, 255, 1);
  8265. box-sizing:border-box;
  8266. border-width:1px;
  8267. border-style:solid;
  8268. border-color:rgba(215, 215, 215, 1);
  8269. border-radius:4px;
  8270. -moz-box-shadow:none;
  8271. -webkit-box-shadow:none;
  8272. box-shadow:none;
  8273. font-size:11px;
  8274. }
  8275. #u17032 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:802px;
  8279. top:179px;
  8280. width:140px;
  8281. height:30px;
  8282. display:flex;
  8283. font-size:11px;
  8284. }
  8285. #u17032 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 2px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u17032_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u17033_input {
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:125px;
  8303. height:23px;
  8304. padding:2px 2px 2px 2px;
  8305. font-family:'ArialMT', 'Arial', sans-serif;
  8306. font-weight:400;
  8307. font-style:normal;
  8308. font-size:11px;
  8309. letter-spacing:normal;
  8310. color:#AAAAAA;
  8311. vertical-align:none;
  8312. text-align:left;
  8313. text-transform:none;
  8314. background-color:transparent;
  8315. border-color:transparent;
  8316. }
  8317. #u17033_input.disabled {
  8318. position:absolute;
  8319. left:0px;
  8320. top:0px;
  8321. width:125px;
  8322. height:23px;
  8323. padding:2px 2px 2px 2px;
  8324. font-family:'ArialMT', 'Arial', sans-serif;
  8325. font-weight:400;
  8326. font-style:normal;
  8327. font-size:11px;
  8328. letter-spacing:normal;
  8329. color:#AAAAAA;
  8330. vertical-align:none;
  8331. text-align:left;
  8332. text-transform:none;
  8333. background-color:transparent;
  8334. border-color:transparent;
  8335. }
  8336. #u17033_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:125px;
  8342. height:23px;
  8343. background:inherit;
  8344. background-color:rgba(255, 255, 255, 1);
  8345. border:none;
  8346. border-radius:0px;
  8347. -moz-box-shadow:none;
  8348. -webkit-box-shadow:none;
  8349. box-shadow:none;
  8350. font-size:11px;
  8351. color:#AAAAAA;
  8352. }
  8353. #u17033 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:808px;
  8357. top:181px;
  8358. width:125px;
  8359. height:23px;
  8360. display:flex;
  8361. font-size:11px;
  8362. color:#AAAAAA;
  8363. }
  8364. #u17033 .text {
  8365. position:absolute;
  8366. align-self:flex-start;
  8367. padding:2px 2px 2px 2px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u17033_div.disabled {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:125px;
  8377. height:23px;
  8378. background:inherit;
  8379. background-color:rgba(240, 240, 240, 1);
  8380. border:none;
  8381. border-radius:0px;
  8382. -moz-box-shadow:none;
  8383. -webkit-box-shadow:none;
  8384. box-shadow:none;
  8385. font-size:11px;
  8386. color:#AAAAAA;
  8387. }
  8388. #u17033.disabled {
  8389. }
  8390. .u17033_input_option {
  8391. font-size:11px;
  8392. }
  8393. #u17034 {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:0px;
  8397. top:0px;
  8398. width:0px;
  8399. height:0px;
  8400. }
  8401. #u17035_div {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:140px;
  8407. height:30px;
  8408. background:inherit;
  8409. background-color:rgba(255, 255, 255, 1);
  8410. box-sizing:border-box;
  8411. border-width:1px;
  8412. border-style:solid;
  8413. border-color:rgba(215, 215, 215, 1);
  8414. border-radius:4px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-size:11px;
  8419. }
  8420. #u17035 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:1102px;
  8424. top:179px;
  8425. width:140px;
  8426. height:30px;
  8427. display:flex;
  8428. font-size:11px;
  8429. }
  8430. #u17035 .text {
  8431. position:absolute;
  8432. align-self:center;
  8433. padding:2px 2px 2px 2px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u17035_text {
  8438. border-width:0px;
  8439. word-wrap:break-word;
  8440. text-transform:none;
  8441. visibility:hidden;
  8442. }
  8443. #u17036_input {
  8444. position:absolute;
  8445. left:0px;
  8446. top:0px;
  8447. width:123px;
  8448. height:23px;
  8449. padding:2px 2px 2px 2px;
  8450. font-family:'ArialMT', 'Arial', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:11px;
  8454. letter-spacing:normal;
  8455. color:#AAAAAA;
  8456. vertical-align:none;
  8457. text-align:left;
  8458. text-transform:none;
  8459. background-color:transparent;
  8460. border-color:transparent;
  8461. }
  8462. #u17036_input.disabled {
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:123px;
  8467. height:23px;
  8468. padding:2px 2px 2px 2px;
  8469. font-family:'ArialMT', 'Arial', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:11px;
  8473. letter-spacing:normal;
  8474. color:#AAAAAA;
  8475. vertical-align:none;
  8476. text-align:left;
  8477. text-transform:none;
  8478. background-color:transparent;
  8479. border-color:transparent;
  8480. }
  8481. #u17036_div {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:123px;
  8487. height:23px;
  8488. background:inherit;
  8489. background-color:rgba(255, 255, 255, 1);
  8490. border:none;
  8491. border-radius:0px;
  8492. -moz-box-shadow:none;
  8493. -webkit-box-shadow:none;
  8494. box-shadow:none;
  8495. font-size:11px;
  8496. color:#AAAAAA;
  8497. }
  8498. #u17036 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:1108px;
  8502. top:181px;
  8503. width:123px;
  8504. height:23px;
  8505. display:flex;
  8506. font-size:11px;
  8507. color:#AAAAAA;
  8508. }
  8509. #u17036 .text {
  8510. position:absolute;
  8511. align-self:flex-start;
  8512. padding:2px 2px 2px 2px;
  8513. box-sizing:border-box;
  8514. width:100%;
  8515. }
  8516. #u17036_div.disabled {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:123px;
  8522. height:23px;
  8523. background:inherit;
  8524. background-color:rgba(240, 240, 240, 1);
  8525. border:none;
  8526. border-radius:0px;
  8527. -moz-box-shadow:none;
  8528. -webkit-box-shadow:none;
  8529. box-shadow:none;
  8530. font-size:11px;
  8531. color:#AAAAAA;
  8532. }
  8533. #u17036.disabled {
  8534. }
  8535. .u17036_input_option {
  8536. font-size:11px;
  8537. }
  8538. #u17037 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:0px;
  8544. height:0px;
  8545. }
  8546. #u17038_div {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:140px;
  8552. height:30px;
  8553. background:inherit;
  8554. background-color:rgba(255, 255, 255, 1);
  8555. box-sizing:border-box;
  8556. border-width:1px;
  8557. border-style:solid;
  8558. border-color:rgba(201, 201, 201, 1);
  8559. border-radius:4px;
  8560. -moz-box-shadow:none;
  8561. -webkit-box-shadow:none;
  8562. box-shadow:none;
  8563. font-family:'Microsoft YaHei', sans-serif;
  8564. font-weight:400;
  8565. font-style:normal;
  8566. font-size:14px;
  8567. color:#CCCCCC;
  8568. text-align:left;
  8569. }
  8570. #u17038 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:352px;
  8574. top:179px;
  8575. width:140px;
  8576. height:30px;
  8577. display:flex;
  8578. font-family:'Microsoft YaHei', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:14px;
  8582. color:#CCCCCC;
  8583. text-align:left;
  8584. }
  8585. #u17038 .text {
  8586. position:absolute;
  8587. align-self:center;
  8588. padding:2px 8px 2px 8px;
  8589. box-sizing:border-box;
  8590. width:100%;
  8591. }
  8592. #u17038_text {
  8593. border-width:0px;
  8594. word-wrap:break-word;
  8595. text-transform:none;
  8596. visibility:hidden;
  8597. }
  8598. #u17039_input {
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:127px;
  8603. height:25px;
  8604. padding:2px 2px 2px 2px;
  8605. font-family:'Microsoft YaHei', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:10px;
  8609. letter-spacing:normal;
  8610. color:#000000;
  8611. vertical-align:none;
  8612. text-align:left;
  8613. text-transform:none;
  8614. background-color:transparent;
  8615. border-color:transparent;
  8616. }
  8617. #u17039_input.disabled {
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:127px;
  8622. height:25px;
  8623. padding:2px 2px 2px 2px;
  8624. font-family:'Microsoft YaHei', sans-serif;
  8625. font-weight:400;
  8626. font-style:normal;
  8627. font-size:10px;
  8628. letter-spacing:normal;
  8629. color:#000000;
  8630. vertical-align:none;
  8631. text-align:left;
  8632. text-transform:none;
  8633. background-color:transparent;
  8634. border-color:transparent;
  8635. }
  8636. #u17039_div {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:127px;
  8642. height:25px;
  8643. background:inherit;
  8644. background-color:rgba(255, 255, 255, 1);
  8645. border:none;
  8646. border-radius:0px;
  8647. -moz-box-shadow:none;
  8648. -webkit-box-shadow:none;
  8649. box-shadow:none;
  8650. font-family:'Microsoft YaHei', sans-serif;
  8651. font-weight:400;
  8652. font-style:normal;
  8653. font-size:10px;
  8654. }
  8655. #u17039 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:360px;
  8659. top:180px;
  8660. width:127px;
  8661. height:25px;
  8662. display:flex;
  8663. font-family:'Microsoft YaHei', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:10px;
  8667. }
  8668. #u17039 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:2px 2px 2px 2px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u17039_div.disabled {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:0px;
  8679. top:0px;
  8680. width:127px;
  8681. height:25px;
  8682. background:inherit;
  8683. background-color:rgba(240, 240, 240, 1);
  8684. border:none;
  8685. border-radius:0px;
  8686. -moz-box-shadow:none;
  8687. -webkit-box-shadow:none;
  8688. box-shadow:none;
  8689. font-family:'Microsoft YaHei', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:10px;
  8693. }
  8694. #u17039.disabled {
  8695. }
  8696. #u17040_div {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:43px;
  8702. height:50px;
  8703. background:inherit;
  8704. background-color:rgba(255, 255, 255, 0);
  8705. border:none;
  8706. border-left:0px;
  8707. border-top:0px;
  8708. border-right:0px;
  8709. border-radius:0px;
  8710. border-bottom-right-radius:0px;
  8711. border-bottom-left-radius:0px;
  8712. -moz-box-shadow:none;
  8713. -webkit-box-shadow:none;
  8714. box-shadow:none;
  8715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:14px;
  8719. color:#000000;
  8720. line-height:40px;
  8721. }
  8722. #u17040 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:644px;
  8726. top:100px;
  8727. width:43px;
  8728. height:50px;
  8729. display:flex;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:14px;
  8734. color:#000000;
  8735. line-height:40px;
  8736. }
  8737. #u17040 .text {
  8738. position:absolute;
  8739. align-self:center;
  8740. padding:0px 0px 0px 0px;
  8741. box-sizing:border-box;
  8742. width:100%;
  8743. }
  8744. #u17040_text {
  8745. border-width:0px;
  8746. white-space:nowrap;
  8747. text-transform:none;
  8748. }
  8749. #u17042 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:0px;
  8753. top:0px;
  8754. width:0px;
  8755. height:0px;
  8756. }
  8757. #u17043_img {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:200px;
  8763. height:1191px;
  8764. }
  8765. #u17043 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:120px;
  8769. top:50px;
  8770. width:200px;
  8771. height:1191px;
  8772. display:flex;
  8773. }
  8774. #u17043 .text {
  8775. position:absolute;
  8776. align-self:center;
  8777. padding:2px 2px 2px 2px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u17043_text {
  8782. border-width:0px;
  8783. word-wrap:break-word;
  8784. text-transform:none;
  8785. visibility:hidden;
  8786. }
  8787. #u17044_div {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:200px;
  8793. height:60px;
  8794. background:inherit;
  8795. background-color:rgba(224, 231, 247, 1);
  8796. border:none;
  8797. border-radius:0px;
  8798. -moz-box-shadow:none;
  8799. -webkit-box-shadow:none;
  8800. box-shadow:none;
  8801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8802. font-weight:500;
  8803. font-style:normal;
  8804. font-size:18px;
  8805. }
  8806. #u17044 {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:120px;
  8810. top:50px;
  8811. width:200px;
  8812. height:60px;
  8813. display:flex;
  8814. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8815. font-weight:500;
  8816. font-style:normal;
  8817. font-size:18px;
  8818. }
  8819. #u17044 .text {
  8820. position:absolute;
  8821. align-self:center;
  8822. padding:0px 0px 0px 20px;
  8823. box-sizing:border-box;
  8824. width:100%;
  8825. }
  8826. #u17044_text {
  8827. border-width:0px;
  8828. word-wrap:break-word;
  8829. text-transform:none;
  8830. }
  8831. #u17045 {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:120px;
  8835. top:130px;
  8836. width:200px;
  8837. height:1078px;
  8838. }
  8839. #u17045_state0 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:0px;
  8844. width:200px;
  8845. height:1078px;
  8846. overflow:auto;
  8847. -webkit-overflow-scrolling:touch;
  8848. -ms-overflow-x:hidden;
  8849. overflow-x:hidden;
  8850. background-image:none;
  8851. border:none;
  8852. border-radius:0px;
  8853. -moz-box-shadow:none;
  8854. -webkit-box-shadow:none;
  8855. box-shadow:none;
  8856. }
  8857. #u17045_state0_content {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:0px;
  8861. top:0px;
  8862. width:1px;
  8863. height:1px;
  8864. }
  8865. #u17046_div {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:97px;
  8871. height:22px;
  8872. background:inherit;
  8873. background-color:rgba(255, 255, 255, 0);
  8874. border:none;
  8875. border-radius:0px;
  8876. -moz-box-shadow:none;
  8877. -webkit-box-shadow:none;
  8878. box-shadow:none;
  8879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8880. font-weight:400;
  8881. font-style:normal;
  8882. font-size:16px;
  8883. }
  8884. #u17046 {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:30px;
  8888. top:0px;
  8889. width:97px;
  8890. height:22px;
  8891. display:flex;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:16px;
  8896. }
  8897. #u17046 .text {
  8898. position:absolute;
  8899. align-self:flex-start;
  8900. padding:0px 0px 0px 0px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u17046_text {
  8905. border-width:0px;
  8906. word-wrap:break-word;
  8907. text-transform:none;
  8908. }
  8909. #u17047_div {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:65px;
  8915. height:22px;
  8916. background:inherit;
  8917. background-color:rgba(255, 255, 255, 0);
  8918. border:none;
  8919. border-radius:0px;
  8920. -moz-box-shadow:none;
  8921. -webkit-box-shadow:none;
  8922. box-shadow:none;
  8923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8924. font-weight:400;
  8925. font-style:normal;
  8926. font-size:16px;
  8927. }
  8928. #u17047 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:30px;
  8932. top:42px;
  8933. width:65px;
  8934. height:22px;
  8935. display:flex;
  8936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8937. font-weight:400;
  8938. font-style:normal;
  8939. font-size:16px;
  8940. }
  8941. #u17047 .text {
  8942. position:absolute;
  8943. align-self:flex-start;
  8944. padding:0px 0px 0px 0px;
  8945. box-sizing:border-box;
  8946. width:100%;
  8947. }
  8948. #u17047_text {
  8949. border-width:0px;
  8950. white-space:nowrap;
  8951. text-transform:none;
  8952. }
  8953. #u17048_div {
  8954. border-width:0px;
  8955. position:absolute;
  8956. left:0px;
  8957. top:0px;
  8958. width:49px;
  8959. height:22px;
  8960. background:inherit;
  8961. background-color:rgba(255, 255, 255, 0);
  8962. border:none;
  8963. border-radius:0px;
  8964. -moz-box-shadow:none;
  8965. -webkit-box-shadow:none;
  8966. box-shadow:none;
  8967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8968. font-weight:400;
  8969. font-style:normal;
  8970. font-size:16px;
  8971. }
  8972. #u17048 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:30px;
  8976. top:145px;
  8977. width:49px;
  8978. height:22px;
  8979. display:flex;
  8980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:16px;
  8984. }
  8985. #u17048 .text {
  8986. position:absolute;
  8987. align-self:flex-start;
  8988. padding:0px 0px 0px 0px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u17048_text {
  8993. border-width:0px;
  8994. white-space:nowrap;
  8995. text-transform:none;
  8996. }
  8997. #u17049_div {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:0px;
  9001. top:0px;
  9002. width:97px;
  9003. height:22px;
  9004. background:inherit;
  9005. background-color:rgba(255, 255, 255, 0);
  9006. border:none;
  9007. border-radius:0px;
  9008. -moz-box-shadow:none;
  9009. -webkit-box-shadow:none;
  9010. box-shadow:none;
  9011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9012. font-weight:400;
  9013. font-style:normal;
  9014. font-size:16px;
  9015. }
  9016. #u17049 {
  9017. border-width:0px;
  9018. position:absolute;
  9019. left:30px;
  9020. top:187px;
  9021. width:97px;
  9022. height:22px;
  9023. display:flex;
  9024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:16px;
  9028. }
  9029. #u17049 .text {
  9030. position:absolute;
  9031. align-self:flex-start;
  9032. padding:0px 0px 0px 0px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u17049_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. }
  9041. #u17050_img {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:201px;
  9047. height:2px;
  9048. }
  9049. #u17050 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:0px;
  9053. top:84px;
  9054. width:200px;
  9055. height:1px;
  9056. display:flex;
  9057. }
  9058. #u17050 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 2px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u17050_text {
  9066. border-width:0px;
  9067. word-wrap:break-word;
  9068. text-transform:none;
  9069. visibility:hidden;
  9070. }
  9071. #u17051_div {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:49px;
  9077. height:17px;
  9078. background:inherit;
  9079. background-color:rgba(255, 255, 255, 0);
  9080. border:none;
  9081. border-radius:0px;
  9082. -moz-box-shadow:none;
  9083. -webkit-box-shadow:none;
  9084. box-shadow:none;
  9085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9086. font-weight:400;
  9087. font-style:normal;
  9088. font-size:12px;
  9089. color:#AAAAAA;
  9090. }
  9091. #u17051 {
  9092. border-width:0px;
  9093. position:absolute;
  9094. left:30px;
  9095. top:105px;
  9096. width:49px;
  9097. height:17px;
  9098. display:flex;
  9099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9100. font-weight:400;
  9101. font-style:normal;
  9102. font-size:12px;
  9103. color:#AAAAAA;
  9104. }
  9105. #u17051 .text {
  9106. position:absolute;
  9107. align-self:flex-start;
  9108. padding:0px 0px 0px 0px;
  9109. box-sizing:border-box;
  9110. width:100%;
  9111. }
  9112. #u17051_text {
  9113. border-width:0px;
  9114. white-space:nowrap;
  9115. text-transform:none;
  9116. }
  9117. #u17052_div {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:0px;
  9121. top:0px;
  9122. width:97px;
  9123. height:22px;
  9124. background:inherit;
  9125. background-color:rgba(255, 255, 255, 0);
  9126. border:none;
  9127. border-radius:0px;
  9128. -moz-box-shadow:none;
  9129. -webkit-box-shadow:none;
  9130. box-shadow:none;
  9131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9132. font-weight:400;
  9133. font-style:normal;
  9134. font-size:16px;
  9135. }
  9136. #u17052 {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:30px;
  9140. top:229px;
  9141. width:97px;
  9142. height:22px;
  9143. display:flex;
  9144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9145. font-weight:400;
  9146. font-style:normal;
  9147. font-size:16px;
  9148. }
  9149. #u17052 .text {
  9150. position:absolute;
  9151. align-self:flex-start;
  9152. padding:0px 0px 0px 0px;
  9153. box-sizing:border-box;
  9154. width:100%;
  9155. }
  9156. #u17052_text {
  9157. border-width:0px;
  9158. word-wrap:break-word;
  9159. text-transform:none;
  9160. }
  9161. #u17053_div {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:65px;
  9167. height:22px;
  9168. background:inherit;
  9169. background-color:rgba(255, 255, 255, 0);
  9170. border:none;
  9171. border-radius:0px;
  9172. -moz-box-shadow:none;
  9173. -webkit-box-shadow:none;
  9174. box-shadow:none;
  9175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. font-size:16px;
  9179. }
  9180. #u17053 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:30px;
  9184. top:271px;
  9185. width:65px;
  9186. height:22px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:16px;
  9192. }
  9193. #u17053 .text {
  9194. position:absolute;
  9195. align-self:flex-start;
  9196. padding:0px 0px 0px 0px;
  9197. box-sizing:border-box;
  9198. width:100%;
  9199. }
  9200. #u17053_text {
  9201. border-width:0px;
  9202. white-space:nowrap;
  9203. text-transform:none;
  9204. }
  9205. #u17054_img {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:0px;
  9209. top:0px;
  9210. width:201px;
  9211. height:2px;
  9212. }
  9213. #u17054 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:353px;
  9218. width:200px;
  9219. height:1px;
  9220. display:flex;
  9221. }
  9222. #u17054 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:2px 2px 2px 2px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u17054_text {
  9230. border-width:0px;
  9231. word-wrap:break-word;
  9232. text-transform:none;
  9233. visibility:hidden;
  9234. }
  9235. #u17055_div {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:65px;
  9241. height:22px;
  9242. background:inherit;
  9243. background-color:rgba(255, 255, 255, 0);
  9244. border:none;
  9245. border-radius:0px;
  9246. -moz-box-shadow:none;
  9247. -webkit-box-shadow:none;
  9248. box-shadow:none;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:16px;
  9253. }
  9254. #u17055 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:30px;
  9258. top:410px;
  9259. width:65px;
  9260. height:22px;
  9261. display:flex;
  9262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:16px;
  9266. }
  9267. #u17055 .text {
  9268. position:absolute;
  9269. align-self:flex-start;
  9270. padding:0px 0px 0px 0px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u17055_text {
  9275. border-width:0px;
  9276. white-space:nowrap;
  9277. text-transform:none;
  9278. }
  9279. #u17056_div {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:0px;
  9283. top:0px;
  9284. width:49px;
  9285. height:17px;
  9286. background:inherit;
  9287. background-color:rgba(255, 255, 255, 0);
  9288. border:none;
  9289. border-radius:0px;
  9290. -moz-box-shadow:none;
  9291. -webkit-box-shadow:none;
  9292. box-shadow:none;
  9293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9294. font-weight:400;
  9295. font-style:normal;
  9296. font-size:12px;
  9297. color:#AAAAAA;
  9298. }
  9299. #u17056 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:30px;
  9303. top:374px;
  9304. width:49px;
  9305. height:17px;
  9306. display:flex;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:12px;
  9311. color:#AAAAAA;
  9312. }
  9313. #u17056 .text {
  9314. position:absolute;
  9315. align-self:flex-start;
  9316. padding:0px 0px 0px 0px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u17056_text {
  9321. border-width:0px;
  9322. white-space:nowrap;
  9323. text-transform:none;
  9324. }
  9325. #u17057_div {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:65px;
  9331. height:22px;
  9332. background:inherit;
  9333. background-color:rgba(255, 255, 255, 0);
  9334. border:none;
  9335. border-radius:0px;
  9336. -moz-box-shadow:none;
  9337. -webkit-box-shadow:none;
  9338. box-shadow:none;
  9339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:16px;
  9343. }
  9344. #u17057 {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:30px;
  9348. top:452px;
  9349. width:65px;
  9350. height:22px;
  9351. display:flex;
  9352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9353. font-weight:400;
  9354. font-style:normal;
  9355. font-size:16px;
  9356. }
  9357. #u17057 .text {
  9358. position:absolute;
  9359. align-self:flex-start;
  9360. padding:0px 0px 0px 0px;
  9361. box-sizing:border-box;
  9362. width:100%;
  9363. }
  9364. #u17057_text {
  9365. border-width:0px;
  9366. white-space:nowrap;
  9367. text-transform:none;
  9368. }
  9369. #u17058_div {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:65px;
  9375. height:22px;
  9376. background:inherit;
  9377. background-color:rgba(255, 255, 255, 0);
  9378. border:none;
  9379. border-radius:0px;
  9380. -moz-box-shadow:none;
  9381. -webkit-box-shadow:none;
  9382. box-shadow:none;
  9383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9384. font-weight:400;
  9385. font-style:normal;
  9386. font-size:16px;
  9387. }
  9388. #u17058 {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:30px;
  9392. top:494px;
  9393. width:65px;
  9394. height:22px;
  9395. display:flex;
  9396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9397. font-weight:400;
  9398. font-style:normal;
  9399. font-size:16px;
  9400. }
  9401. #u17058 .text {
  9402. position:absolute;
  9403. align-self:flex-start;
  9404. padding:0px 0px 0px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u17058_text {
  9409. border-width:0px;
  9410. white-space:nowrap;
  9411. text-transform:none;
  9412. }
  9413. #u17059_div {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:65px;
  9419. height:22px;
  9420. background:inherit;
  9421. background-color:rgba(255, 255, 255, 0);
  9422. border:none;
  9423. border-radius:0px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:16px;
  9431. }
  9432. #u17059 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:30px;
  9436. top:536px;
  9437. width:65px;
  9438. height:22px;
  9439. display:flex;
  9440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9441. font-weight:400;
  9442. font-style:normal;
  9443. font-size:16px;
  9444. }
  9445. #u17059 .text {
  9446. position:absolute;
  9447. align-self:flex-start;
  9448. padding:0px 0px 0px 0px;
  9449. box-sizing:border-box;
  9450. width:100%;
  9451. }
  9452. #u17059_text {
  9453. border-width:0px;
  9454. white-space:nowrap;
  9455. text-transform:none;
  9456. }
  9457. #u17060_div {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:65px;
  9463. height:22px;
  9464. background:inherit;
  9465. background-color:rgba(255, 255, 255, 0);
  9466. border:none;
  9467. border-radius:0px;
  9468. -moz-box-shadow:none;
  9469. -webkit-box-shadow:none;
  9470. box-shadow:none;
  9471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9472. font-weight:400;
  9473. font-style:normal;
  9474. font-size:16px;
  9475. }
  9476. #u17060 {
  9477. border-width:0px;
  9478. position:absolute;
  9479. left:30px;
  9480. top:578px;
  9481. width:65px;
  9482. height:22px;
  9483. display:flex;
  9484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9485. font-weight:400;
  9486. font-style:normal;
  9487. font-size:16px;
  9488. }
  9489. #u17060 .text {
  9490. position:absolute;
  9491. align-self:flex-start;
  9492. padding:0px 0px 0px 0px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u17060_text {
  9497. border-width:0px;
  9498. white-space:nowrap;
  9499. text-transform:none;
  9500. }
  9501. #u17061_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:65px;
  9507. height:22px;
  9508. background:inherit;
  9509. background-color:rgba(255, 255, 255, 0);
  9510. border:none;
  9511. border-radius:0px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:16px;
  9519. }
  9520. #u17061 {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:30px;
  9524. top:620px;
  9525. width:65px;
  9526. height:22px;
  9527. display:flex;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:16px;
  9532. }
  9533. #u17061 .text {
  9534. position:absolute;
  9535. align-self:flex-start;
  9536. padding:0px 0px 0px 0px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u17061_text {
  9541. border-width:0px;
  9542. white-space:nowrap;
  9543. text-transform:none;
  9544. }
  9545. #u17062_img {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:201px;
  9551. height:2px;
  9552. }
  9553. #u17062 {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:1325px;
  9558. width:200px;
  9559. height:1px;
  9560. display:flex;
  9561. }
  9562. #u17062 .text {
  9563. position:absolute;
  9564. align-self:center;
  9565. padding:2px 2px 2px 2px;
  9566. box-sizing:border-box;
  9567. width:100%;
  9568. }
  9569. #u17062_text {
  9570. border-width:0px;
  9571. word-wrap:break-word;
  9572. text-transform:none;
  9573. visibility:hidden;
  9574. }
  9575. #u17063_div {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:0px;
  9579. top:0px;
  9580. width:65px;
  9581. height:22px;
  9582. background:inherit;
  9583. background-color:rgba(255, 255, 255, 0);
  9584. border:none;
  9585. border-radius:0px;
  9586. -moz-box-shadow:none;
  9587. -webkit-box-shadow:none;
  9588. box-shadow:none;
  9589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9590. font-weight:400;
  9591. font-style:normal;
  9592. font-size:16px;
  9593. }
  9594. #u17063 {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:30px;
  9598. top:1382px;
  9599. width:65px;
  9600. height:22px;
  9601. display:flex;
  9602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:16px;
  9606. }
  9607. #u17063 .text {
  9608. position:absolute;
  9609. align-self:flex-start;
  9610. padding:0px 0px 0px 0px;
  9611. box-sizing:border-box;
  9612. width:100%;
  9613. }
  9614. #u17063_text {
  9615. border-width:0px;
  9616. white-space:nowrap;
  9617. text-transform:none;
  9618. }
  9619. #u17064_div {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:49px;
  9625. height:17px;
  9626. background:inherit;
  9627. background-color:rgba(255, 255, 255, 0);
  9628. border:none;
  9629. border-radius:0px;
  9630. -moz-box-shadow:none;
  9631. -webkit-box-shadow:none;
  9632. box-shadow:none;
  9633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9634. font-weight:400;
  9635. font-style:normal;
  9636. font-size:12px;
  9637. color:#AAAAAA;
  9638. }
  9639. #u17064 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:30px;
  9643. top:1346px;
  9644. width:49px;
  9645. height:17px;
  9646. display:flex;
  9647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:12px;
  9651. color:#AAAAAA;
  9652. }
  9653. #u17064 .text {
  9654. position:absolute;
  9655. align-self:flex-start;
  9656. padding:0px 0px 0px 0px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u17064_text {
  9661. border-width:0px;
  9662. white-space:nowrap;
  9663. text-transform:none;
  9664. }
  9665. #u17065_div {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:65px;
  9671. height:22px;
  9672. background:inherit;
  9673. background-color:rgba(255, 255, 255, 0);
  9674. border:none;
  9675. border-radius:0px;
  9676. -moz-box-shadow:none;
  9677. -webkit-box-shadow:none;
  9678. box-shadow:none;
  9679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:16px;
  9683. }
  9684. #u17065 {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:30px;
  9688. top:1424px;
  9689. width:65px;
  9690. height:22px;
  9691. display:flex;
  9692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9693. font-weight:400;
  9694. font-style:normal;
  9695. font-size:16px;
  9696. }
  9697. #u17065 .text {
  9698. position:absolute;
  9699. align-self:flex-start;
  9700. padding:0px 0px 0px 0px;
  9701. box-sizing:border-box;
  9702. width:100%;
  9703. }
  9704. #u17065_text {
  9705. border-width:0px;
  9706. white-space:nowrap;
  9707. text-transform:none;
  9708. }
  9709. #u17066_div {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:0px;
  9713. top:0px;
  9714. width:65px;
  9715. height:22px;
  9716. background:inherit;
  9717. background-color:rgba(255, 255, 255, 0);
  9718. border:none;
  9719. border-radius:0px;
  9720. -moz-box-shadow:none;
  9721. -webkit-box-shadow:none;
  9722. box-shadow:none;
  9723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9724. font-weight:400;
  9725. font-style:normal;
  9726. font-size:16px;
  9727. }
  9728. #u17066 {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:30px;
  9732. top:1508px;
  9733. width:65px;
  9734. height:22px;
  9735. display:flex;
  9736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9737. font-weight:400;
  9738. font-style:normal;
  9739. font-size:16px;
  9740. }
  9741. #u17066 .text {
  9742. position:absolute;
  9743. align-self:flex-start;
  9744. padding:0px 0px 0px 0px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u17066_text {
  9749. border-width:0px;
  9750. white-space:nowrap;
  9751. text-transform:none;
  9752. }
  9753. #u17067_img {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:201px;
  9759. height:2px;
  9760. }
  9761. #u17067 {
  9762. border-width:0px;
  9763. position:absolute;
  9764. left:0px;
  9765. top:1634px;
  9766. width:200px;
  9767. height:1px;
  9768. display:flex;
  9769. }
  9770. #u17067 .text {
  9771. position:absolute;
  9772. align-self:center;
  9773. padding:2px 2px 2px 2px;
  9774. box-sizing:border-box;
  9775. width:100%;
  9776. }
  9777. #u17067_text {
  9778. border-width:0px;
  9779. word-wrap:break-word;
  9780. text-transform:none;
  9781. visibility:hidden;
  9782. }
  9783. #u17068_div {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:0px;
  9787. top:0px;
  9788. width:49px;
  9789. height:22px;
  9790. background:inherit;
  9791. background-color:rgba(255, 255, 255, 0);
  9792. border:none;
  9793. border-radius:0px;
  9794. -moz-box-shadow:none;
  9795. -webkit-box-shadow:none;
  9796. box-shadow:none;
  9797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9798. font-weight:400;
  9799. font-style:normal;
  9800. font-size:16px;
  9801. }
  9802. #u17068 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:30px;
  9806. top:1691px;
  9807. width:49px;
  9808. height:22px;
  9809. display:flex;
  9810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9811. font-weight:400;
  9812. font-style:normal;
  9813. font-size:16px;
  9814. }
  9815. #u17068 .text {
  9816. position:absolute;
  9817. align-self:flex-start;
  9818. padding:0px 0px 0px 0px;
  9819. box-sizing:border-box;
  9820. width:100%;
  9821. }
  9822. #u17068_text {
  9823. border-width:0px;
  9824. white-space:nowrap;
  9825. text-transform:none;
  9826. }
  9827. #u17069_div {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:49px;
  9833. height:17px;
  9834. background:inherit;
  9835. background-color:rgba(255, 255, 255, 0);
  9836. border:none;
  9837. border-radius:0px;
  9838. -moz-box-shadow:none;
  9839. -webkit-box-shadow:none;
  9840. box-shadow:none;
  9841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9842. font-weight:400;
  9843. font-style:normal;
  9844. font-size:12px;
  9845. color:#AAAAAA;
  9846. }
  9847. #u17069 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:30px;
  9851. top:1655px;
  9852. width:49px;
  9853. height:17px;
  9854. display:flex;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:12px;
  9859. color:#AAAAAA;
  9860. }
  9861. #u17069 .text {
  9862. position:absolute;
  9863. align-self:flex-start;
  9864. padding:0px 0px 0px 0px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u17069_text {
  9869. border-width:0px;
  9870. white-space:nowrap;
  9871. text-transform:none;
  9872. }
  9873. #u17070_div {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:49px;
  9879. height:22px;
  9880. background:inherit;
  9881. background-color:rgba(255, 255, 255, 0);
  9882. border:none;
  9883. border-radius:0px;
  9884. -moz-box-shadow:none;
  9885. -webkit-box-shadow:none;
  9886. box-shadow:none;
  9887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9888. font-weight:400;
  9889. font-style:normal;
  9890. font-size:16px;
  9891. }
  9892. #u17070 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:30px;
  9896. top:1733px;
  9897. width:49px;
  9898. height:22px;
  9899. display:flex;
  9900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9901. font-weight:400;
  9902. font-style:normal;
  9903. font-size:16px;
  9904. }
  9905. #u17070 .text {
  9906. position:absolute;
  9907. align-self:flex-start;
  9908. padding:0px 0px 0px 0px;
  9909. box-sizing:border-box;
  9910. width:100%;
  9911. }
  9912. #u17070_text {
  9913. border-width:0px;
  9914. white-space:nowrap;
  9915. text-transform:none;
  9916. }
  9917. #u17071_div {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:0px;
  9921. top:0px;
  9922. width:65px;
  9923. height:22px;
  9924. background:inherit;
  9925. background-color:rgba(255, 255, 255, 0);
  9926. border:none;
  9927. border-radius:0px;
  9928. -moz-box-shadow:none;
  9929. -webkit-box-shadow:none;
  9930. box-shadow:none;
  9931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9932. font-weight:400;
  9933. font-style:normal;
  9934. font-size:16px;
  9935. }
  9936. #u17071 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:30px;
  9940. top:1775px;
  9941. width:65px;
  9942. height:22px;
  9943. display:flex;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:16px;
  9948. }
  9949. #u17071 .text {
  9950. position:absolute;
  9951. align-self:flex-start;
  9952. padding:0px 0px 0px 0px;
  9953. box-sizing:border-box;
  9954. width:100%;
  9955. }
  9956. #u17071_text {
  9957. border-width:0px;
  9958. white-space:nowrap;
  9959. text-transform:none;
  9960. }
  9961. #u17072_img {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:201px;
  9967. height:2px;
  9968. }
  9969. #u17072 {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:1817px;
  9974. width:200px;
  9975. height:1px;
  9976. display:flex;
  9977. }
  9978. #u17072 .text {
  9979. position:absolute;
  9980. align-self:center;
  9981. padding:2px 2px 2px 2px;
  9982. box-sizing:border-box;
  9983. width:100%;
  9984. }
  9985. #u17072_text {
  9986. border-width:0px;
  9987. word-wrap:break-word;
  9988. text-transform:none;
  9989. visibility:hidden;
  9990. }
  9991. #u17073_div {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:81px;
  9997. height:22px;
  9998. background:inherit;
  9999. background-color:rgba(255, 255, 255, 0);
  10000. border:none;
  10001. border-radius:0px;
  10002. -moz-box-shadow:none;
  10003. -webkit-box-shadow:none;
  10004. box-shadow:none;
  10005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10006. font-weight:400;
  10007. font-style:normal;
  10008. font-size:16px;
  10009. }
  10010. #u17073 {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:30px;
  10014. top:1874px;
  10015. width:81px;
  10016. height:22px;
  10017. display:flex;
  10018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10019. font-weight:400;
  10020. font-style:normal;
  10021. font-size:16px;
  10022. }
  10023. #u17073 .text {
  10024. position:absolute;
  10025. align-self:flex-start;
  10026. padding:0px 0px 0px 0px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u17073_text {
  10031. border-width:0px;
  10032. white-space:nowrap;
  10033. text-transform:none;
  10034. }
  10035. #u17074_div {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:49px;
  10041. height:17px;
  10042. background:inherit;
  10043. background-color:rgba(255, 255, 255, 0);
  10044. border:none;
  10045. border-radius:0px;
  10046. -moz-box-shadow:none;
  10047. -webkit-box-shadow:none;
  10048. box-shadow:none;
  10049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. font-size:12px;
  10053. color:#AAAAAA;
  10054. }
  10055. #u17074 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:30px;
  10059. top:1838px;
  10060. width:49px;
  10061. height:17px;
  10062. display:flex;
  10063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10064. font-weight:400;
  10065. font-style:normal;
  10066. font-size:12px;
  10067. color:#AAAAAA;
  10068. }
  10069. #u17074 .text {
  10070. position:absolute;
  10071. align-self:flex-start;
  10072. padding:0px 0px 0px 0px;
  10073. box-sizing:border-box;
  10074. width:100%;
  10075. }
  10076. #u17074_text {
  10077. border-width:0px;
  10078. white-space:nowrap;
  10079. text-transform:none;
  10080. }
  10081. #u17075_div {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:0px;
  10085. top:0px;
  10086. width:81px;
  10087. height:22px;
  10088. background:inherit;
  10089. background-color:rgba(255, 255, 255, 0);
  10090. border:none;
  10091. border-radius:0px;
  10092. -moz-box-shadow:none;
  10093. -webkit-box-shadow:none;
  10094. box-shadow:none;
  10095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10096. font-weight:400;
  10097. font-style:normal;
  10098. font-size:16px;
  10099. }
  10100. #u17075 {
  10101. border-width:0px;
  10102. position:absolute;
  10103. left:30px;
  10104. top:1916px;
  10105. width:81px;
  10106. height:22px;
  10107. display:flex;
  10108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10109. font-weight:400;
  10110. font-style:normal;
  10111. font-size:16px;
  10112. }
  10113. #u17075 .text {
  10114. position:absolute;
  10115. align-self:flex-start;
  10116. padding:0px 0px 0px 0px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u17075_text {
  10121. border-width:0px;
  10122. white-space:nowrap;
  10123. text-transform:none;
  10124. }
  10125. #u17076_div {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:0px;
  10129. top:0px;
  10130. width:81px;
  10131. height:22px;
  10132. background:inherit;
  10133. background-color:rgba(255, 255, 255, 0);
  10134. border:none;
  10135. border-radius:0px;
  10136. -moz-box-shadow:none;
  10137. -webkit-box-shadow:none;
  10138. box-shadow:none;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. font-size:16px;
  10143. }
  10144. #u17076 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:30px;
  10148. top:1958px;
  10149. width:81px;
  10150. height:22px;
  10151. display:flex;
  10152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. font-size:16px;
  10156. }
  10157. #u17076 .text {
  10158. position:absolute;
  10159. align-self:flex-start;
  10160. padding:0px 0px 0px 0px;
  10161. box-sizing:border-box;
  10162. width:100%;
  10163. }
  10164. #u17076_text {
  10165. border-width:0px;
  10166. white-space:nowrap;
  10167. text-transform:none;
  10168. }
  10169. #u17077_div {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:0px;
  10173. top:0px;
  10174. width:65px;
  10175. height:22px;
  10176. background:inherit;
  10177. background-color:rgba(255, 255, 255, 0);
  10178. border:none;
  10179. border-radius:0px;
  10180. -moz-box-shadow:none;
  10181. -webkit-box-shadow:none;
  10182. box-shadow:none;
  10183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:16px;
  10187. }
  10188. #u17077 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:30px;
  10192. top:1466px;
  10193. width:65px;
  10194. height:22px;
  10195. display:flex;
  10196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10197. font-weight:400;
  10198. font-style:normal;
  10199. font-size:16px;
  10200. }
  10201. #u17077 .text {
  10202. position:absolute;
  10203. align-self:flex-start;
  10204. padding:0px 0px 0px 0px;
  10205. box-sizing:border-box;
  10206. width:100%;
  10207. }
  10208. #u17077_text {
  10209. border-width:0px;
  10210. white-space:nowrap;
  10211. text-transform:none;
  10212. }
  10213. #u17078_img {
  10214. border-width:0px;
  10215. position:absolute;
  10216. left:0px;
  10217. top:0px;
  10218. width:201px;
  10219. height:2px;
  10220. }
  10221. #u17078 {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:709px;
  10226. width:200px;
  10227. height:1px;
  10228. display:flex;
  10229. }
  10230. #u17078 .text {
  10231. position:absolute;
  10232. align-self:center;
  10233. padding:2px 2px 2px 2px;
  10234. box-sizing:border-box;
  10235. width:100%;
  10236. }
  10237. #u17078_text {
  10238. border-width:0px;
  10239. word-wrap:break-word;
  10240. text-transform:none;
  10241. visibility:hidden;
  10242. }
  10243. #u17079_div {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:0px;
  10247. top:0px;
  10248. width:65px;
  10249. height:22px;
  10250. background:inherit;
  10251. background-color:rgba(255, 255, 255, 0);
  10252. border:none;
  10253. border-radius:0px;
  10254. -moz-box-shadow:none;
  10255. -webkit-box-shadow:none;
  10256. box-shadow:none;
  10257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10258. font-weight:400;
  10259. font-style:normal;
  10260. font-size:16px;
  10261. }
  10262. #u17079 {
  10263. border-width:0px;
  10264. position:absolute;
  10265. left:30px;
  10266. top:766px;
  10267. width:65px;
  10268. height:22px;
  10269. display:flex;
  10270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10271. font-weight:400;
  10272. font-style:normal;
  10273. font-size:16px;
  10274. }
  10275. #u17079 .text {
  10276. position:absolute;
  10277. align-self:flex-start;
  10278. padding:0px 0px 0px 0px;
  10279. box-sizing:border-box;
  10280. width:100%;
  10281. }
  10282. #u17079_text {
  10283. border-width:0px;
  10284. white-space:nowrap;
  10285. text-transform:none;
  10286. }
  10287. #u17080_div {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:0px;
  10291. top:0px;
  10292. width:49px;
  10293. height:17px;
  10294. background:inherit;
  10295. background-color:rgba(255, 255, 255, 0);
  10296. border:none;
  10297. border-radius:0px;
  10298. -moz-box-shadow:none;
  10299. -webkit-box-shadow:none;
  10300. box-shadow:none;
  10301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10302. font-weight:400;
  10303. font-style:normal;
  10304. font-size:12px;
  10305. color:#AAAAAA;
  10306. }
  10307. #u17080 {
  10308. border-width:0px;
  10309. position:absolute;
  10310. left:30px;
  10311. top:730px;
  10312. width:49px;
  10313. height:17px;
  10314. display:flex;
  10315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10316. font-weight:400;
  10317. font-style:normal;
  10318. font-size:12px;
  10319. color:#AAAAAA;
  10320. }
  10321. #u17080 .text {
  10322. position:absolute;
  10323. align-self:flex-start;
  10324. padding:0px 0px 0px 0px;
  10325. box-sizing:border-box;
  10326. width:100%;
  10327. }
  10328. #u17080_text {
  10329. border-width:0px;
  10330. white-space:nowrap;
  10331. text-transform:none;
  10332. }
  10333. #u17081_div {
  10334. border-width:0px;
  10335. position:absolute;
  10336. left:0px;
  10337. top:0px;
  10338. width:65px;
  10339. height:22px;
  10340. background:inherit;
  10341. background-color:rgba(255, 255, 255, 0);
  10342. border:none;
  10343. border-radius:0px;
  10344. -moz-box-shadow:none;
  10345. -webkit-box-shadow:none;
  10346. box-shadow:none;
  10347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10348. font-weight:400;
  10349. font-style:normal;
  10350. font-size:16px;
  10351. }
  10352. #u17081 {
  10353. border-width:0px;
  10354. position:absolute;
  10355. left:30px;
  10356. top:808px;
  10357. width:65px;
  10358. height:22px;
  10359. display:flex;
  10360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10361. font-weight:400;
  10362. font-style:normal;
  10363. font-size:16px;
  10364. }
  10365. #u17081 .text {
  10366. position:absolute;
  10367. align-self:flex-start;
  10368. padding:0px 0px 0px 0px;
  10369. box-sizing:border-box;
  10370. width:100%;
  10371. }
  10372. #u17081_text {
  10373. border-width:0px;
  10374. white-space:nowrap;
  10375. text-transform:none;
  10376. }
  10377. #u17082_div {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:0px;
  10381. top:0px;
  10382. width:65px;
  10383. height:22px;
  10384. background:inherit;
  10385. background-color:rgba(255, 255, 255, 0);
  10386. border:none;
  10387. border-radius:0px;
  10388. -moz-box-shadow:none;
  10389. -webkit-box-shadow:none;
  10390. box-shadow:none;
  10391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10392. font-weight:400;
  10393. font-style:normal;
  10394. font-size:16px;
  10395. }
  10396. #u17082 {
  10397. border-width:0px;
  10398. position:absolute;
  10399. left:30px;
  10400. top:892px;
  10401. width:65px;
  10402. height:22px;
  10403. display:flex;
  10404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10405. font-weight:400;
  10406. font-style:normal;
  10407. font-size:16px;
  10408. }
  10409. #u17082 .text {
  10410. position:absolute;
  10411. align-self:flex-start;
  10412. padding:0px 0px 0px 0px;
  10413. box-sizing:border-box;
  10414. width:100%;
  10415. }
  10416. #u17082_text {
  10417. border-width:0px;
  10418. white-space:nowrap;
  10419. text-transform:none;
  10420. }
  10421. #u17083_div {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:0px;
  10425. top:0px;
  10426. width:65px;
  10427. height:22px;
  10428. background:inherit;
  10429. background-color:rgba(255, 255, 255, 0);
  10430. border:none;
  10431. border-radius:0px;
  10432. -moz-box-shadow:none;
  10433. -webkit-box-shadow:none;
  10434. box-shadow:none;
  10435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10436. font-weight:400;
  10437. font-style:normal;
  10438. font-size:16px;
  10439. }
  10440. #u17083 {
  10441. border-width:0px;
  10442. position:absolute;
  10443. left:30px;
  10444. top:850px;
  10445. width:65px;
  10446. height:22px;
  10447. display:flex;
  10448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10449. font-weight:400;
  10450. font-style:normal;
  10451. font-size:16px;
  10452. }
  10453. #u17083 .text {
  10454. position:absolute;
  10455. align-self:flex-start;
  10456. padding:0px 0px 0px 0px;
  10457. box-sizing:border-box;
  10458. width:100%;
  10459. }
  10460. #u17083_text {
  10461. border-width:0px;
  10462. white-space:nowrap;
  10463. text-transform:none;
  10464. }
  10465. #u17084_div {
  10466. border-width:0px;
  10467. position:absolute;
  10468. left:0px;
  10469. top:0px;
  10470. width:65px;
  10471. height:22px;
  10472. background:inherit;
  10473. background-color:rgba(255, 255, 255, 0);
  10474. border:none;
  10475. border-radius:0px;
  10476. -moz-box-shadow:none;
  10477. -webkit-box-shadow:none;
  10478. box-shadow:none;
  10479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10480. font-weight:400;
  10481. font-style:normal;
  10482. font-size:16px;
  10483. }
  10484. #u17084 {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:30px;
  10488. top:934px;
  10489. width:65px;
  10490. height:22px;
  10491. display:flex;
  10492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10493. font-weight:400;
  10494. font-style:normal;
  10495. font-size:16px;
  10496. }
  10497. #u17084 .text {
  10498. position:absolute;
  10499. align-self:flex-start;
  10500. padding:0px 0px 0px 0px;
  10501. box-sizing:border-box;
  10502. width:100%;
  10503. }
  10504. #u17084_text {
  10505. border-width:0px;
  10506. white-space:nowrap;
  10507. text-transform:none;
  10508. }
  10509. #u17085_div {
  10510. border-width:0px;
  10511. position:absolute;
  10512. left:0px;
  10513. top:0px;
  10514. width:65px;
  10515. height:22px;
  10516. background:inherit;
  10517. background-color:rgba(255, 255, 255, 0);
  10518. border:none;
  10519. border-radius:0px;
  10520. -moz-box-shadow:none;
  10521. -webkit-box-shadow:none;
  10522. box-shadow:none;
  10523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10524. font-weight:400;
  10525. font-style:normal;
  10526. font-size:16px;
  10527. }
  10528. #u17085 {
  10529. border-width:0px;
  10530. position:absolute;
  10531. left:30px;
  10532. top:976px;
  10533. width:65px;
  10534. height:22px;
  10535. display:flex;
  10536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10537. font-weight:400;
  10538. font-style:normal;
  10539. font-size:16px;
  10540. }
  10541. #u17085 .text {
  10542. position:absolute;
  10543. align-self:flex-start;
  10544. padding:0px 0px 0px 0px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u17085_text {
  10549. border-width:0px;
  10550. white-space:nowrap;
  10551. text-transform:none;
  10552. }
  10553. #u17086_img {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:0px;
  10557. top:0px;
  10558. width:201px;
  10559. height:2px;
  10560. }
  10561. #u17086 {
  10562. border-width:0px;
  10563. position:absolute;
  10564. left:0px;
  10565. top:1058px;
  10566. width:200px;
  10567. height:1px;
  10568. display:flex;
  10569. }
  10570. #u17086 .text {
  10571. position:absolute;
  10572. align-self:center;
  10573. padding:2px 2px 2px 2px;
  10574. box-sizing:border-box;
  10575. width:100%;
  10576. }
  10577. #u17086_text {
  10578. border-width:0px;
  10579. word-wrap:break-word;
  10580. text-transform:none;
  10581. visibility:hidden;
  10582. }
  10583. #u17087_div {
  10584. border-width:0px;
  10585. position:absolute;
  10586. left:0px;
  10587. top:0px;
  10588. width:65px;
  10589. height:22px;
  10590. background:inherit;
  10591. background-color:rgba(255, 255, 255, 0);
  10592. border:none;
  10593. border-radius:0px;
  10594. -moz-box-shadow:none;
  10595. -webkit-box-shadow:none;
  10596. box-shadow:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:16px;
  10601. }
  10602. #u17087 {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:30px;
  10606. top:1115px;
  10607. width:65px;
  10608. height:22px;
  10609. display:flex;
  10610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10611. font-weight:400;
  10612. font-style:normal;
  10613. font-size:16px;
  10614. }
  10615. #u17087 .text {
  10616. position:absolute;
  10617. align-self:flex-start;
  10618. padding:0px 0px 0px 0px;
  10619. box-sizing:border-box;
  10620. width:100%;
  10621. }
  10622. #u17087_text {
  10623. border-width:0px;
  10624. white-space:nowrap;
  10625. text-transform:none;
  10626. }
  10627. #u17088_div {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:49px;
  10633. height:17px;
  10634. background:inherit;
  10635. background-color:rgba(255, 255, 255, 0);
  10636. border:none;
  10637. border-radius:0px;
  10638. -moz-box-shadow:none;
  10639. -webkit-box-shadow:none;
  10640. box-shadow:none;
  10641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10642. font-weight:400;
  10643. font-style:normal;
  10644. font-size:12px;
  10645. color:#AAAAAA;
  10646. }
  10647. #u17088 {
  10648. border-width:0px;
  10649. position:absolute;
  10650. left:30px;
  10651. top:1079px;
  10652. width:49px;
  10653. height:17px;
  10654. display:flex;
  10655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10656. font-weight:400;
  10657. font-style:normal;
  10658. font-size:12px;
  10659. color:#AAAAAA;
  10660. }
  10661. #u17088 .text {
  10662. position:absolute;
  10663. align-self:flex-start;
  10664. padding:0px 0px 0px 0px;
  10665. box-sizing:border-box;
  10666. width:100%;
  10667. }
  10668. #u17088_text {
  10669. border-width:0px;
  10670. white-space:nowrap;
  10671. text-transform:none;
  10672. }
  10673. #u17089_div {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:0px;
  10677. top:0px;
  10678. width:65px;
  10679. height:22px;
  10680. background:inherit;
  10681. background-color:rgba(255, 255, 255, 0);
  10682. border:none;
  10683. border-radius:0px;
  10684. -moz-box-shadow:none;
  10685. -webkit-box-shadow:none;
  10686. box-shadow:none;
  10687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10688. font-weight:400;
  10689. font-style:normal;
  10690. font-size:16px;
  10691. }
  10692. #u17089 {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:30px;
  10696. top:1157px;
  10697. width:65px;
  10698. height:22px;
  10699. display:flex;
  10700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:16px;
  10704. }
  10705. #u17089 .text {
  10706. position:absolute;
  10707. align-self:flex-start;
  10708. padding:0px 0px 0px 0px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u17089_text {
  10713. border-width:0px;
  10714. white-space:nowrap;
  10715. text-transform:none;
  10716. }
  10717. #u17090_div {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:65px;
  10723. height:22px;
  10724. background:inherit;
  10725. background-color:rgba(255, 255, 255, 0);
  10726. border:none;
  10727. border-radius:0px;
  10728. -moz-box-shadow:none;
  10729. -webkit-box-shadow:none;
  10730. box-shadow:none;
  10731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:16px;
  10735. }
  10736. #u17090 {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:30px;
  10740. top:1241px;
  10741. width:65px;
  10742. height:22px;
  10743. display:flex;
  10744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10745. font-weight:400;
  10746. font-style:normal;
  10747. font-size:16px;
  10748. }
  10749. #u17090 .text {
  10750. position:absolute;
  10751. align-self:flex-start;
  10752. padding:0px 0px 0px 0px;
  10753. box-sizing:border-box;
  10754. width:100%;
  10755. }
  10756. #u17090_text {
  10757. border-width:0px;
  10758. white-space:nowrap;
  10759. text-transform:none;
  10760. }
  10761. #u17091_div {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:65px;
  10767. height:22px;
  10768. background:inherit;
  10769. background-color:rgba(255, 255, 255, 0);
  10770. border:none;
  10771. border-radius:0px;
  10772. -moz-box-shadow:none;
  10773. -webkit-box-shadow:none;
  10774. box-shadow:none;
  10775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10776. font-weight:400;
  10777. font-style:normal;
  10778. font-size:16px;
  10779. }
  10780. #u17091 {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:30px;
  10784. top:1199px;
  10785. width:65px;
  10786. height:22px;
  10787. display:flex;
  10788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10789. font-weight:400;
  10790. font-style:normal;
  10791. font-size:16px;
  10792. }
  10793. #u17091 .text {
  10794. position:absolute;
  10795. align-self:flex-start;
  10796. padding:0px 0px 0px 0px;
  10797. box-sizing:border-box;
  10798. width:100%;
  10799. }
  10800. #u17091_text {
  10801. border-width:0px;
  10802. white-space:nowrap;
  10803. text-transform:none;
  10804. }
  10805. #u17092_div {
  10806. border-width:0px;
  10807. position:absolute;
  10808. left:0px;
  10809. top:0px;
  10810. width:65px;
  10811. height:22px;
  10812. background:inherit;
  10813. background-color:rgba(255, 255, 255, 0);
  10814. border:none;
  10815. border-radius:0px;
  10816. -moz-box-shadow:none;
  10817. -webkit-box-shadow:none;
  10818. box-shadow:none;
  10819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10820. font-weight:400;
  10821. font-style:normal;
  10822. font-size:16px;
  10823. }
  10824. #u17092 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:30px;
  10828. top:1283px;
  10829. width:65px;
  10830. height:22px;
  10831. display:flex;
  10832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10833. font-weight:400;
  10834. font-style:normal;
  10835. font-size:16px;
  10836. }
  10837. #u17092 .text {
  10838. position:absolute;
  10839. align-self:flex-start;
  10840. padding:0px 0px 0px 0px;
  10841. box-sizing:border-box;
  10842. width:100%;
  10843. }
  10844. #u17092_text {
  10845. border-width:0px;
  10846. white-space:nowrap;
  10847. text-transform:none;
  10848. }
  10849. #u17093_div {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:65px;
  10855. height:22px;
  10856. background:inherit;
  10857. background-color:rgba(255, 255, 255, 0);
  10858. border:none;
  10859. border-radius:0px;
  10860. -moz-box-shadow:none;
  10861. -webkit-box-shadow:none;
  10862. box-shadow:none;
  10863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10864. font-weight:400;
  10865. font-style:normal;
  10866. font-size:16px;
  10867. }
  10868. #u17093 {
  10869. border-width:0px;
  10870. position:absolute;
  10871. left:30px;
  10872. top:313px;
  10873. width:65px;
  10874. height:22px;
  10875. display:flex;
  10876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10877. font-weight:400;
  10878. font-style:normal;
  10879. font-size:16px;
  10880. }
  10881. #u17093 .text {
  10882. position:absolute;
  10883. align-self:flex-start;
  10884. padding:0px 0px 0px 0px;
  10885. box-sizing:border-box;
  10886. width:100%;
  10887. }
  10888. #u17093_text {
  10889. border-width:0px;
  10890. white-space:nowrap;
  10891. text-transform:none;
  10892. }
  10893. #u17094_div {
  10894. border-width:0px;
  10895. position:absolute;
  10896. left:0px;
  10897. top:0px;
  10898. width:65px;
  10899. height:22px;
  10900. background:inherit;
  10901. background-color:rgba(255, 255, 255, 0);
  10902. border:none;
  10903. border-radius:0px;
  10904. -moz-box-shadow:none;
  10905. -webkit-box-shadow:none;
  10906. box-shadow:none;
  10907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10908. font-weight:400;
  10909. font-style:normal;
  10910. font-size:16px;
  10911. }
  10912. #u17094 {
  10913. border-width:0px;
  10914. position:absolute;
  10915. left:30px;
  10916. top:1550px;
  10917. width:65px;
  10918. height:22px;
  10919. display:flex;
  10920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10921. font-weight:400;
  10922. font-style:normal;
  10923. font-size:16px;
  10924. }
  10925. #u17094 .text {
  10926. position:absolute;
  10927. align-self:flex-start;
  10928. padding:0px 0px 0px 0px;
  10929. box-sizing:border-box;
  10930. width:100%;
  10931. }
  10932. #u17094_text {
  10933. border-width:0px;
  10934. white-space:nowrap;
  10935. text-transform:none;
  10936. }
  10937. #u17095_div {
  10938. border-width:0px;
  10939. position:absolute;
  10940. left:0px;
  10941. top:0px;
  10942. width:65px;
  10943. height:22px;
  10944. background:inherit;
  10945. background-color:rgba(255, 255, 255, 0);
  10946. border:none;
  10947. border-radius:0px;
  10948. -moz-box-shadow:none;
  10949. -webkit-box-shadow:none;
  10950. box-shadow:none;
  10951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10952. font-weight:400;
  10953. font-style:normal;
  10954. font-size:16px;
  10955. }
  10956. #u17095 {
  10957. border-width:0px;
  10958. position:absolute;
  10959. left:30px;
  10960. top:1592px;
  10961. width:65px;
  10962. height:22px;
  10963. display:flex;
  10964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10965. font-weight:400;
  10966. font-style:normal;
  10967. font-size:16px;
  10968. }
  10969. #u17095 .text {
  10970. position:absolute;
  10971. align-self:flex-start;
  10972. padding:0px 0px 0px 0px;
  10973. box-sizing:border-box;
  10974. width:100%;
  10975. }
  10976. #u17095_text {
  10977. border-width:0px;
  10978. white-space:nowrap;
  10979. text-transform:none;
  10980. }
  10981. #u17096_div {
  10982. border-width:0px;
  10983. position:absolute;
  10984. left:0px;
  10985. top:0px;
  10986. width:65px;
  10987. height:22px;
  10988. background:inherit;
  10989. background-color:rgba(255, 255, 255, 0);
  10990. border:none;
  10991. border-radius:0px;
  10992. -moz-box-shadow:none;
  10993. -webkit-box-shadow:none;
  10994. box-shadow:none;
  10995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10996. font-weight:400;
  10997. font-style:normal;
  10998. font-size:16px;
  10999. }
  11000. #u17096 {
  11001. border-width:0px;
  11002. position:absolute;
  11003. left:30px;
  11004. top:1018px;
  11005. width:65px;
  11006. height:22px;
  11007. display:flex;
  11008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11009. font-weight:400;
  11010. font-style:normal;
  11011. font-size:16px;
  11012. }
  11013. #u17096 .text {
  11014. position:absolute;
  11015. align-self:flex-start;
  11016. padding:0px 0px 0px 0px;
  11017. box-sizing:border-box;
  11018. width:100%;
  11019. }
  11020. #u17096_text {
  11021. border-width:0px;
  11022. white-space:nowrap;
  11023. text-transform:none;
  11024. }
  11025. #u17097_div {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:0px;
  11029. top:0px;
  11030. width:65px;
  11031. height:22px;
  11032. background:inherit;
  11033. background-color:rgba(255, 255, 255, 0);
  11034. border:none;
  11035. border-radius:0px;
  11036. -moz-box-shadow:none;
  11037. -webkit-box-shadow:none;
  11038. box-shadow:none;
  11039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11040. font-weight:400;
  11041. font-style:normal;
  11042. font-size:16px;
  11043. }
  11044. #u17097 {
  11045. border-width:0px;
  11046. position:absolute;
  11047. left:30px;
  11048. top:662px;
  11049. width:65px;
  11050. height:22px;
  11051. display:flex;
  11052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11053. font-weight:400;
  11054. font-style:normal;
  11055. font-size:16px;
  11056. }
  11057. #u17097 .text {
  11058. position:absolute;
  11059. align-self:flex-start;
  11060. padding:0px 0px 0px 0px;
  11061. box-sizing:border-box;
  11062. width:100%;
  11063. }
  11064. #u17097_text {
  11065. border-width:0px;
  11066. white-space:nowrap;
  11067. text-transform:none;
  11068. }