styles.css 163 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290
  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. #u160952_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. #u160952 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u160952 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u160952_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u160953_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. #u160953 {
  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. #u160953 .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. #u160953_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u160954_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. #u160954 {
  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. #u160954 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u160954_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u160955 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u160956_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u160956 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u160956 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u160956_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u160957_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. #u160957 {
  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. #u160957 .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. #u160957_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u160958_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. #u160958 {
  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. #u160958 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u160958_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u160959 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u160960_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. #u160960_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. #u160960_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. #u160960 {
  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. #u160960 .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. #u160960_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. #u160960.disabled {
  356. }
  357. .u160960_input_option {
  358. font-size:14px;
  359. }
  360. #u160961_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u160961 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u160961 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u160961_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u160962_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. #u160962 {
  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. #u160962 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u160962_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u160963_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. #u160963 {
  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. #u160963 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u160963_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u160964 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u160965_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. #u160965 {
  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. #u160965 .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. #u160965_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u160966_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u160966 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u160966 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u160966_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u160967 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u160968_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. #u160968 {
  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. #u160968 .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. #u160968_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u160969_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u160969 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u160969 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u160969_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u160970 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u160971_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. #u160971 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  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. #u160971 .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. #u160971_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u160972_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u160972 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u160972 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u160972_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u160973 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u160974_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. #u160974 {
  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. #u160974 .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. #u160974_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u160975_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u160975 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u160975 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u160975_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u160976 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u160977_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. #u160977 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  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. #u160977 .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. #u160977_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u160978_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u160978 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u160978 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u160978_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u160979 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u160980_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. #u160980 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  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. #u160980 .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. #u160980_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u160981_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u160981 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u160981 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u160981_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u160982 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u160983_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. #u160983 {
  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. #u160983 .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. #u160983_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u160984_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u160984 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u160984 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u160984_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u160985 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u160986_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. #u160986 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  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. #u160986 .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. #u160986_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u160987_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u160987 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u160987 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u160987_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u160988 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u160989_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. #u160989 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  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. #u160989 .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. #u160989_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u160990_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u160990 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u160990 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u160990_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u160991 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u160992_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. #u160992 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  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. #u160992 .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. #u160992_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u160993_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u160993 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u160993 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u160993_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u160994_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. #u160994 {
  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. #u160994 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u160994_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u160995_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u160995 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u160995 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u160995_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u160996_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. #u160996 {
  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. #u160996 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u160996_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u160997_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u160997 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u160997 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u160997_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u160998 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u160999_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. #u160999 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u160999 .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. #u160999_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u161000_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u161000 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u161000 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u161000_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u161001 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u161002_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. #u161002 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  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. #u161002 .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. #u161002_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u161003_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u161003 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u161003 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u161003_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u161004_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u161004 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:330px;
  1663. top:51px;
  1664. width:1260px;
  1665. height:1180px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u161004 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u161004_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u161005 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:350px;
  1691. top:241px;
  1692. width:1220px;
  1693. height:431px;
  1694. }
  1695. #u161006_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:93px;
  1701. height:38px;
  1702. }
  1703. #u161006 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:93px;
  1709. height:38px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#FFFFFF;
  1716. }
  1717. #u161006 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u161006_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u161007_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:103px;
  1735. height:38px;
  1736. }
  1737. #u161007 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:93px;
  1741. top:0px;
  1742. width:103px;
  1743. height:38px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u161007 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u161007_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u161008_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:97px;
  1769. height:38px;
  1770. }
  1771. #u161008 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:196px;
  1775. top:0px;
  1776. width:97px;
  1777. height:38px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u161008 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u161008_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u161009_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:97px;
  1803. height:38px;
  1804. }
  1805. #u161009 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:293px;
  1809. top:0px;
  1810. width:97px;
  1811. height:38px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. color:#FFFFFF;
  1818. }
  1819. #u161009 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u161009_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u161010_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:93px;
  1837. height:38px;
  1838. }
  1839. #u161010 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:390px;
  1843. top:0px;
  1844. width:93px;
  1845. height:38px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u161010 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u161010_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u161011_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:94px;
  1871. height:38px;
  1872. }
  1873. #u161011 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:483px;
  1877. top:0px;
  1878. width:94px;
  1879. height:38px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:12px;
  1885. color:#FFFFFF;
  1886. }
  1887. #u161011 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u161011_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. }
  1899. #u161012_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:97px;
  1905. height:38px;
  1906. }
  1907. #u161012 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:577px;
  1911. top:0px;
  1912. width:97px;
  1913. height:38px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. color:#FFFFFF;
  1920. }
  1921. #u161012 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u161012_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u161013_img {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:98px;
  1939. height:38px;
  1940. }
  1941. #u161013 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:674px;
  1945. top:0px;
  1946. width:98px;
  1947. height:38px;
  1948. display:flex;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. color:#FFFFFF;
  1954. }
  1955. #u161013 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 0px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u161013_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. }
  1967. #u161014_img {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:98px;
  1973. height:38px;
  1974. }
  1975. #u161014 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:772px;
  1979. top:0px;
  1980. width:98px;
  1981. height:38px;
  1982. display:flex;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. color:#FFFFFF;
  1988. }
  1989. #u161014 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u161014_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. }
  2001. #u161015_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:98px;
  2007. height:38px;
  2008. }
  2009. #u161015 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:870px;
  2013. top:0px;
  2014. width:98px;
  2015. height:38px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:12px;
  2021. color:#FFFFFF;
  2022. }
  2023. #u161015 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u161015_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u161016_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:98px;
  2041. height:38px;
  2042. }
  2043. #u161016 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:968px;
  2047. top:0px;
  2048. width:98px;
  2049. height:38px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:12px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u161016 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u161016_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u161017_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:154px;
  2075. height:38px;
  2076. }
  2077. #u161017 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:1066px;
  2081. top:0px;
  2082. width:154px;
  2083. height:38px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. color:#FFFFFF;
  2090. }
  2091. #u161017 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u161017_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. }
  2103. #u161018_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:93px;
  2109. height:39px;
  2110. }
  2111. #u161018 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:38px;
  2116. width:93px;
  2117. height:39px;
  2118. display:flex;
  2119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:12px;
  2123. }
  2124. #u161018 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u161018_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u161019_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:103px;
  2143. height:39px;
  2144. }
  2145. #u161019 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:93px;
  2149. top:38px;
  2150. width:103px;
  2151. height:39px;
  2152. display:flex;
  2153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:12px;
  2157. }
  2158. #u161019 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u161019_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u161020_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:97px;
  2177. height:39px;
  2178. }
  2179. #u161020 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:196px;
  2183. top:38px;
  2184. width:97px;
  2185. height:39px;
  2186. display:flex;
  2187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. }
  2192. #u161020 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u161020_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u161021_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:97px;
  2211. height:39px;
  2212. }
  2213. #u161021 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:293px;
  2217. top:38px;
  2218. width:97px;
  2219. height:39px;
  2220. display:flex;
  2221. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. }
  2226. #u161021 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u161021_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u161022_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:93px;
  2245. height:39px;
  2246. }
  2247. #u161022 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:390px;
  2251. top:38px;
  2252. width:93px;
  2253. height:39px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. color:#333333;
  2260. }
  2261. #u161022 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u161022_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u161023_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:94px;
  2280. height:39px;
  2281. }
  2282. #u161023 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:483px;
  2286. top:38px;
  2287. width:94px;
  2288. height:39px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u161023 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u161023_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u161024_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:97px;
  2314. height:39px;
  2315. }
  2316. #u161024 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:577px;
  2320. top:38px;
  2321. width:97px;
  2322. height:39px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u161024 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u161024_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u161025_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:98px;
  2348. height:39px;
  2349. }
  2350. #u161025 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:674px;
  2354. top:38px;
  2355. width:98px;
  2356. height:39px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u161025 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u161025_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u161026_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:98px;
  2382. height:39px;
  2383. }
  2384. #u161026 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:772px;
  2388. top:38px;
  2389. width:98px;
  2390. height:39px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. color:#333333;
  2397. }
  2398. #u161026 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u161026_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u161027_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:98px;
  2416. height:39px;
  2417. }
  2418. #u161027 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:870px;
  2422. top:38px;
  2423. width:98px;
  2424. height:39px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. }
  2431. #u161027 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u161027_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u161028_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:98px;
  2450. height:39px;
  2451. }
  2452. #u161028 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:968px;
  2456. top:38px;
  2457. width:98px;
  2458. height:39px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. }
  2465. #u161028 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u161028_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u161029_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:154px;
  2484. height:39px;
  2485. }
  2486. #u161029 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:1066px;
  2490. top:38px;
  2491. width:154px;
  2492. height:39px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. }
  2499. #u161029 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 0px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u161029_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. }
  2511. #u161030_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:93px;
  2517. height:38px;
  2518. }
  2519. #u161030 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:77px;
  2524. width:93px;
  2525. height:38px;
  2526. display:flex;
  2527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. }
  2532. #u161030 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u161030_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u161031_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:103px;
  2551. height:38px;
  2552. }
  2553. #u161031 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:93px;
  2557. top:77px;
  2558. width:103px;
  2559. height:38px;
  2560. display:flex;
  2561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. }
  2566. #u161031 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u161031_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u161032_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:97px;
  2585. height:38px;
  2586. }
  2587. #u161032 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:196px;
  2591. top:77px;
  2592. width:97px;
  2593. height:38px;
  2594. display:flex;
  2595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#606266;
  2600. }
  2601. #u161032 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u161032_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u161033_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:97px;
  2620. height:38px;
  2621. }
  2622. #u161033 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:293px;
  2626. top:77px;
  2627. width:97px;
  2628. height:38px;
  2629. display:flex;
  2630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:12px;
  2634. }
  2635. #u161033 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 0px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u161033_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. visibility:hidden;
  2647. }
  2648. #u161034_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:93px;
  2654. height:38px;
  2655. }
  2656. #u161034 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:390px;
  2660. top:77px;
  2661. width:93px;
  2662. height:38px;
  2663. display:flex;
  2664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:12px;
  2668. color:#606266;
  2669. }
  2670. #u161034 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 2px 2px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u161034_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u161035_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:94px;
  2689. height:38px;
  2690. }
  2691. #u161035 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:483px;
  2695. top:77px;
  2696. width:94px;
  2697. height:38px;
  2698. display:flex;
  2699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:12px;
  2703. color:#606266;
  2704. }
  2705. #u161035 .text {
  2706. position:absolute;
  2707. align-self:center;
  2708. padding:2px 2px 2px 0px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u161035_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. visibility:hidden;
  2717. }
  2718. #u161036_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:97px;
  2724. height:38px;
  2725. }
  2726. #u161036 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:577px;
  2730. top:77px;
  2731. width:97px;
  2732. height:38px;
  2733. display:flex;
  2734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:12px;
  2738. color:#606266;
  2739. }
  2740. #u161036 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u161036_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u161037_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:98px;
  2759. height:38px;
  2760. }
  2761. #u161037 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:674px;
  2765. top:77px;
  2766. width:98px;
  2767. height:38px;
  2768. display:flex;
  2769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#606266;
  2774. }
  2775. #u161037 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u161037_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u161038_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:98px;
  2794. height:38px;
  2795. }
  2796. #u161038 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:772px;
  2800. top:77px;
  2801. width:98px;
  2802. height:38px;
  2803. display:flex;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:#333333;
  2809. }
  2810. #u161038 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u161038_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u161039_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:98px;
  2828. height:38px;
  2829. }
  2830. #u161039 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:870px;
  2834. top:77px;
  2835. width:98px;
  2836. height:38px;
  2837. display:flex;
  2838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#606266;
  2843. }
  2844. #u161039 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u161039_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u161040_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:98px;
  2863. height:38px;
  2864. }
  2865. #u161040 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:968px;
  2869. top:77px;
  2870. width:98px;
  2871. height:38px;
  2872. display:flex;
  2873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#606266;
  2878. }
  2879. #u161040 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u161040_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u161041_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:154px;
  2898. height:38px;
  2899. }
  2900. #u161041 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:1066px;
  2904. top:77px;
  2905. width:154px;
  2906. height:38px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. }
  2913. #u161041 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u161041_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u161042_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:93px;
  2931. height:35px;
  2932. }
  2933. #u161042 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:115px;
  2938. width:93px;
  2939. height:35px;
  2940. display:flex;
  2941. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#606266;
  2946. }
  2947. #u161042 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u161042_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u161043_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:103px;
  2966. height:35px;
  2967. }
  2968. #u161043 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:93px;
  2972. top:115px;
  2973. width:103px;
  2974. height:35px;
  2975. display:flex;
  2976. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#606266;
  2981. }
  2982. #u161043 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u161043_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u161044_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:97px;
  3001. height:35px;
  3002. }
  3003. #u161044 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:196px;
  3007. top:115px;
  3008. width:97px;
  3009. height:35px;
  3010. display:flex;
  3011. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#606266;
  3016. }
  3017. #u161044 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u161044_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u161045_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:97px;
  3036. height:35px;
  3037. }
  3038. #u161045 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:293px;
  3042. top:115px;
  3043. width:97px;
  3044. height:35px;
  3045. display:flex;
  3046. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. color:#606266;
  3051. }
  3052. #u161045 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u161045_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u161046_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:93px;
  3071. height:35px;
  3072. }
  3073. #u161046 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:390px;
  3077. top:115px;
  3078. width:93px;
  3079. height:35px;
  3080. display:flex;
  3081. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. color:#606266;
  3086. }
  3087. #u161046 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u161046_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u161047_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:94px;
  3106. height:35px;
  3107. }
  3108. #u161047 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:483px;
  3112. top:115px;
  3113. width:94px;
  3114. height:35px;
  3115. display:flex;
  3116. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:#606266;
  3121. }
  3122. #u161047 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u161047_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u161048_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:97px;
  3141. height:35px;
  3142. }
  3143. #u161048 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:577px;
  3147. top:115px;
  3148. width:97px;
  3149. height:35px;
  3150. display:flex;
  3151. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#606266;
  3156. }
  3157. #u161048 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u161048_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u161049_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:98px;
  3176. height:35px;
  3177. }
  3178. #u161049 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:674px;
  3182. top:115px;
  3183. width:98px;
  3184. height:35px;
  3185. display:flex;
  3186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#606266;
  3191. }
  3192. #u161049 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u161049_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u161050_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:98px;
  3211. height:35px;
  3212. }
  3213. #u161050 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:772px;
  3217. top:115px;
  3218. width:98px;
  3219. height:35px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u161050 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u161050_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. }
  3239. #u161051_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:98px;
  3245. height:35px;
  3246. }
  3247. #u161051 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:870px;
  3251. top:115px;
  3252. width:98px;
  3253. height:35px;
  3254. display:flex;
  3255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#606266;
  3260. }
  3261. #u161051 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u161051_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u161052_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:98px;
  3280. height:35px;
  3281. }
  3282. #u161052 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:968px;
  3286. top:115px;
  3287. width:98px;
  3288. height:35px;
  3289. display:flex;
  3290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. color:#606266;
  3295. }
  3296. #u161052 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u161052_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u161053_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:154px;
  3315. height:35px;
  3316. }
  3317. #u161053 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:1066px;
  3321. top:115px;
  3322. width:154px;
  3323. height:35px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. }
  3330. #u161053 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u161053_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u161054_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:93px;
  3348. height:36px;
  3349. }
  3350. #u161054 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:150px;
  3355. width:93px;
  3356. height:36px;
  3357. display:flex;
  3358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. color:#606266;
  3363. }
  3364. #u161054 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u161054_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u161055_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:103px;
  3383. height:36px;
  3384. }
  3385. #u161055 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:93px;
  3389. top:150px;
  3390. width:103px;
  3391. height:36px;
  3392. display:flex;
  3393. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:12px;
  3397. color:#606266;
  3398. }
  3399. #u161055 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u161055_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u161056_img {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:97px;
  3418. height:36px;
  3419. }
  3420. #u161056 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:196px;
  3424. top:150px;
  3425. width:97px;
  3426. height:36px;
  3427. display:flex;
  3428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:12px;
  3432. color:#606266;
  3433. }
  3434. #u161056 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u161056_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u161057_img {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:97px;
  3453. height:36px;
  3454. }
  3455. #u161057 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:293px;
  3459. top:150px;
  3460. width:97px;
  3461. height:36px;
  3462. display:flex;
  3463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. color:#606266;
  3468. }
  3469. #u161057 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u161057_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. visibility:hidden;
  3481. }
  3482. #u161058_img {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:93px;
  3488. height:36px;
  3489. }
  3490. #u161058 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:390px;
  3494. top:150px;
  3495. width:93px;
  3496. height:36px;
  3497. display:flex;
  3498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:12px;
  3502. color:#606266;
  3503. }
  3504. #u161058 .text {
  3505. position:absolute;
  3506. align-self:center;
  3507. padding:2px 2px 2px 0px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u161058_text {
  3512. border-width:0px;
  3513. word-wrap:break-word;
  3514. text-transform:none;
  3515. visibility:hidden;
  3516. }
  3517. #u161059_img {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:94px;
  3523. height:36px;
  3524. }
  3525. #u161059 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:483px;
  3529. top:150px;
  3530. width:94px;
  3531. height:36px;
  3532. display:flex;
  3533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:12px;
  3537. color:#606266;
  3538. }
  3539. #u161059 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 0px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u161059_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u161060_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:97px;
  3558. height:36px;
  3559. }
  3560. #u161060 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:577px;
  3564. top:150px;
  3565. width:97px;
  3566. height:36px;
  3567. display:flex;
  3568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. color:#606266;
  3573. }
  3574. #u161060 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 0px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u161060_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u161061_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:98px;
  3593. height:36px;
  3594. }
  3595. #u161061 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:674px;
  3599. top:150px;
  3600. width:98px;
  3601. height:36px;
  3602. display:flex;
  3603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:12px;
  3607. color:#606266;
  3608. }
  3609. #u161061 .text {
  3610. position:absolute;
  3611. align-self:center;
  3612. padding:2px 2px 2px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u161061_text {
  3617. border-width:0px;
  3618. word-wrap:break-word;
  3619. text-transform:none;
  3620. visibility:hidden;
  3621. }
  3622. #u161062_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:98px;
  3628. height:36px;
  3629. }
  3630. #u161062 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:772px;
  3634. top:150px;
  3635. width:98px;
  3636. height:36px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:12px;
  3642. color:#333333;
  3643. }
  3644. #u161062 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u161062_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. }
  3656. #u161063_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:98px;
  3662. height:36px;
  3663. }
  3664. #u161063 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:870px;
  3668. top:150px;
  3669. width:98px;
  3670. height:36px;
  3671. display:flex;
  3672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. color:#606266;
  3677. }
  3678. #u161063 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u161063_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u161064_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:98px;
  3697. height:36px;
  3698. }
  3699. #u161064 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:968px;
  3703. top:150px;
  3704. width:98px;
  3705. height:36px;
  3706. display:flex;
  3707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. color:#606266;
  3712. }
  3713. #u161064 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u161064_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u161065_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:154px;
  3732. height:36px;
  3733. }
  3734. #u161065 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:1066px;
  3738. top:150px;
  3739. width:154px;
  3740. height:36px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. }
  3747. #u161065 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u161065_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. }
  3759. #u161066_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:93px;
  3765. height:35px;
  3766. }
  3767. #u161066 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:186px;
  3772. width:93px;
  3773. height:35px;
  3774. display:flex;
  3775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:12px;
  3779. color:#606266;
  3780. }
  3781. #u161066 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u161066_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u161067_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:103px;
  3800. height:35px;
  3801. }
  3802. #u161067 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:93px;
  3806. top:186px;
  3807. width:103px;
  3808. height:35px;
  3809. display:flex;
  3810. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:12px;
  3814. color:#606266;
  3815. }
  3816. #u161067 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 0px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u161067_text {
  3824. border-width:0px;
  3825. word-wrap:break-word;
  3826. text-transform:none;
  3827. visibility:hidden;
  3828. }
  3829. #u161068_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:97px;
  3835. height:35px;
  3836. }
  3837. #u161068 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:196px;
  3841. top:186px;
  3842. width:97px;
  3843. height:35px;
  3844. display:flex;
  3845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. color:#606266;
  3850. }
  3851. #u161068 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u161068_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u161069_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:97px;
  3870. height:35px;
  3871. }
  3872. #u161069 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:293px;
  3876. top:186px;
  3877. width:97px;
  3878. height:35px;
  3879. display:flex;
  3880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. color:#606266;
  3885. }
  3886. #u161069 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u161069_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. visibility:hidden;
  3898. }
  3899. #u161070_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:93px;
  3905. height:35px;
  3906. }
  3907. #u161070 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:390px;
  3911. top:186px;
  3912. width:93px;
  3913. height:35px;
  3914. display:flex;
  3915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:12px;
  3919. color:#606266;
  3920. }
  3921. #u161070 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u161070_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u161071_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:94px;
  3940. height:35px;
  3941. }
  3942. #u161071 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:483px;
  3946. top:186px;
  3947. width:94px;
  3948. height:35px;
  3949. display:flex;
  3950. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. color:#606266;
  3955. }
  3956. #u161071 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 0px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u161071_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u161072_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:97px;
  3975. height:35px;
  3976. }
  3977. #u161072 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:577px;
  3981. top:186px;
  3982. width:97px;
  3983. height:35px;
  3984. display:flex;
  3985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. color:#606266;
  3990. }
  3991. #u161072 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 0px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u161072_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u161073_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:98px;
  4010. height:35px;
  4011. }
  4012. #u161073 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:674px;
  4016. top:186px;
  4017. width:98px;
  4018. height:35px;
  4019. display:flex;
  4020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. color:#606266;
  4025. }
  4026. #u161073 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 0px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u161073_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u161074_img {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:98px;
  4045. height:35px;
  4046. }
  4047. #u161074 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:772px;
  4051. top:186px;
  4052. width:98px;
  4053. height:35px;
  4054. display:flex;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:12px;
  4059. color:#333333;
  4060. }
  4061. #u161074 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 0px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u161074_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. }
  4073. #u161075_img {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:98px;
  4079. height:35px;
  4080. }
  4081. #u161075 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:870px;
  4085. top:186px;
  4086. width:98px;
  4087. height:35px;
  4088. display:flex;
  4089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#606266;
  4094. }
  4095. #u161075 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u161075_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u161076_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:98px;
  4114. height:35px;
  4115. }
  4116. #u161076 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:968px;
  4120. top:186px;
  4121. width:98px;
  4122. height:35px;
  4123. display:flex;
  4124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:12px;
  4128. color:#606266;
  4129. }
  4130. #u161076 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u161076_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u161077_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:154px;
  4149. height:35px;
  4150. }
  4151. #u161077 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:1066px;
  4155. top:186px;
  4156. width:154px;
  4157. height:35px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. }
  4164. #u161077 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 2px 2px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u161077_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. }
  4176. #u161078_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:93px;
  4182. height:35px;
  4183. }
  4184. #u161078 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:221px;
  4189. width:93px;
  4190. height:35px;
  4191. display:flex;
  4192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:12px;
  4196. color:#606266;
  4197. }
  4198. #u161078 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 0px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u161078_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. visibility:hidden;
  4210. }
  4211. #u161079_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:103px;
  4217. height:35px;
  4218. }
  4219. #u161079 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:93px;
  4223. top:221px;
  4224. width:103px;
  4225. height:35px;
  4226. display:flex;
  4227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#606266;
  4232. }
  4233. #u161079 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u161079_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u161080_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:97px;
  4252. height:35px;
  4253. }
  4254. #u161080 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:196px;
  4258. top:221px;
  4259. width:97px;
  4260. height:35px;
  4261. display:flex;
  4262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. color:#606266;
  4267. }
  4268. #u161080 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 0px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u161080_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u161081_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:97px;
  4287. height:35px;
  4288. }
  4289. #u161081 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:293px;
  4293. top:221px;
  4294. width:97px;
  4295. height:35px;
  4296. display:flex;
  4297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:12px;
  4301. color:#606266;
  4302. }
  4303. #u161081 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u161081_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u161082_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:93px;
  4322. height:35px;
  4323. }
  4324. #u161082 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:390px;
  4328. top:221px;
  4329. width:93px;
  4330. height:35px;
  4331. display:flex;
  4332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:12px;
  4336. color:#606266;
  4337. }
  4338. #u161082 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:2px 2px 2px 0px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u161082_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u161083_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:94px;
  4357. height:35px;
  4358. }
  4359. #u161083 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:483px;
  4363. top:221px;
  4364. width:94px;
  4365. height:35px;
  4366. display:flex;
  4367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. color:#606266;
  4372. }
  4373. #u161083 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u161083_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u161084_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:97px;
  4392. height:35px;
  4393. }
  4394. #u161084 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:577px;
  4398. top:221px;
  4399. width:97px;
  4400. height:35px;
  4401. display:flex;
  4402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:12px;
  4406. color:#606266;
  4407. }
  4408. #u161084 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 0px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u161084_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u161085_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:98px;
  4427. height:35px;
  4428. }
  4429. #u161085 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:674px;
  4433. top:221px;
  4434. width:98px;
  4435. height:35px;
  4436. display:flex;
  4437. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. color:#606266;
  4442. }
  4443. #u161085 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u161085_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u161086_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:98px;
  4462. height:35px;
  4463. }
  4464. #u161086 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:772px;
  4468. top:221px;
  4469. width:98px;
  4470. height:35px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. color:#333333;
  4477. }
  4478. #u161086 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u161086_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. }
  4490. #u161087_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:98px;
  4496. height:35px;
  4497. }
  4498. #u161087 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:870px;
  4502. top:221px;
  4503. width:98px;
  4504. height:35px;
  4505. display:flex;
  4506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u161087 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u161087_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u161088_img {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:98px;
  4531. height:35px;
  4532. }
  4533. #u161088 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:968px;
  4537. top:221px;
  4538. width:98px;
  4539. height:35px;
  4540. display:flex;
  4541. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:12px;
  4545. color:#606266;
  4546. }
  4547. #u161088 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 0px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u161088_text {
  4555. border-width:0px;
  4556. word-wrap:break-word;
  4557. text-transform:none;
  4558. visibility:hidden;
  4559. }
  4560. #u161089_img {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:154px;
  4566. height:35px;
  4567. }
  4568. #u161089 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:1066px;
  4572. top:221px;
  4573. width:154px;
  4574. height:35px;
  4575. display:flex;
  4576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. }
  4581. #u161089 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 0px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u161089_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. }
  4593. #u161090_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:93px;
  4599. height:35px;
  4600. }
  4601. #u161090 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:256px;
  4606. width:93px;
  4607. height:35px;
  4608. display:flex;
  4609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:12px;
  4613. color:#606266;
  4614. }
  4615. #u161090 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 0px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u161090_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u161091_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:103px;
  4634. height:35px;
  4635. }
  4636. #u161091 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:93px;
  4640. top:256px;
  4641. width:103px;
  4642. height:35px;
  4643. display:flex;
  4644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:12px;
  4648. color:#606266;
  4649. }
  4650. #u161091 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 0px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u161091_text {
  4658. border-width:0px;
  4659. word-wrap:break-word;
  4660. text-transform:none;
  4661. visibility:hidden;
  4662. }
  4663. #u161092_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:97px;
  4669. height:35px;
  4670. }
  4671. #u161092 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:196px;
  4675. top:256px;
  4676. width:97px;
  4677. height:35px;
  4678. display:flex;
  4679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:12px;
  4683. color:#606266;
  4684. }
  4685. #u161092 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 2px 2px 0px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u161092_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u161093_img {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:97px;
  4704. height:35px;
  4705. }
  4706. #u161093 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:293px;
  4710. top:256px;
  4711. width:97px;
  4712. height:35px;
  4713. display:flex;
  4714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:12px;
  4718. color:#606266;
  4719. }
  4720. #u161093 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:2px 2px 2px 0px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u161093_text {
  4728. border-width:0px;
  4729. word-wrap:break-word;
  4730. text-transform:none;
  4731. visibility:hidden;
  4732. }
  4733. #u161094_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:93px;
  4739. height:35px;
  4740. }
  4741. #u161094 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:390px;
  4745. top:256px;
  4746. width:93px;
  4747. height:35px;
  4748. display:flex;
  4749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:12px;
  4753. color:#606266;
  4754. }
  4755. #u161094 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u161094_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u161095_img {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:94px;
  4774. height:35px;
  4775. }
  4776. #u161095 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:483px;
  4780. top:256px;
  4781. width:94px;
  4782. height:35px;
  4783. display:flex;
  4784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:12px;
  4788. color:#606266;
  4789. }
  4790. #u161095 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 0px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u161095_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u161096_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:97px;
  4809. height:35px;
  4810. }
  4811. #u161096 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:577px;
  4815. top:256px;
  4816. width:97px;
  4817. height:35px;
  4818. display:flex;
  4819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:12px;
  4823. color:#606266;
  4824. }
  4825. #u161096 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u161096_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u161097_img {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:98px;
  4844. height:35px;
  4845. }
  4846. #u161097 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:674px;
  4850. top:256px;
  4851. width:98px;
  4852. height:35px;
  4853. display:flex;
  4854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:12px;
  4858. color:#606266;
  4859. }
  4860. #u161097 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 0px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u161097_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u161098_img {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:98px;
  4879. height:35px;
  4880. }
  4881. #u161098 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:772px;
  4885. top:256px;
  4886. width:98px;
  4887. height:35px;
  4888. display:flex;
  4889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:12px;
  4893. color:#606266;
  4894. }
  4895. #u161098 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:2px 2px 2px 0px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u161098_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. }
  4907. #u161099_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:98px;
  4913. height:35px;
  4914. }
  4915. #u161099 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:870px;
  4919. top:256px;
  4920. width:98px;
  4921. height:35px;
  4922. display:flex;
  4923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:12px;
  4927. color:#606266;
  4928. }
  4929. #u161099 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 0px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u161099_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. visibility:hidden;
  4941. }
  4942. #u161100_img {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:98px;
  4948. height:35px;
  4949. }
  4950. #u161100 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:968px;
  4954. top:256px;
  4955. width:98px;
  4956. height:35px;
  4957. display:flex;
  4958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#606266;
  4963. }
  4964. #u161100 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u161100_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. visibility:hidden;
  4976. }
  4977. #u161101_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:154px;
  4983. height:35px;
  4984. }
  4985. #u161101 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:1066px;
  4989. top:256px;
  4990. width:154px;
  4991. height:35px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. }
  4998. #u161101 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u161101_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. }
  5010. #u161102_img {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:93px;
  5016. height:35px;
  5017. }
  5018. #u161102 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:291px;
  5023. width:93px;
  5024. height:35px;
  5025. display:flex;
  5026. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:12px;
  5030. color:#606266;
  5031. }
  5032. #u161102 .text {
  5033. position:absolute;
  5034. align-self:center;
  5035. padding:2px 2px 2px 0px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u161102_text {
  5040. border-width:0px;
  5041. word-wrap:break-word;
  5042. text-transform:none;
  5043. visibility:hidden;
  5044. }
  5045. #u161103_img {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:103px;
  5051. height:35px;
  5052. }
  5053. #u161103 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:93px;
  5057. top:291px;
  5058. width:103px;
  5059. height:35px;
  5060. display:flex;
  5061. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:12px;
  5065. color:#606266;
  5066. }
  5067. #u161103 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u161103_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u161104_img {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:97px;
  5086. height:35px;
  5087. }
  5088. #u161104 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:196px;
  5092. top:291px;
  5093. width:97px;
  5094. height:35px;
  5095. display:flex;
  5096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:12px;
  5100. color:#606266;
  5101. }
  5102. #u161104 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 0px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u161104_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u161105_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:97px;
  5121. height:35px;
  5122. }
  5123. #u161105 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:293px;
  5127. top:291px;
  5128. width:97px;
  5129. height:35px;
  5130. display:flex;
  5131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5132. font-weight:400;
  5133. font-style:normal;
  5134. font-size:12px;
  5135. color:#606266;
  5136. }
  5137. #u161105 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:2px 2px 2px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u161105_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. visibility:hidden;
  5149. }
  5150. #u161106_img {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:93px;
  5156. height:35px;
  5157. }
  5158. #u161106 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:390px;
  5162. top:291px;
  5163. width:93px;
  5164. height:35px;
  5165. display:flex;
  5166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:12px;
  5170. color:#606266;
  5171. }
  5172. #u161106 .text {
  5173. position:absolute;
  5174. align-self:center;
  5175. padding:2px 2px 2px 0px;
  5176. box-sizing:border-box;
  5177. width:100%;
  5178. }
  5179. #u161106_text {
  5180. border-width:0px;
  5181. word-wrap:break-word;
  5182. text-transform:none;
  5183. visibility:hidden;
  5184. }
  5185. #u161107_img {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:94px;
  5191. height:35px;
  5192. }
  5193. #u161107 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:483px;
  5197. top:291px;
  5198. width:94px;
  5199. height:35px;
  5200. display:flex;
  5201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:12px;
  5205. color:#606266;
  5206. }
  5207. #u161107 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:2px 2px 2px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u161107_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u161108_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:97px;
  5226. height:35px;
  5227. }
  5228. #u161108 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:577px;
  5232. top:291px;
  5233. width:97px;
  5234. height:35px;
  5235. display:flex;
  5236. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:12px;
  5240. color:#606266;
  5241. }
  5242. #u161108 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:2px 2px 2px 0px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u161108_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. visibility:hidden;
  5254. }
  5255. #u161109_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:98px;
  5261. height:35px;
  5262. }
  5263. #u161109 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:674px;
  5267. top:291px;
  5268. width:98px;
  5269. height:35px;
  5270. display:flex;
  5271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:12px;
  5275. color:#606266;
  5276. }
  5277. #u161109 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:2px 2px 2px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u161109_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. visibility:hidden;
  5289. }
  5290. #u161110_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:98px;
  5296. height:35px;
  5297. }
  5298. #u161110 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:772px;
  5302. top:291px;
  5303. width:98px;
  5304. height:35px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:12px;
  5310. color:#606266;
  5311. }
  5312. #u161110 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u161110_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. }
  5324. #u161111_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:98px;
  5330. height:35px;
  5331. }
  5332. #u161111 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:870px;
  5336. top:291px;
  5337. width:98px;
  5338. height:35px;
  5339. display:flex;
  5340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:12px;
  5344. color:#606266;
  5345. }
  5346. #u161111 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u161111_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. visibility:hidden;
  5358. }
  5359. #u161112_img {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:98px;
  5365. height:35px;
  5366. }
  5367. #u161112 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:968px;
  5371. top:291px;
  5372. width:98px;
  5373. height:35px;
  5374. display:flex;
  5375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:12px;
  5379. color:#606266;
  5380. }
  5381. #u161112 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 0px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u161112_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u161113_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:154px;
  5400. height:35px;
  5401. }
  5402. #u161113 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1066px;
  5406. top:291px;
  5407. width:154px;
  5408. height:35px;
  5409. display:flex;
  5410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:12px;
  5414. }
  5415. #u161113 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u161113_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. }
  5427. #u161114_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:93px;
  5433. height:35px;
  5434. }
  5435. #u161114 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:326px;
  5440. width:93px;
  5441. height:35px;
  5442. display:flex;
  5443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:12px;
  5447. color:#606266;
  5448. }
  5449. #u161114 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 0px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u161114_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u161115_img {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:103px;
  5468. height:35px;
  5469. }
  5470. #u161115 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:93px;
  5474. top:326px;
  5475. width:103px;
  5476. height:35px;
  5477. display:flex;
  5478. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. color:#606266;
  5483. }
  5484. #u161115 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 2px 2px 0px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u161115_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. visibility:hidden;
  5496. }
  5497. #u161116_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:97px;
  5503. height:35px;
  5504. }
  5505. #u161116 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:196px;
  5509. top:326px;
  5510. width:97px;
  5511. height:35px;
  5512. display:flex;
  5513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. color:#606266;
  5518. }
  5519. #u161116 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 2px 2px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u161116_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. visibility:hidden;
  5531. }
  5532. #u161117_img {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:97px;
  5538. height:35px;
  5539. }
  5540. #u161117 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:293px;
  5544. top:326px;
  5545. width:97px;
  5546. height:35px;
  5547. display:flex;
  5548. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:12px;
  5552. color:#606266;
  5553. }
  5554. #u161117 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u161117_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u161118_img {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:93px;
  5573. height:35px;
  5574. }
  5575. #u161118 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:390px;
  5579. top:326px;
  5580. width:93px;
  5581. height:35px;
  5582. display:flex;
  5583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:12px;
  5587. color:#606266;
  5588. }
  5589. #u161118 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 0px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u161118_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u161119_img {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:94px;
  5608. height:35px;
  5609. }
  5610. #u161119 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:483px;
  5614. top:326px;
  5615. width:94px;
  5616. height:35px;
  5617. display:flex;
  5618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:12px;
  5622. color:#606266;
  5623. }
  5624. #u161119 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 0px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u161119_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. visibility:hidden;
  5636. }
  5637. #u161120_img {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:97px;
  5643. height:35px;
  5644. }
  5645. #u161120 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:577px;
  5649. top:326px;
  5650. width:97px;
  5651. height:35px;
  5652. display:flex;
  5653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:12px;
  5657. color:#606266;
  5658. }
  5659. #u161120 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 0px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u161120_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u161121_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:98px;
  5678. height:35px;
  5679. }
  5680. #u161121 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:674px;
  5684. top:326px;
  5685. width:98px;
  5686. height:35px;
  5687. display:flex;
  5688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:12px;
  5692. color:#606266;
  5693. }
  5694. #u161121 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u161121_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u161122_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:98px;
  5713. height:35px;
  5714. }
  5715. #u161122 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:772px;
  5719. top:326px;
  5720. width:98px;
  5721. height:35px;
  5722. display:flex;
  5723. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#606266;
  5728. }
  5729. #u161122 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u161122_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u161123_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:98px;
  5748. height:35px;
  5749. }
  5750. #u161123 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:870px;
  5754. top:326px;
  5755. width:98px;
  5756. height:35px;
  5757. display:flex;
  5758. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:12px;
  5762. color:#606266;
  5763. }
  5764. #u161123 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u161123_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u161124_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:98px;
  5783. height:35px;
  5784. }
  5785. #u161124 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:968px;
  5789. top:326px;
  5790. width:98px;
  5791. height:35px;
  5792. display:flex;
  5793. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. color:#606266;
  5798. }
  5799. #u161124 .text {
  5800. position:absolute;
  5801. align-self:center;
  5802. padding:2px 2px 2px 0px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u161124_text {
  5807. border-width:0px;
  5808. word-wrap:break-word;
  5809. text-transform:none;
  5810. visibility:hidden;
  5811. }
  5812. #u161125_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:154px;
  5818. height:35px;
  5819. }
  5820. #u161125 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:1066px;
  5824. top:326px;
  5825. width:154px;
  5826. height:35px;
  5827. display:flex;
  5828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:12px;
  5832. color:#606266;
  5833. }
  5834. #u161125 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u161125_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u161126_img {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:93px;
  5853. height:35px;
  5854. }
  5855. #u161126 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:361px;
  5860. width:93px;
  5861. height:35px;
  5862. display:flex;
  5863. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:12px;
  5867. color:#606266;
  5868. }
  5869. #u161126 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 0px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u161126_text {
  5877. border-width:0px;
  5878. word-wrap:break-word;
  5879. text-transform:none;
  5880. visibility:hidden;
  5881. }
  5882. #u161127_img {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:103px;
  5888. height:35px;
  5889. }
  5890. #u161127 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:93px;
  5894. top:361px;
  5895. width:103px;
  5896. height:35px;
  5897. display:flex;
  5898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5899. font-weight:400;
  5900. font-style:normal;
  5901. font-size:12px;
  5902. color:#606266;
  5903. }
  5904. #u161127 .text {
  5905. position:absolute;
  5906. align-self:center;
  5907. padding:2px 2px 2px 0px;
  5908. box-sizing:border-box;
  5909. width:100%;
  5910. }
  5911. #u161127_text {
  5912. border-width:0px;
  5913. word-wrap:break-word;
  5914. text-transform:none;
  5915. visibility:hidden;
  5916. }
  5917. #u161128_img {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:97px;
  5923. height:35px;
  5924. }
  5925. #u161128 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:196px;
  5929. top:361px;
  5930. width:97px;
  5931. height:35px;
  5932. display:flex;
  5933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:12px;
  5937. color:#606266;
  5938. }
  5939. #u161128 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:2px 2px 2px 0px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u161128_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. visibility:hidden;
  5951. }
  5952. #u161129_img {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:97px;
  5958. height:35px;
  5959. }
  5960. #u161129 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:293px;
  5964. top:361px;
  5965. width:97px;
  5966. height:35px;
  5967. display:flex;
  5968. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:12px;
  5972. color:#606266;
  5973. }
  5974. #u161129 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u161129_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u161130_img {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:93px;
  5993. height:35px;
  5994. }
  5995. #u161130 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:390px;
  5999. top:361px;
  6000. width:93px;
  6001. height:35px;
  6002. display:flex;
  6003. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:12px;
  6007. color:#606266;
  6008. }
  6009. #u161130 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 0px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u161130_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. visibility:hidden;
  6021. }
  6022. #u161131_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:94px;
  6028. height:35px;
  6029. }
  6030. #u161131 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:483px;
  6034. top:361px;
  6035. width:94px;
  6036. height:35px;
  6037. display:flex;
  6038. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:12px;
  6042. color:#606266;
  6043. }
  6044. #u161131 .text {
  6045. position:absolute;
  6046. align-self:center;
  6047. padding:2px 2px 2px 0px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u161131_text {
  6052. border-width:0px;
  6053. word-wrap:break-word;
  6054. text-transform:none;
  6055. visibility:hidden;
  6056. }
  6057. #u161132_img {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:97px;
  6063. height:35px;
  6064. }
  6065. #u161132 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:577px;
  6069. top:361px;
  6070. width:97px;
  6071. height:35px;
  6072. display:flex;
  6073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:12px;
  6077. color:#606266;
  6078. }
  6079. #u161132 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:2px 2px 2px 0px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u161132_text {
  6087. border-width:0px;
  6088. word-wrap:break-word;
  6089. text-transform:none;
  6090. visibility:hidden;
  6091. }
  6092. #u161133_img {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:98px;
  6098. height:35px;
  6099. }
  6100. #u161133 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:674px;
  6104. top:361px;
  6105. width:98px;
  6106. height:35px;
  6107. display:flex;
  6108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:12px;
  6112. color:#606266;
  6113. }
  6114. #u161133 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 0px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u161133_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u161134_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:98px;
  6133. height:35px;
  6134. }
  6135. #u161134 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:772px;
  6139. top:361px;
  6140. width:98px;
  6141. height:35px;
  6142. display:flex;
  6143. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:12px;
  6147. color:#606266;
  6148. }
  6149. #u161134 .text {
  6150. position:absolute;
  6151. align-self:center;
  6152. padding:2px 2px 2px 0px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u161134_text {
  6157. border-width:0px;
  6158. word-wrap:break-word;
  6159. text-transform:none;
  6160. visibility:hidden;
  6161. }
  6162. #u161135_img {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:98px;
  6168. height:35px;
  6169. }
  6170. #u161135 {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:870px;
  6174. top:361px;
  6175. width:98px;
  6176. height:35px;
  6177. display:flex;
  6178. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:12px;
  6182. color:#606266;
  6183. }
  6184. #u161135 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 2px 2px 0px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u161135_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. visibility:hidden;
  6196. }
  6197. #u161136_img {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:98px;
  6203. height:35px;
  6204. }
  6205. #u161136 {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:968px;
  6209. top:361px;
  6210. width:98px;
  6211. height:35px;
  6212. display:flex;
  6213. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:12px;
  6217. color:#606266;
  6218. }
  6219. #u161136 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:2px 2px 2px 0px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u161136_text {
  6227. border-width:0px;
  6228. word-wrap:break-word;
  6229. text-transform:none;
  6230. visibility:hidden;
  6231. }
  6232. #u161137_img {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:154px;
  6238. height:35px;
  6239. }
  6240. #u161137 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:1066px;
  6244. top:361px;
  6245. width:154px;
  6246. height:35px;
  6247. display:flex;
  6248. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:12px;
  6252. color:#606266;
  6253. }
  6254. #u161137 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 2px 2px 0px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u161137_text {
  6262. border-width:0px;
  6263. word-wrap:break-word;
  6264. text-transform:none;
  6265. visibility:hidden;
  6266. }
  6267. #u161138_img {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:93px;
  6273. height:35px;
  6274. }
  6275. #u161138 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:396px;
  6280. width:93px;
  6281. height:35px;
  6282. display:flex;
  6283. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:12px;
  6287. color:#606266;
  6288. }
  6289. #u161138 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:2px 2px 2px 0px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u161138_text {
  6297. border-width:0px;
  6298. word-wrap:break-word;
  6299. text-transform:none;
  6300. visibility:hidden;
  6301. }
  6302. #u161139_img {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:103px;
  6308. height:35px;
  6309. }
  6310. #u161139 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:93px;
  6314. top:396px;
  6315. width:103px;
  6316. height:35px;
  6317. display:flex;
  6318. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:12px;
  6322. color:#606266;
  6323. }
  6324. #u161139 .text {
  6325. position:absolute;
  6326. align-self:center;
  6327. padding:2px 2px 2px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u161139_text {
  6332. border-width:0px;
  6333. word-wrap:break-word;
  6334. text-transform:none;
  6335. visibility:hidden;
  6336. }
  6337. #u161140_img {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:0px;
  6342. width:97px;
  6343. height:35px;
  6344. }
  6345. #u161140 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:196px;
  6349. top:396px;
  6350. width:97px;
  6351. height:35px;
  6352. display:flex;
  6353. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. font-size:12px;
  6357. color:#606266;
  6358. }
  6359. #u161140 .text {
  6360. position:absolute;
  6361. align-self:center;
  6362. padding:2px 2px 2px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u161140_text {
  6367. border-width:0px;
  6368. word-wrap:break-word;
  6369. text-transform:none;
  6370. visibility:hidden;
  6371. }
  6372. #u161141_img {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:97px;
  6378. height:35px;
  6379. }
  6380. #u161141 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:293px;
  6384. top:396px;
  6385. width:97px;
  6386. height:35px;
  6387. display:flex;
  6388. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. color:#606266;
  6393. }
  6394. #u161141 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 0px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u161141_text {
  6402. border-width:0px;
  6403. word-wrap:break-word;
  6404. text-transform:none;
  6405. visibility:hidden;
  6406. }
  6407. #u161142_img {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:93px;
  6413. height:35px;
  6414. }
  6415. #u161142 {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:390px;
  6419. top:396px;
  6420. width:93px;
  6421. height:35px;
  6422. display:flex;
  6423. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:12px;
  6427. color:#606266;
  6428. }
  6429. #u161142 .text {
  6430. position:absolute;
  6431. align-self:center;
  6432. padding:2px 2px 2px 0px;
  6433. box-sizing:border-box;
  6434. width:100%;
  6435. }
  6436. #u161142_text {
  6437. border-width:0px;
  6438. word-wrap:break-word;
  6439. text-transform:none;
  6440. visibility:hidden;
  6441. }
  6442. #u161143_img {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:94px;
  6448. height:35px;
  6449. }
  6450. #u161143 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:483px;
  6454. top:396px;
  6455. width:94px;
  6456. height:35px;
  6457. display:flex;
  6458. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6459. font-weight:400;
  6460. font-style:normal;
  6461. font-size:12px;
  6462. color:#606266;
  6463. }
  6464. #u161143 .text {
  6465. position:absolute;
  6466. align-self:center;
  6467. padding:2px 2px 2px 0px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u161143_text {
  6472. border-width:0px;
  6473. word-wrap:break-word;
  6474. text-transform:none;
  6475. visibility:hidden;
  6476. }
  6477. #u161144_img {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:97px;
  6483. height:35px;
  6484. }
  6485. #u161144 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:577px;
  6489. top:396px;
  6490. width:97px;
  6491. height:35px;
  6492. display:flex;
  6493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:12px;
  6497. color:#606266;
  6498. }
  6499. #u161144 .text {
  6500. position:absolute;
  6501. align-self:center;
  6502. padding:2px 2px 2px 0px;
  6503. box-sizing:border-box;
  6504. width:100%;
  6505. }
  6506. #u161144_text {
  6507. border-width:0px;
  6508. word-wrap:break-word;
  6509. text-transform:none;
  6510. visibility:hidden;
  6511. }
  6512. #u161145_img {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:98px;
  6518. height:35px;
  6519. }
  6520. #u161145 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:674px;
  6524. top:396px;
  6525. width:98px;
  6526. height:35px;
  6527. display:flex;
  6528. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:12px;
  6532. color:#606266;
  6533. }
  6534. #u161145 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 0px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u161145_text {
  6542. border-width:0px;
  6543. word-wrap:break-word;
  6544. text-transform:none;
  6545. visibility:hidden;
  6546. }
  6547. #u161146_img {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:98px;
  6553. height:35px;
  6554. }
  6555. #u161146 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:772px;
  6559. top:396px;
  6560. width:98px;
  6561. height:35px;
  6562. display:flex;
  6563. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:12px;
  6567. color:#606266;
  6568. }
  6569. #u161146 .text {
  6570. position:absolute;
  6571. align-self:center;
  6572. padding:2px 2px 2px 0px;
  6573. box-sizing:border-box;
  6574. width:100%;
  6575. }
  6576. #u161146_text {
  6577. border-width:0px;
  6578. word-wrap:break-word;
  6579. text-transform:none;
  6580. visibility:hidden;
  6581. }
  6582. #u161147_img {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:98px;
  6588. height:35px;
  6589. }
  6590. #u161147 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:870px;
  6594. top:396px;
  6595. width:98px;
  6596. height:35px;
  6597. display:flex;
  6598. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:12px;
  6602. color:#606266;
  6603. }
  6604. #u161147 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:2px 2px 2px 0px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u161147_text {
  6612. border-width:0px;
  6613. word-wrap:break-word;
  6614. text-transform:none;
  6615. visibility:hidden;
  6616. }
  6617. #u161148_img {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:98px;
  6623. height:35px;
  6624. }
  6625. #u161148 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:968px;
  6629. top:396px;
  6630. width:98px;
  6631. height:35px;
  6632. display:flex;
  6633. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:12px;
  6637. color:#606266;
  6638. }
  6639. #u161148 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 0px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u161148_text {
  6647. border-width:0px;
  6648. word-wrap:break-word;
  6649. text-transform:none;
  6650. visibility:hidden;
  6651. }
  6652. #u161149_img {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:154px;
  6658. height:35px;
  6659. }
  6660. #u161149 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:1066px;
  6664. top:396px;
  6665. width:154px;
  6666. height:35px;
  6667. display:flex;
  6668. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:12px;
  6672. color:#606266;
  6673. }
  6674. #u161149 .text {
  6675. position:absolute;
  6676. align-self:center;
  6677. padding:2px 2px 2px 0px;
  6678. box-sizing:border-box;
  6679. width:100%;
  6680. }
  6681. #u161149_text {
  6682. border-width:0px;
  6683. word-wrap:break-word;
  6684. text-transform:none;
  6685. visibility:hidden;
  6686. }
  6687. #u161150 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:0px;
  6693. height:0px;
  6694. }
  6695. #u161151_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:59px;
  6701. height:30px;
  6702. background:inherit;
  6703. background-color:rgba(41, 143, 255, 1);
  6704. border:none;
  6705. border-radius:4px;
  6706. -moz-box-shadow:none;
  6707. -webkit-box-shadow:none;
  6708. box-shadow:none;
  6709. font-family:'Microsoft YaHei', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. color:#FFFFFF;
  6714. }
  6715. #u161151 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:1403px;
  6719. top:103px;
  6720. width:59px;
  6721. height:30px;
  6722. display:flex;
  6723. font-family:'Microsoft YaHei', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. color:#FFFFFF;
  6728. }
  6729. #u161151 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:5px 15px 5px 15px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u161151_text {
  6737. border-width:0px;
  6738. white-space:nowrap;
  6739. text-transform:none;
  6740. }
  6741. #u161152_div {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:55px;
  6747. height:30px;
  6748. background:inherit;
  6749. background-color:rgba(255, 255, 255, 1);
  6750. box-sizing:border-box;
  6751. border-width:1px;
  6752. border-style:solid;
  6753. border-color:rgba(170, 170, 170, 1);
  6754. border-radius:4px;
  6755. -moz-box-shadow:none;
  6756. -webkit-box-shadow:none;
  6757. box-shadow:none;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:12px;
  6762. color:#555555;
  6763. }
  6764. #u161152 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:1472px;
  6768. top:103px;
  6769. width:55px;
  6770. height:30px;
  6771. display:flex;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. color:#555555;
  6777. }
  6778. #u161152 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:5px 15px 5px 15px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u161152_text {
  6786. border-width:0px;
  6787. white-space:nowrap;
  6788. text-transform:none;
  6789. }
  6790. #u161153 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:0px;
  6796. height:0px;
  6797. }
  6798. #u161154_div {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:140px;
  6804. height:30px;
  6805. background:inherit;
  6806. background-color:rgba(255, 255, 255, 1);
  6807. box-sizing:border-box;
  6808. border-width:1px;
  6809. border-style:solid;
  6810. border-color:rgba(201, 201, 201, 1);
  6811. border-radius:4px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'Microsoft YaHei', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:14px;
  6819. color:#CCCCCC;
  6820. text-align:left;
  6821. }
  6822. #u161154 {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:498px;
  6826. top:102px;
  6827. width:140px;
  6828. height:30px;
  6829. display:flex;
  6830. font-family:'Microsoft YaHei', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. font-size:14px;
  6834. color:#CCCCCC;
  6835. text-align:left;
  6836. }
  6837. #u161154 .text {
  6838. position:absolute;
  6839. align-self:center;
  6840. padding:2px 8px 2px 8px;
  6841. box-sizing:border-box;
  6842. width:100%;
  6843. }
  6844. #u161154_text {
  6845. border-width:0px;
  6846. word-wrap:break-word;
  6847. text-transform:none;
  6848. visibility:hidden;
  6849. }
  6850. #u161155_input {
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:127px;
  6855. height:25px;
  6856. padding:2px 2px 2px 2px;
  6857. font-family:'Microsoft YaHei', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:10px;
  6861. letter-spacing:normal;
  6862. color:#000000;
  6863. vertical-align:none;
  6864. text-align:left;
  6865. text-transform:none;
  6866. background-color:transparent;
  6867. border-color:transparent;
  6868. }
  6869. #u161155_input.disabled {
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:127px;
  6874. height:25px;
  6875. padding:2px 2px 2px 2px;
  6876. font-family:'Microsoft YaHei', sans-serif;
  6877. font-weight:400;
  6878. font-style:normal;
  6879. font-size:10px;
  6880. letter-spacing:normal;
  6881. color:#000000;
  6882. vertical-align:none;
  6883. text-align:left;
  6884. text-transform:none;
  6885. background-color:transparent;
  6886. border-color:transparent;
  6887. }
  6888. #u161155_div {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:127px;
  6894. height:25px;
  6895. background:inherit;
  6896. background-color:rgba(255, 255, 255, 1);
  6897. border:none;
  6898. border-radius:0px;
  6899. -moz-box-shadow:none;
  6900. -webkit-box-shadow:none;
  6901. box-shadow:none;
  6902. font-family:'Microsoft YaHei', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:10px;
  6906. }
  6907. #u161155 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:506px;
  6911. top:103px;
  6912. width:127px;
  6913. height:25px;
  6914. display:flex;
  6915. font-family:'Microsoft YaHei', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:10px;
  6919. }
  6920. #u161155 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 2px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u161155_div.disabled {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:127px;
  6933. height:25px;
  6934. background:inherit;
  6935. background-color:rgba(240, 240, 240, 1);
  6936. border:none;
  6937. border-radius:0px;
  6938. -moz-box-shadow:none;
  6939. -webkit-box-shadow:none;
  6940. box-shadow:none;
  6941. font-family:'Microsoft YaHei', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:10px;
  6945. }
  6946. #u161155.disabled {
  6947. }
  6948. #u161156 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:0px;
  6954. height:0px;
  6955. }
  6956. #u161157_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:140px;
  6962. height:30px;
  6963. background:inherit;
  6964. background-color:rgba(255, 255, 255, 1);
  6965. box-sizing:border-box;
  6966. border-width:1px;
  6967. border-style:solid;
  6968. border-color:rgba(215, 215, 215, 1);
  6969. border-radius:4px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. font-size:11px;
  6974. }
  6975. #u161157 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:951px;
  6979. top:102px;
  6980. width:140px;
  6981. height:30px;
  6982. display:flex;
  6983. font-size:11px;
  6984. }
  6985. #u161157 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 2px 2px 2px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u161157_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u161158_input {
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:120px;
  7003. height:23px;
  7004. padding:2px 2px 2px 2px;
  7005. font-family:'ArialMT', 'Arial', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:11px;
  7009. letter-spacing:normal;
  7010. color:#AAAAAA;
  7011. vertical-align:none;
  7012. text-align:left;
  7013. text-transform:none;
  7014. background-color:transparent;
  7015. border-color:transparent;
  7016. }
  7017. #u161158_input.disabled {
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:120px;
  7022. height:23px;
  7023. padding:2px 2px 2px 2px;
  7024. font-family:'ArialMT', 'Arial', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:11px;
  7028. letter-spacing:normal;
  7029. color:#AAAAAA;
  7030. vertical-align:none;
  7031. text-align:left;
  7032. text-transform:none;
  7033. background-color:transparent;
  7034. border-color:transparent;
  7035. }
  7036. #u161158_div {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:120px;
  7042. height:23px;
  7043. background:inherit;
  7044. background-color:rgba(255, 255, 255, 1);
  7045. border:none;
  7046. border-radius:0px;
  7047. -moz-box-shadow:none;
  7048. -webkit-box-shadow:none;
  7049. box-shadow:none;
  7050. font-size:11px;
  7051. color:#AAAAAA;
  7052. }
  7053. #u161158 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:958px;
  7057. top:104px;
  7058. width:120px;
  7059. height:23px;
  7060. display:flex;
  7061. font-size:11px;
  7062. color:#AAAAAA;
  7063. }
  7064. #u161158 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:2px 2px 2px 2px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u161158_div.disabled {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:120px;
  7077. height:23px;
  7078. background:inherit;
  7079. background-color:rgba(240, 240, 240, 1);
  7080. border:none;
  7081. border-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-size:11px;
  7086. color:#AAAAAA;
  7087. }
  7088. #u161158.disabled {
  7089. }
  7090. .u161158_input_option {
  7091. font-size:11px;
  7092. }
  7093. #u161159 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:0px;
  7099. height:0px;
  7100. }
  7101. #u161160_div {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:140px;
  7107. height:30px;
  7108. background:inherit;
  7109. background-color:rgba(255, 255, 255, 1);
  7110. box-sizing:border-box;
  7111. border-width:1px;
  7112. border-style:solid;
  7113. border-color:rgba(201, 201, 201, 1);
  7114. border-radius:4px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. font-family:'Microsoft YaHei', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:14px;
  7122. color:#CCCCCC;
  7123. text-align:left;
  7124. }
  7125. #u161160 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:650px;
  7129. top:102px;
  7130. width:140px;
  7131. height:30px;
  7132. display:flex;
  7133. font-family:'Microsoft YaHei', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#CCCCCC;
  7138. text-align:left;
  7139. }
  7140. #u161160 .text {
  7141. position:absolute;
  7142. align-self:center;
  7143. padding:2px 8px 2px 8px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u161160_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. visibility:hidden;
  7152. }
  7153. #u161161_input {
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:127px;
  7158. height:25px;
  7159. padding:2px 2px 2px 2px;
  7160. font-family:'Microsoft YaHei', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:10px;
  7164. letter-spacing:normal;
  7165. color:#000000;
  7166. vertical-align:none;
  7167. text-align:left;
  7168. text-transform:none;
  7169. background-color:transparent;
  7170. border-color:transparent;
  7171. }
  7172. #u161161_input.disabled {
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:127px;
  7177. height:25px;
  7178. padding:2px 2px 2px 2px;
  7179. font-family:'Microsoft YaHei', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:10px;
  7183. letter-spacing:normal;
  7184. color:#000000;
  7185. vertical-align:none;
  7186. text-align:left;
  7187. text-transform:none;
  7188. background-color:transparent;
  7189. border-color:transparent;
  7190. }
  7191. #u161161_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:127px;
  7197. height:25px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 1);
  7200. border:none;
  7201. border-radius:0px;
  7202. -moz-box-shadow:none;
  7203. -webkit-box-shadow:none;
  7204. box-shadow:none;
  7205. font-family:'Microsoft YaHei', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:10px;
  7209. }
  7210. #u161161 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:658px;
  7214. top:103px;
  7215. width:127px;
  7216. height:25px;
  7217. display:flex;
  7218. font-family:'Microsoft YaHei', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. font-size:10px;
  7222. }
  7223. #u161161 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u161161_div.disabled {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:127px;
  7236. height:25px;
  7237. background:inherit;
  7238. background-color:rgba(240, 240, 240, 1);
  7239. border:none;
  7240. border-radius:0px;
  7241. -moz-box-shadow:none;
  7242. -webkit-box-shadow:none;
  7243. box-shadow:none;
  7244. font-family:'Microsoft YaHei', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:10px;
  7248. }
  7249. #u161161.disabled {
  7250. }
  7251. #u161162 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:0px;
  7257. height:0px;
  7258. }
  7259. #u161163_div {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:140px;
  7265. height:30px;
  7266. background:inherit;
  7267. background-color:rgba(255, 255, 255, 1);
  7268. box-sizing:border-box;
  7269. border-width:1px;
  7270. border-style:solid;
  7271. border-color:rgba(201, 201, 201, 1);
  7272. border-radius:4px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'Microsoft YaHei', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:14px;
  7280. color:#CCCCCC;
  7281. text-align:left;
  7282. }
  7283. #u161163 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:801px;
  7287. top:102px;
  7288. width:140px;
  7289. height:30px;
  7290. display:flex;
  7291. font-family:'Microsoft YaHei', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. color:#CCCCCC;
  7296. text-align:left;
  7297. }
  7298. #u161163 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:2px 8px 2px 8px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u161163_text {
  7306. border-width:0px;
  7307. word-wrap:break-word;
  7308. text-transform:none;
  7309. visibility:hidden;
  7310. }
  7311. #u161164_input {
  7312. position:absolute;
  7313. left:0px;
  7314. top:0px;
  7315. width:127px;
  7316. height:25px;
  7317. padding:2px 2px 2px 2px;
  7318. font-family:'Microsoft YaHei', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:10px;
  7322. letter-spacing:normal;
  7323. color:#000000;
  7324. vertical-align:none;
  7325. text-align:left;
  7326. text-transform:none;
  7327. background-color:transparent;
  7328. border-color:transparent;
  7329. }
  7330. #u161164_input.disabled {
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:127px;
  7335. height:25px;
  7336. padding:2px 2px 2px 2px;
  7337. font-family:'Microsoft YaHei', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:10px;
  7341. letter-spacing:normal;
  7342. color:#000000;
  7343. vertical-align:none;
  7344. text-align:left;
  7345. text-transform:none;
  7346. background-color:transparent;
  7347. border-color:transparent;
  7348. }
  7349. #u161164_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:127px;
  7355. height:25px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 1);
  7358. border:none;
  7359. border-radius:0px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-family:'Microsoft YaHei', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:10px;
  7367. }
  7368. #u161164 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:809px;
  7372. top:103px;
  7373. width:127px;
  7374. height:25px;
  7375. display:flex;
  7376. font-family:'Microsoft YaHei', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:10px;
  7380. }
  7381. #u161164 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 2px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u161164_div.disabled {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:127px;
  7394. height:25px;
  7395. background:inherit;
  7396. background-color:rgba(240, 240, 240, 1);
  7397. border:none;
  7398. border-radius:0px;
  7399. -moz-box-shadow:none;
  7400. -webkit-box-shadow:none;
  7401. box-shadow:none;
  7402. font-family:'Microsoft YaHei', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:10px;
  7406. }
  7407. #u161164.disabled {
  7408. }
  7409. #u161165_div {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:60px;
  7415. height:30px;
  7416. background:inherit;
  7417. background-color:rgba(255, 255, 255, 1);
  7418. box-sizing:border-box;
  7419. border-width:1px;
  7420. border-style:solid;
  7421. border-color:rgba(170, 170, 170, 1);
  7422. border-radius:4px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:12px;
  7430. color:#555555;
  7431. }
  7432. #u161165 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:350px;
  7436. top:201px;
  7437. width:60px;
  7438. height:30px;
  7439. display:flex;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:12px;
  7444. color:#555555;
  7445. }
  7446. #u161165 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:5px 15px 5px 15px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u161165_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. }
  7458. #u161166_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:73px;
  7464. height:50px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 0);
  7467. border:none;
  7468. border-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7473. font-weight:500;
  7474. font-style:normal;
  7475. font-size:18px;
  7476. line-height:40px;
  7477. }
  7478. #u161166 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:350px;
  7482. top:51px;
  7483. width:73px;
  7484. height:50px;
  7485. display:flex;
  7486. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7487. font-weight:500;
  7488. font-style:normal;
  7489. font-size:18px;
  7490. line-height:40px;
  7491. }
  7492. #u161166 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u161166_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u161167 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:0px;
  7510. height:0px;
  7511. }
  7512. #u161168_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:140px;
  7518. height:30px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 1);
  7521. box-sizing:border-box;
  7522. border-width:1px;
  7523. border-style:solid;
  7524. border-color:rgba(201, 201, 201, 1);
  7525. border-radius:4px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'Microsoft YaHei', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. color:#CCCCCC;
  7534. text-align:left;
  7535. }
  7536. #u161168 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:348px;
  7540. top:101px;
  7541. width:140px;
  7542. height:30px;
  7543. display:flex;
  7544. font-family:'Microsoft YaHei', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:14px;
  7548. color:#CCCCCC;
  7549. text-align:left;
  7550. }
  7551. #u161168 .text {
  7552. position:absolute;
  7553. align-self:center;
  7554. padding:2px 8px 2px 8px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u161168_text {
  7559. border-width:0px;
  7560. word-wrap:break-word;
  7561. text-transform:none;
  7562. visibility:hidden;
  7563. }
  7564. #u161169_input {
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:126px;
  7569. height:25px;
  7570. padding:2px 2px 2px 2px;
  7571. font-family:'Microsoft YaHei', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:10px;
  7575. letter-spacing:normal;
  7576. color:#000000;
  7577. vertical-align:none;
  7578. text-align:left;
  7579. text-transform:none;
  7580. background-color:transparent;
  7581. border-color:transparent;
  7582. }
  7583. #u161169_input.disabled {
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:126px;
  7588. height:25px;
  7589. padding:2px 2px 2px 2px;
  7590. font-family:'Microsoft YaHei', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:10px;
  7594. letter-spacing:normal;
  7595. color:#000000;
  7596. vertical-align:none;
  7597. text-align:left;
  7598. text-transform:none;
  7599. background-color:transparent;
  7600. border-color:transparent;
  7601. }
  7602. #u161169_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:126px;
  7608. height:25px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 1);
  7611. border:none;
  7612. border-radius:0px;
  7613. -moz-box-shadow:none;
  7614. -webkit-box-shadow:none;
  7615. box-shadow:none;
  7616. font-family:'Microsoft YaHei', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:10px;
  7620. }
  7621. #u161169 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:355px;
  7625. top:102px;
  7626. width:126px;
  7627. height:25px;
  7628. display:flex;
  7629. font-family:'Microsoft YaHei', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:10px;
  7633. }
  7634. #u161169 .text {
  7635. position:absolute;
  7636. align-self:center;
  7637. padding:2px 2px 2px 2px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u161169_div.disabled {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:126px;
  7647. height:25px;
  7648. background:inherit;
  7649. background-color:rgba(240, 240, 240, 1);
  7650. border:none;
  7651. border-radius:0px;
  7652. -moz-box-shadow:none;
  7653. -webkit-box-shadow:none;
  7654. box-shadow:none;
  7655. font-family:'Microsoft YaHei', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:10px;
  7659. }
  7660. #u161169.disabled {
  7661. }
  7662. #u161170_img {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:11px;
  7668. height:11px;
  7669. }
  7670. #u161170 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:1219px;
  7674. top:364px;
  7675. width:11px;
  7676. height:11px;
  7677. display:flex;
  7678. }
  7679. #u161170 .text {
  7680. position:absolute;
  7681. align-self:center;
  7682. padding:2px 2px 2px 2px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u161170_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u161171 {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:0px;
  7698. height:0px;
  7699. }
  7700. #u161172 {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:0px;
  7706. height:0px;
  7707. }
  7708. #u161173_div {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:211px;
  7714. height:85px;
  7715. background:inherit;
  7716. background-color:rgba(255, 255, 255, 1);
  7717. box-sizing:border-box;
  7718. border-width:1px;
  7719. border-style:solid;
  7720. border-color:rgba(217, 217, 217, 1);
  7721. border-radius:6px;
  7722. -moz-box-shadow:none;
  7723. -webkit-box-shadow:none;
  7724. box-shadow:none;
  7725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7726. font-weight:400;
  7727. font-style:normal;
  7728. font-size:12px;
  7729. color:#666666;
  7730. text-align:left;
  7731. }
  7732. #u161173 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:1320px;
  7736. top:546px;
  7737. width:211px;
  7738. height:85px;
  7739. display:flex;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:12px;
  7744. color:#666666;
  7745. text-align:left;
  7746. }
  7747. #u161173 .text {
  7748. position:absolute;
  7749. align-self:flex-start;
  7750. padding:8px 16px 16px 16px;
  7751. box-sizing:border-box;
  7752. width:100%;
  7753. }
  7754. #u161173_text {
  7755. border-width:0px;
  7756. word-wrap:break-word;
  7757. text-transform:none;
  7758. }
  7759. #u161174_img {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:213px;
  7765. height:2px;
  7766. }
  7767. #u161174 {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:1319px;
  7771. top:577px;
  7772. width:212px;
  7773. height:1px;
  7774. display:flex;
  7775. font-family:'Microsoft YaHei', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. }
  7779. #u161174 .text {
  7780. position:absolute;
  7781. align-self:center;
  7782. padding:2px 2px 2px 2px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u161174_text {
  7787. border-width:0px;
  7788. word-wrap:break-word;
  7789. text-transform:none;
  7790. visibility:hidden;
  7791. }
  7792. #u161175_div {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:0px;
  7796. top:0px;
  7797. width:185px;
  7798. height:18px;
  7799. background:inherit;
  7800. background-color:rgba(255, 255, 255, 0);
  7801. border:none;
  7802. border-radius:0px;
  7803. -moz-box-shadow:none;
  7804. -webkit-box-shadow:none;
  7805. box-shadow:none;
  7806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7807. font-weight:400;
  7808. font-style:normal;
  7809. font-size:12px;
  7810. color:#999999;
  7811. line-height:18px;
  7812. }
  7813. #u161175 {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:1335px;
  7817. top:583px;
  7818. width:185px;
  7819. height:18px;
  7820. display:flex;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:12px;
  7825. color:#999999;
  7826. line-height:18px;
  7827. }
  7828. #u161175 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:0px 0px 0px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u161175_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. }
  7840. #u161176_img {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:11px;
  7846. height:11px;
  7847. }
  7848. #u161176 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:1225px;
  7852. top:349px;
  7853. width:11px;
  7854. height:11px;
  7855. display:flex;
  7856. }
  7857. #u161176 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u161176_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u161177_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:11px;
  7876. height:11px;
  7877. }
  7878. #u161177 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:1220px;
  7882. top:420px;
  7883. width:11px;
  7884. height:11px;
  7885. display:flex;
  7886. }
  7887. #u161177 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u161177_text {
  7895. border-width:0px;
  7896. word-wrap:break-word;
  7897. text-transform:none;
  7898. visibility:hidden;
  7899. }
  7900. #u161178_div {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:499px;
  7906. height:1070px;
  7907. background:inherit;
  7908. background-color:rgba(255, 255, 255, 1);
  7909. border:none;
  7910. border-radius:0px;
  7911. -moz-box-shadow:none;
  7912. -webkit-box-shadow:none;
  7913. box-shadow:none;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:14px;
  7918. line-height:30px;
  7919. }
  7920. #u161178 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:1643px;
  7924. top:51px;
  7925. width:499px;
  7926. height:1070px;
  7927. display:flex;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:14px;
  7932. line-height:30px;
  7933. }
  7934. #u161178 .text {
  7935. position:absolute;
  7936. align-self:flex-start;
  7937. padding:10px 10px 10px 10px;
  7938. box-sizing:border-box;
  7939. width:100%;
  7940. }
  7941. #u161178_text {
  7942. border-width:0px;
  7943. word-wrap:break-word;
  7944. text-transform:none;
  7945. }
  7946. #u161179_div {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:499px;
  7952. height:380px;
  7953. background:inherit;
  7954. background-color:rgba(255, 255, 255, 1);
  7955. box-sizing:border-box;
  7956. border-width:1px;
  7957. border-style:solid;
  7958. border-color:rgba(217, 0, 27, 1);
  7959. border-radius:0px;
  7960. -moz-box-shadow:none;
  7961. -webkit-box-shadow:none;
  7962. box-shadow:none;
  7963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:14px;
  7967. color:#D9001B;
  7968. line-height:30px;
  7969. }
  7970. #u161179 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:2175px;
  7974. top:82px;
  7975. width:499px;
  7976. height:380px;
  7977. display:flex;
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:14px;
  7982. color:#D9001B;
  7983. line-height:30px;
  7984. }
  7985. #u161179 .text {
  7986. position:absolute;
  7987. align-self:flex-start;
  7988. padding:10px 10px 10px 10px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u161179_text {
  7993. border-width:0px;
  7994. word-wrap:break-word;
  7995. text-transform:none;
  7996. }
  7997. #u161180 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:0px;
  8003. height:0px;
  8004. }
  8005. #u161181_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:140px;
  8011. height:30px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 255, 1);
  8014. box-sizing:border-box;
  8015. border-width:1px;
  8016. border-style:solid;
  8017. border-color:rgba(215, 215, 215, 1);
  8018. border-radius:4px;
  8019. -moz-box-shadow:none;
  8020. -webkit-box-shadow:none;
  8021. box-shadow:none;
  8022. font-size:11px;
  8023. }
  8024. #u161181 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:1101px;
  8028. top:103px;
  8029. width:140px;
  8030. height:30px;
  8031. display:flex;
  8032. font-size:11px;
  8033. }
  8034. #u161181 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:2px 2px 2px 2px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u161181_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. visibility:hidden;
  8046. }
  8047. #u161182_input {
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:120px;
  8052. height:23px;
  8053. padding:2px 2px 2px 2px;
  8054. font-family:'ArialMT', 'Arial', sans-serif;
  8055. font-weight:400;
  8056. font-style:normal;
  8057. font-size:11px;
  8058. letter-spacing:normal;
  8059. color:#AAAAAA;
  8060. vertical-align:none;
  8061. text-align:left;
  8062. text-transform:none;
  8063. background-color:transparent;
  8064. border-color:transparent;
  8065. }
  8066. #u161182_input.disabled {
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:120px;
  8071. height:23px;
  8072. padding:2px 2px 2px 2px;
  8073. font-family:'ArialMT', 'Arial', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:11px;
  8077. letter-spacing:normal;
  8078. color:#AAAAAA;
  8079. vertical-align:none;
  8080. text-align:left;
  8081. text-transform:none;
  8082. background-color:transparent;
  8083. border-color:transparent;
  8084. }
  8085. #u161182_div {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:120px;
  8091. height:23px;
  8092. background:inherit;
  8093. background-color:rgba(255, 255, 255, 1);
  8094. border:none;
  8095. border-radius:0px;
  8096. -moz-box-shadow:none;
  8097. -webkit-box-shadow:none;
  8098. box-shadow:none;
  8099. font-size:11px;
  8100. color:#AAAAAA;
  8101. }
  8102. #u161182 {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:1108px;
  8106. top:105px;
  8107. width:120px;
  8108. height:23px;
  8109. display:flex;
  8110. font-size:11px;
  8111. color:#AAAAAA;
  8112. }
  8113. #u161182 .text {
  8114. position:absolute;
  8115. align-self:flex-start;
  8116. padding:2px 2px 2px 2px;
  8117. box-sizing:border-box;
  8118. width:100%;
  8119. }
  8120. #u161182_div.disabled {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:120px;
  8126. height:23px;
  8127. background:inherit;
  8128. background-color:rgba(240, 240, 240, 1);
  8129. border:none;
  8130. border-radius:0px;
  8131. -moz-box-shadow:none;
  8132. -webkit-box-shadow:none;
  8133. box-shadow:none;
  8134. font-size:11px;
  8135. color:#AAAAAA;
  8136. }
  8137. #u161182.disabled {
  8138. }
  8139. .u161182_input_option {
  8140. font-size:11px;
  8141. }
  8142. #u161183 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:0px;
  8148. height:0px;
  8149. }
  8150. #u161184_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:140px;
  8156. height:30px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 1);
  8159. box-sizing:border-box;
  8160. border-width:1px;
  8161. border-style:solid;
  8162. border-color:rgba(201, 201, 201, 1);
  8163. border-radius:4px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-family:'Microsoft YaHei', sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. color:#CCCCCC;
  8172. text-align:left;
  8173. }
  8174. #u161184 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:1251px;
  8178. top:103px;
  8179. width:140px;
  8180. height:30px;
  8181. display:flex;
  8182. font-family:'Microsoft YaHei', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. color:#CCCCCC;
  8187. text-align:left;
  8188. }
  8189. #u161184 .text {
  8190. position:absolute;
  8191. align-self:center;
  8192. padding:2px 8px 2px 8px;
  8193. box-sizing:border-box;
  8194. width:100%;
  8195. }
  8196. #u161184_text {
  8197. border-width:0px;
  8198. word-wrap:break-word;
  8199. text-transform:none;
  8200. visibility:hidden;
  8201. }
  8202. #u161185_input {
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:127px;
  8207. height:25px;
  8208. padding:2px 2px 2px 2px;
  8209. font-family:'Microsoft YaHei', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:10px;
  8213. letter-spacing:normal;
  8214. color:#000000;
  8215. vertical-align:none;
  8216. text-align:left;
  8217. text-transform:none;
  8218. background-color:transparent;
  8219. border-color:transparent;
  8220. }
  8221. #u161185_input.disabled {
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:127px;
  8226. height:25px;
  8227. padding:2px 2px 2px 2px;
  8228. font-family:'Microsoft YaHei', sans-serif;
  8229. font-weight:400;
  8230. font-style:normal;
  8231. font-size:10px;
  8232. letter-spacing:normal;
  8233. color:#000000;
  8234. vertical-align:none;
  8235. text-align:left;
  8236. text-transform:none;
  8237. background-color:transparent;
  8238. border-color:transparent;
  8239. }
  8240. #u161185_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:127px;
  8246. height:25px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 1);
  8249. border:none;
  8250. border-radius:0px;
  8251. -moz-box-shadow:none;
  8252. -webkit-box-shadow:none;
  8253. box-shadow:none;
  8254. font-family:'Microsoft YaHei', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:10px;
  8258. }
  8259. #u161185 {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:1259px;
  8263. top:104px;
  8264. width:127px;
  8265. height:25px;
  8266. display:flex;
  8267. font-family:'Microsoft YaHei', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:10px;
  8271. }
  8272. #u161185 .text {
  8273. position:absolute;
  8274. align-self:center;
  8275. padding:2px 2px 2px 2px;
  8276. box-sizing:border-box;
  8277. width:100%;
  8278. }
  8279. #u161185_div.disabled {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:127px;
  8285. height:25px;
  8286. background:inherit;
  8287. background-color:rgba(240, 240, 240, 1);
  8288. border:none;
  8289. border-radius:0px;
  8290. -moz-box-shadow:none;
  8291. -webkit-box-shadow:none;
  8292. box-shadow:none;
  8293. font-family:'Microsoft YaHei', sans-serif;
  8294. font-weight:400;
  8295. font-style:normal;
  8296. font-size:10px;
  8297. }
  8298. #u161185.disabled {
  8299. }
  8300. #u161186 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:0px;
  8306. height:0px;
  8307. }
  8308. #u161187_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:200px;
  8314. height:1180px;
  8315. background:inherit;
  8316. background-color:rgba(255, 255, 255, 1);
  8317. border:none;
  8318. border-radius:0px;
  8319. -moz-box-shadow:none;
  8320. -webkit-box-shadow:none;
  8321. box-shadow:none;
  8322. }
  8323. #u161187 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:120px;
  8327. top:50px;
  8328. width:200px;
  8329. height:1180px;
  8330. display:flex;
  8331. }
  8332. #u161187 .text {
  8333. position:absolute;
  8334. align-self:center;
  8335. padding:2px 2px 2px 2px;
  8336. box-sizing:border-box;
  8337. width:100%;
  8338. }
  8339. #u161187_text {
  8340. border-width:0px;
  8341. word-wrap:break-word;
  8342. text-transform:none;
  8343. visibility:hidden;
  8344. }
  8345. #u161188_div {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:200px;
  8351. height:60px;
  8352. background:inherit;
  8353. background-color:rgba(224, 231, 247, 1);
  8354. border:none;
  8355. border-radius:0px;
  8356. -moz-box-shadow:none;
  8357. -webkit-box-shadow:none;
  8358. box-shadow:none;
  8359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8360. font-weight:500;
  8361. font-style:normal;
  8362. font-size:18px;
  8363. }
  8364. #u161188 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:120px;
  8368. top:50px;
  8369. width:200px;
  8370. height:60px;
  8371. display:flex;
  8372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8373. font-weight:500;
  8374. font-style:normal;
  8375. font-size:18px;
  8376. }
  8377. #u161188 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:0px 0px 0px 20px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u161188_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. }
  8389. #u161189_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:65px;
  8395. height:22px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 0);
  8398. border:none;
  8399. border-radius:0px;
  8400. -moz-box-shadow:none;
  8401. -webkit-box-shadow:none;
  8402. box-shadow:none;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:16px;
  8407. }
  8408. #u161189 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:147px;
  8412. top:167px;
  8413. width:65px;
  8414. height:22px;
  8415. display:flex;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:16px;
  8420. }
  8421. #u161189 .text {
  8422. position:absolute;
  8423. align-self:flex-start;
  8424. padding:0px 0px 0px 0px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u161189_text {
  8429. border-width:0px;
  8430. white-space:nowrap;
  8431. text-transform:none;
  8432. }
  8433. #u161190_div {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:73px;
  8439. height:17px;
  8440. background:inherit;
  8441. background-color:rgba(255, 255, 255, 0);
  8442. border:none;
  8443. border-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:12px;
  8451. color:#AAAAAA;
  8452. }
  8453. #u161190 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:147px;
  8457. top:130px;
  8458. width:73px;
  8459. height:17px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:12px;
  8465. color:#AAAAAA;
  8466. }
  8467. #u161190 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u161190_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u161191_div {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:65px;
  8485. height:22px;
  8486. background:inherit;
  8487. background-color:rgba(255, 255, 255, 0);
  8488. border:none;
  8489. border-radius:0px;
  8490. -moz-box-shadow:none;
  8491. -webkit-box-shadow:none;
  8492. box-shadow:none;
  8493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8494. font-weight:400;
  8495. font-style:normal;
  8496. font-size:16px;
  8497. }
  8498. #u161191 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:147px;
  8502. top:209px;
  8503. width:65px;
  8504. height:22px;
  8505. display:flex;
  8506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:16px;
  8510. }
  8511. #u161191 .text {
  8512. position:absolute;
  8513. align-self:flex-start;
  8514. padding:0px 0px 0px 0px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u161191_text {
  8519. border-width:0px;
  8520. white-space:nowrap;
  8521. text-transform:none;
  8522. }
  8523. #u161192_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:65px;
  8529. height:22px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 0);
  8532. border:none;
  8533. border-radius:0px;
  8534. -moz-box-shadow:none;
  8535. -webkit-box-shadow:none;
  8536. box-shadow:none;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:16px;
  8541. }
  8542. #u161192 {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:147px;
  8546. top:251px;
  8547. width:65px;
  8548. height:22px;
  8549. display:flex;
  8550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8551. font-weight:400;
  8552. font-style:normal;
  8553. font-size:16px;
  8554. }
  8555. #u161192 .text {
  8556. position:absolute;
  8557. align-self:flex-start;
  8558. padding:0px 0px 0px 0px;
  8559. box-sizing:border-box;
  8560. width:100%;
  8561. }
  8562. #u161192_text {
  8563. border-width:0px;
  8564. white-space:nowrap;
  8565. text-transform:none;
  8566. }
  8567. #u161193_div {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:0px;
  8572. width:65px;
  8573. height:22px;
  8574. background:inherit;
  8575. background-color:rgba(255, 255, 255, 0);
  8576. border:none;
  8577. border-radius:0px;
  8578. -moz-box-shadow:none;
  8579. -webkit-box-shadow:none;
  8580. box-shadow:none;
  8581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8582. font-weight:400;
  8583. font-style:normal;
  8584. font-size:16px;
  8585. }
  8586. #u161193 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:147px;
  8590. top:335px;
  8591. width:65px;
  8592. height:22px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:16px;
  8598. }
  8599. #u161193 .text {
  8600. position:absolute;
  8601. align-self:flex-start;
  8602. padding:0px 0px 0px 0px;
  8603. box-sizing:border-box;
  8604. width:100%;
  8605. }
  8606. #u161193_text {
  8607. border-width:0px;
  8608. white-space:nowrap;
  8609. text-transform:none;
  8610. }
  8611. #u161194_div {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:65px;
  8617. height:22px;
  8618. background:inherit;
  8619. background-color:rgba(255, 255, 255, 0);
  8620. border:none;
  8621. border-radius:0px;
  8622. -moz-box-shadow:none;
  8623. -webkit-box-shadow:none;
  8624. box-shadow:none;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:16px;
  8629. }
  8630. #u161194 {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:147px;
  8634. top:293px;
  8635. width:65px;
  8636. height:22px;
  8637. display:flex;
  8638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8639. font-weight:400;
  8640. font-style:normal;
  8641. font-size:16px;
  8642. }
  8643. #u161194 .text {
  8644. position:absolute;
  8645. align-self:flex-start;
  8646. padding:0px 0px 0px 0px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u161194_text {
  8651. border-width:0px;
  8652. white-space:nowrap;
  8653. text-transform:none;
  8654. }
  8655. #u161195_div {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:65px;
  8661. height:22px;
  8662. background:inherit;
  8663. background-color:rgba(255, 255, 255, 0);
  8664. border:none;
  8665. border-radius:0px;
  8666. -moz-box-shadow:none;
  8667. -webkit-box-shadow:none;
  8668. box-shadow:none;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:16px;
  8673. }
  8674. #u161195 {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:147px;
  8678. top:419px;
  8679. width:65px;
  8680. height:22px;
  8681. display:flex;
  8682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8683. font-weight:400;
  8684. font-style:normal;
  8685. font-size:16px;
  8686. }
  8687. #u161195 .text {
  8688. position:absolute;
  8689. align-self:flex-start;
  8690. padding:0px 0px 0px 0px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u161195_text {
  8695. border-width:0px;
  8696. white-space:nowrap;
  8697. text-transform:none;
  8698. }
  8699. #u161196_div {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:65px;
  8705. height:22px;
  8706. background:inherit;
  8707. background-color:rgba(255, 255, 255, 0);
  8708. border:none;
  8709. border-radius:0px;
  8710. -moz-box-shadow:none;
  8711. -webkit-box-shadow:none;
  8712. box-shadow:none;
  8713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8714. font-weight:400;
  8715. font-style:normal;
  8716. font-size:16px;
  8717. }
  8718. #u161196 {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:147px;
  8722. top:377px;
  8723. width:65px;
  8724. height:22px;
  8725. display:flex;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:16px;
  8730. }
  8731. #u161196 .text {
  8732. position:absolute;
  8733. align-self:flex-start;
  8734. padding:0px 0px 0px 0px;
  8735. box-sizing:border-box;
  8736. width:100%;
  8737. }
  8738. #u161196_text {
  8739. border-width:0px;
  8740. white-space:nowrap;
  8741. text-transform:none;
  8742. }
  8743. #u161197_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:97px;
  8749. height:22px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 0);
  8752. border:none;
  8753. border-radius:0px;
  8754. -moz-box-shadow:none;
  8755. -webkit-box-shadow:none;
  8756. box-shadow:none;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:16px;
  8761. }
  8762. #u161197 {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:147px;
  8766. top:642px;
  8767. width:97px;
  8768. height:22px;
  8769. display:flex;
  8770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8771. font-weight:400;
  8772. font-style:normal;
  8773. font-size:16px;
  8774. }
  8775. #u161197 .text {
  8776. position:absolute;
  8777. align-self:flex-start;
  8778. padding:0px 0px 0px 0px;
  8779. box-sizing:border-box;
  8780. width:100%;
  8781. }
  8782. #u161197_text {
  8783. border-width:0px;
  8784. white-space:nowrap;
  8785. text-transform:none;
  8786. }
  8787. #u161198_img {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:201px;
  8793. height:2px;
  8794. }
  8795. #u161198 {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:120px;
  8799. top:543px;
  8800. width:200px;
  8801. height:1px;
  8802. display:flex;
  8803. }
  8804. #u161198 .text {
  8805. position:absolute;
  8806. align-self:center;
  8807. padding:2px 2px 2px 2px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u161198_text {
  8812. border-width:0px;
  8813. word-wrap:break-word;
  8814. text-transform:none;
  8815. visibility:hidden;
  8816. }
  8817. #u161199_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:65px;
  8823. height:22px;
  8824. background:inherit;
  8825. background-color:rgba(255, 255, 255, 0);
  8826. border:none;
  8827. border-radius:0px;
  8828. -moz-box-shadow:none;
  8829. -webkit-box-shadow:none;
  8830. box-shadow:none;
  8831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8832. font-weight:400;
  8833. font-style:normal;
  8834. font-size:16px;
  8835. }
  8836. #u161199 {
  8837. border-width:0px;
  8838. position:absolute;
  8839. left:147px;
  8840. top:600px;
  8841. width:65px;
  8842. height:22px;
  8843. display:flex;
  8844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8845. font-weight:400;
  8846. font-style:normal;
  8847. font-size:16px;
  8848. }
  8849. #u161199 .text {
  8850. position:absolute;
  8851. align-self:flex-start;
  8852. padding:0px 0px 0px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u161199_text {
  8857. border-width:0px;
  8858. white-space:nowrap;
  8859. text-transform:none;
  8860. }
  8861. #u161200_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:73px;
  8867. height:17px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 0);
  8870. border:none;
  8871. border-radius:0px;
  8872. -moz-box-shadow:none;
  8873. -webkit-box-shadow:none;
  8874. box-shadow:none;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. font-size:12px;
  8879. color:#AAAAAA;
  8880. }
  8881. #u161200 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:147px;
  8885. top:563px;
  8886. width:73px;
  8887. height:17px;
  8888. display:flex;
  8889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:12px;
  8893. color:#AAAAAA;
  8894. }
  8895. #u161200 .text {
  8896. position:absolute;
  8897. align-self:flex-start;
  8898. padding:0px 0px 0px 0px;
  8899. box-sizing:border-box;
  8900. width:100%;
  8901. }
  8902. #u161200_text {
  8903. border-width:0px;
  8904. white-space:nowrap;
  8905. text-transform:none;
  8906. }
  8907. #u161201_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:65px;
  8913. height:22px;
  8914. background:inherit;
  8915. background-color:rgba(255, 255, 255, 0);
  8916. border:none;
  8917. border-radius:0px;
  8918. -moz-box-shadow:none;
  8919. -webkit-box-shadow:none;
  8920. box-shadow:none;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:16px;
  8925. }
  8926. #u161201 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:147px;
  8930. top:461px;
  8931. width:65px;
  8932. height:22px;
  8933. display:flex;
  8934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8935. font-weight:400;
  8936. font-style:normal;
  8937. font-size:16px;
  8938. }
  8939. #u161201 .text {
  8940. position:absolute;
  8941. align-self:flex-start;
  8942. padding:0px 0px 0px 0px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u161201_text {
  8947. border-width:0px;
  8948. white-space:nowrap;
  8949. text-transform:none;
  8950. }
  8951. #u161202_div {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:97px;
  8957. height:22px;
  8958. background:inherit;
  8959. background-color:rgba(255, 255, 255, 0);
  8960. border:none;
  8961. border-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:16px;
  8969. }
  8970. #u161202 {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:147px;
  8974. top:684px;
  8975. width:97px;
  8976. height:22px;
  8977. display:flex;
  8978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8979. font-weight:400;
  8980. font-style:normal;
  8981. font-size:16px;
  8982. }
  8983. #u161202 .text {
  8984. position:absolute;
  8985. align-self:flex-start;
  8986. padding:0px 0px 0px 0px;
  8987. box-sizing:border-box;
  8988. width:100%;
  8989. }
  8990. #u161202_text {
  8991. border-width:0px;
  8992. white-space:nowrap;
  8993. text-transform:none;
  8994. }
  8995. #u161203_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:97px;
  9001. height:22px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 0);
  9004. border:none;
  9005. border-radius:0px;
  9006. -moz-box-shadow:none;
  9007. -webkit-box-shadow:none;
  9008. box-shadow:none;
  9009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9010. font-weight:400;
  9011. font-style:normal;
  9012. font-size:16px;
  9013. }
  9014. #u161203 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:147px;
  9018. top:726px;
  9019. width:97px;
  9020. height:22px;
  9021. display:flex;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:16px;
  9026. }
  9027. #u161203 .text {
  9028. position:absolute;
  9029. align-self:flex-start;
  9030. padding:0px 0px 0px 0px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u161203_text {
  9035. border-width:0px;
  9036. white-space:nowrap;
  9037. text-transform:none;
  9038. }
  9039. #u161204_div {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:97px;
  9045. height:22px;
  9046. background:inherit;
  9047. background-color:rgba(255, 255, 255, 0);
  9048. border:none;
  9049. border-radius:0px;
  9050. -moz-box-shadow:none;
  9051. -webkit-box-shadow:none;
  9052. box-shadow:none;
  9053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9054. font-weight:400;
  9055. font-style:normal;
  9056. font-size:16px;
  9057. }
  9058. #u161204 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:147px;
  9062. top:909px;
  9063. width:97px;
  9064. height:22px;
  9065. display:flex;
  9066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9067. font-weight:400;
  9068. font-style:normal;
  9069. font-size:16px;
  9070. }
  9071. #u161204 .text {
  9072. position:absolute;
  9073. align-self:flex-start;
  9074. padding:0px 0px 0px 0px;
  9075. box-sizing:border-box;
  9076. width:100%;
  9077. }
  9078. #u161204_text {
  9079. border-width:0px;
  9080. white-space:nowrap;
  9081. text-transform:none;
  9082. }
  9083. #u161205_img {
  9084. border-width:0px;
  9085. position:absolute;
  9086. left:0px;
  9087. top:0px;
  9088. width:201px;
  9089. height:2px;
  9090. }
  9091. #u161205 {
  9092. border-width:0px;
  9093. position:absolute;
  9094. left:120px;
  9095. top:810px;
  9096. width:200px;
  9097. height:1px;
  9098. display:flex;
  9099. }
  9100. #u161205 .text {
  9101. position:absolute;
  9102. align-self:center;
  9103. padding:2px 2px 2px 2px;
  9104. box-sizing:border-box;
  9105. width:100%;
  9106. }
  9107. #u161205_text {
  9108. border-width:0px;
  9109. word-wrap:break-word;
  9110. text-transform:none;
  9111. visibility:hidden;
  9112. }
  9113. #u161206_div {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:0px;
  9117. top:0px;
  9118. width:97px;
  9119. height:22px;
  9120. background:inherit;
  9121. background-color:rgba(255, 255, 255, 0);
  9122. border:none;
  9123. border-radius:0px;
  9124. -moz-box-shadow:none;
  9125. -webkit-box-shadow:none;
  9126. box-shadow:none;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:16px;
  9131. }
  9132. #u161206 {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:147px;
  9136. top:867px;
  9137. width:97px;
  9138. height:22px;
  9139. display:flex;
  9140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:16px;
  9144. }
  9145. #u161206 .text {
  9146. position:absolute;
  9147. align-self:flex-start;
  9148. padding:0px 0px 0px 0px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u161206_text {
  9153. border-width:0px;
  9154. white-space:nowrap;
  9155. text-transform:none;
  9156. }
  9157. #u161207_div {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:73px;
  9163. height:17px;
  9164. background:inherit;
  9165. background-color:rgba(255, 255, 255, 0);
  9166. border:none;
  9167. border-radius:0px;
  9168. -moz-box-shadow:none;
  9169. -webkit-box-shadow:none;
  9170. box-shadow:none;
  9171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9172. font-weight:400;
  9173. font-style:normal;
  9174. font-size:12px;
  9175. color:#AAAAAA;
  9176. }
  9177. #u161207 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:147px;
  9181. top:830px;
  9182. width:73px;
  9183. height:17px;
  9184. display:flex;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:12px;
  9189. color:#AAAAAA;
  9190. }
  9191. #u161207 .text {
  9192. position:absolute;
  9193. align-self:flex-start;
  9194. padding:0px 0px 0px 0px;
  9195. box-sizing:border-box;
  9196. width:100%;
  9197. }
  9198. #u161207_text {
  9199. border-width:0px;
  9200. white-space:nowrap;
  9201. text-transform:none;
  9202. }
  9203. #u161208_div {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:0px;
  9207. top:0px;
  9208. width:97px;
  9209. height:22px;
  9210. background:inherit;
  9211. background-color:rgba(255, 255, 255, 0);
  9212. border:none;
  9213. border-radius:0px;
  9214. -moz-box-shadow:none;
  9215. -webkit-box-shadow:none;
  9216. box-shadow:none;
  9217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9218. font-weight:400;
  9219. font-style:normal;
  9220. font-size:16px;
  9221. }
  9222. #u161208 {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:147px;
  9226. top:768px;
  9227. width:97px;
  9228. height:22px;
  9229. display:flex;
  9230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9231. font-weight:400;
  9232. font-style:normal;
  9233. font-size:16px;
  9234. }
  9235. #u161208 .text {
  9236. position:absolute;
  9237. align-self:flex-start;
  9238. padding:0px 0px 0px 0px;
  9239. box-sizing:border-box;
  9240. width:100%;
  9241. }
  9242. #u161208_text {
  9243. border-width:0px;
  9244. white-space:nowrap;
  9245. text-transform:none;
  9246. }
  9247. #u161209_div {
  9248. border-width:0px;
  9249. position:absolute;
  9250. left:0px;
  9251. top:0px;
  9252. width:65px;
  9253. height:22px;
  9254. background:inherit;
  9255. background-color:rgba(255, 255, 255, 0);
  9256. border:none;
  9257. border-radius:0px;
  9258. -moz-box-shadow:none;
  9259. -webkit-box-shadow:none;
  9260. box-shadow:none;
  9261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9262. font-weight:400;
  9263. font-style:normal;
  9264. font-size:16px;
  9265. }
  9266. #u161209 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:147px;
  9270. top:503px;
  9271. width:65px;
  9272. height:22px;
  9273. display:flex;
  9274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9275. font-weight:400;
  9276. font-style:normal;
  9277. font-size:16px;
  9278. }
  9279. #u161209 .text {
  9280. position:absolute;
  9281. align-self:flex-start;
  9282. padding:0px 0px 0px 0px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u161209_text {
  9287. border-width:0px;
  9288. white-space:nowrap;
  9289. text-transform:none;
  9290. }