styles.css 257 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434
  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. #u851_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. #u851 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u851 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u851_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u852_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. #u852 {
  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. #u852 .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. #u852_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u853_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. #u853 {
  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. #u853 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u853_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u854 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u855_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u855 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u855 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u855_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u856_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. #u856 {
  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. #u856 .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. #u856_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u857_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. #u857 {
  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. #u857 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u857_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u858 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u859_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u859 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u859 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u859_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u860_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u860 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u860 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u860_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u861 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u862_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u862 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u862 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u862_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u863_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u863 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u863 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u863_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u864 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u865_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u865 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u865 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u865_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u866_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u866 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u866 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u866_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u867 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u868_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u868 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u868 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u868_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u869_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u869 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u869 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u869_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u870 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u871_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u871 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u871 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u871_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u872_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u872 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u872 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u872_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u873 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u874_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u874 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u874 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u874_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u875_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u875 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u875 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u875_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u876 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u877_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u877 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u877 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u877_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u878_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u878 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u878 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u878_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u879 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u880_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u880 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u880 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u880_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u881_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u881 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u881 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u881_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u882 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u883_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u883 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u883 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u883_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u884_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u884 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u884 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u884_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u885 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u886_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u886 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u886 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u886_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u887_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u887 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u887 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u887_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u888 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u889_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u889 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u889 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u889_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u890_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u890 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u890 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u890_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u891 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u892_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u892_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u892_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u892 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u892 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u892_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u892.disabled {
  1276. }
  1277. .u892_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u893_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u893 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u893 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u893_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u894_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u894 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u894 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u894_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u895_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u895 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u895 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u895_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u896 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u897_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u897 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u897 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u897_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u898_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u898 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u898 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u898_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u899_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u899 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u899 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u899_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u900_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u900 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u900 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u900_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u901_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u901 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u901 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u901_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u902 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u903_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u903 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u903 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u903_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u904_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u904 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u904 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u904_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u905_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1479px;
  1648. height:1189px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1656. }
  1657. #u905 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:121px;
  1661. top:51px;
  1662. width:1479px;
  1663. height:1189px;
  1664. display:flex;
  1665. }
  1666. #u905 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u905_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u906_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:25px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1694. font-weight:500;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. }
  1698. #u906 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:153px;
  1702. top:71px;
  1703. width:73px;
  1704. height:25px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1707. font-weight:500;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u906 .text {
  1712. position:absolute;
  1713. align-self:flex-start;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u906_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u907 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:0px;
  1729. height:0px;
  1730. }
  1731. #u908_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:353px;
  1737. height:120px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 1);
  1740. border:none;
  1741. border-radius:4px;
  1742. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1743. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1744. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1745. }
  1746. #u908 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:153px;
  1750. top:106px;
  1751. width:353px;
  1752. height:120px;
  1753. display:flex;
  1754. }
  1755. #u908 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 2px 2px 2px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u908_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. visibility:hidden;
  1767. }
  1768. #u909_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:109px;
  1774. height:25px;
  1775. background:inherit;
  1776. background-color:rgba(255, 255, 255, 0);
  1777. border:none;
  1778. border-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1783. font-weight:500;
  1784. font-style:normal;
  1785. font-size:18px;
  1786. }
  1787. #u909 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:177px;
  1791. top:117px;
  1792. width:109px;
  1793. height:25px;
  1794. display:flex;
  1795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1796. font-weight:500;
  1797. font-style:normal;
  1798. font-size:18px;
  1799. }
  1800. #u909 .text {
  1801. position:absolute;
  1802. align-self:flex-start;
  1803. padding:0px 0px 0px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u909_text {
  1808. border-width:0px;
  1809. white-space:nowrap;
  1810. text-transform:none;
  1811. }
  1812. #u910_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:43px;
  1818. height:40px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 0);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. line-height:20px;
  1830. }
  1831. #u910 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:177px;
  1835. top:162px;
  1836. width:43px;
  1837. height:40px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. line-height:20px;
  1843. }
  1844. #u910 .text {
  1845. position:absolute;
  1846. align-self:flex-start;
  1847. padding:0px 0px 0px 0px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u910_text {
  1852. border-width:0px;
  1853. white-space:nowrap;
  1854. text-transform:none;
  1855. }
  1856. #u911_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:73px;
  1862. height:25px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 0);
  1865. border:none;
  1866. border-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1871. font-weight:500;
  1872. font-style:normal;
  1873. font-size:18px;
  1874. }
  1875. #u911 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:153px;
  1879. top:260px;
  1880. width:73px;
  1881. height:25px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1884. font-weight:500;
  1885. font-style:normal;
  1886. font-size:18px;
  1887. }
  1888. #u911 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u911_text {
  1896. border-width:0px;
  1897. white-space:nowrap;
  1898. text-transform:none;
  1899. }
  1900. #u912 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:0px;
  1906. height:0px;
  1907. }
  1908. #u913_div {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:353px;
  1914. height:120px;
  1915. background:inherit;
  1916. background-color:rgba(255, 255, 255, 1);
  1917. border:none;
  1918. border-radius:4px;
  1919. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1920. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1921. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1922. }
  1923. #u913 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:526px;
  1927. top:106px;
  1928. width:353px;
  1929. height:120px;
  1930. display:flex;
  1931. }
  1932. #u913 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u913_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u914_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:109px;
  1951. height:25px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 0);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1960. font-weight:500;
  1961. font-style:normal;
  1962. font-size:18px;
  1963. }
  1964. #u914 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:550px;
  1968. top:117px;
  1969. width:109px;
  1970. height:25px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1973. font-weight:500;
  1974. font-style:normal;
  1975. font-size:18px;
  1976. }
  1977. #u914 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u914_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u915_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:43px;
  1995. height:40px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. line-height:20px;
  2007. }
  2008. #u915 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:550px;
  2012. top:162px;
  2013. width:43px;
  2014. height:40px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. line-height:20px;
  2020. }
  2021. #u915 .text {
  2022. position:absolute;
  2023. align-self:flex-start;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u915_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u916_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:519px;
  2039. height:20px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 0);
  2042. border:none;
  2043. border-radius:0px;
  2044. -moz-box-shadow:none;
  2045. -webkit-box-shadow:none;
  2046. box-shadow:none;
  2047. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2048. font-weight:500;
  2049. font-style:normal;
  2050. }
  2051. #u916 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:153px;
  2055. top:306px;
  2056. width:519px;
  2057. height:20px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2060. font-weight:500;
  2061. font-style:normal;
  2062. }
  2063. #u916 .text {
  2064. position:absolute;
  2065. align-self:flex-start;
  2066. padding:0px 0px 0px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u916_text {
  2071. border-width:0px;
  2072. white-space:nowrap;
  2073. text-transform:none;
  2074. }
  2075. #u917 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:0px;
  2081. height:0px;
  2082. }
  2083. #u918_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:240px;
  2089. height:80px;
  2090. background:inherit;
  2091. background-color:rgba(242, 242, 242, 1);
  2092. border:none;
  2093. border-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2098. font-weight:700;
  2099. font-style:normal;
  2100. }
  2101. #u918 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:153px;
  2105. top:336px;
  2106. width:240px;
  2107. height:80px;
  2108. display:flex;
  2109. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2110. font-weight:700;
  2111. font-style:normal;
  2112. }
  2113. #u918 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 2px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u918_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. visibility:hidden;
  2125. }
  2126. #u919_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:50px;
  2132. height:53px;
  2133. }
  2134. #u919 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:169px;
  2138. top:349px;
  2139. width:50px;
  2140. height:53px;
  2141. display:flex;
  2142. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2143. font-weight:700;
  2144. font-style:normal;
  2145. }
  2146. #u919 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 2px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u919_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u920 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:0px;
  2165. height:0px;
  2166. }
  2167. #u921_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:73px;
  2173. height:25px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border:none;
  2177. border-left:0px;
  2178. border-top:0px;
  2179. border-right:0px;
  2180. border-radius:0px;
  2181. border-bottom-right-radius:0px;
  2182. border-bottom-left-radius:0px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:18px;
  2190. }
  2191. #u921 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:234px;
  2195. top:352px;
  2196. width:73px;
  2197. height:25px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:18px;
  2203. }
  2204. #u921 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:0px 0px 0px 0px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u921_text {
  2212. border-width:0px;
  2213. white-space:nowrap;
  2214. text-transform:none;
  2215. }
  2216. #u922_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:181px;
  2222. height:17px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 0);
  2225. border:none;
  2226. border-left:0px;
  2227. border-top:0px;
  2228. border-right:0px;
  2229. border-radius:0px;
  2230. border-bottom-right-radius:0px;
  2231. border-bottom-left-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#7F7F7F;
  2240. }
  2241. #u922 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:234px;
  2245. top:382px;
  2246. width:181px;
  2247. height:17px;
  2248. display:flex;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:12px;
  2253. color:#7F7F7F;
  2254. }
  2255. #u922 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:0px 0px 0px 0px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u922_text {
  2263. border-width:0px;
  2264. white-space:nowrap;
  2265. text-transform:none;
  2266. }
  2267. #u923 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:0px;
  2273. height:0px;
  2274. }
  2275. #u924_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:240px;
  2281. height:80px;
  2282. background:inherit;
  2283. background-color:rgba(242, 242, 242, 1);
  2284. border:none;
  2285. border-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2290. font-weight:700;
  2291. font-style:normal;
  2292. }
  2293. #u924 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:423px;
  2297. top:336px;
  2298. width:240px;
  2299. height:80px;
  2300. display:flex;
  2301. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2302. font-weight:700;
  2303. font-style:normal;
  2304. }
  2305. #u924 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u924_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u925_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:50px;
  2324. height:53px;
  2325. }
  2326. #u925 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:439px;
  2330. top:349px;
  2331. width:50px;
  2332. height:53px;
  2333. display:flex;
  2334. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2335. font-weight:700;
  2336. font-style:normal;
  2337. }
  2338. #u925 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 2px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u925_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u926 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:0px;
  2357. height:0px;
  2358. }
  2359. #u927_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:73px;
  2365. height:25px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-left:0px;
  2370. border-top:0px;
  2371. border-right:0px;
  2372. border-radius:0px;
  2373. border-bottom-right-radius:0px;
  2374. border-bottom-left-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:18px;
  2382. }
  2383. #u927 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:504px;
  2387. top:352px;
  2388. width:73px;
  2389. height:25px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:18px;
  2395. }
  2396. #u927 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:0px 0px 0px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u927_text {
  2404. border-width:0px;
  2405. white-space:nowrap;
  2406. text-transform:none;
  2407. }
  2408. #u928_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:193px;
  2414. height:17px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 0);
  2417. border:none;
  2418. border-left:0px;
  2419. border-top:0px;
  2420. border-right:0px;
  2421. border-radius:0px;
  2422. border-bottom-right-radius:0px;
  2423. border-bottom-left-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#7F7F7F;
  2432. }
  2433. #u928 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:504px;
  2437. top:382px;
  2438. width:193px;
  2439. height:17px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. color:#7F7F7F;
  2446. }
  2447. #u928 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:0px 0px 0px 0px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u928_text {
  2455. border-width:0px;
  2456. white-space:nowrap;
  2457. text-transform:none;
  2458. }
  2459. #u929 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u930_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:240px;
  2473. height:80px;
  2474. background:inherit;
  2475. background-color:rgba(242, 242, 242, 1);
  2476. border:none;
  2477. border-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. }
  2482. #u930 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:157px;
  2486. top:1132px;
  2487. width:240px;
  2488. height:80px;
  2489. display:flex;
  2490. }
  2491. #u930 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u930_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u931_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:50px;
  2510. height:53px;
  2511. }
  2512. #u931 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:173px;
  2516. top:1145px;
  2517. width:50px;
  2518. height:53px;
  2519. display:flex;
  2520. }
  2521. #u931 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:2px 2px 2px 2px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u931_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. visibility:hidden;
  2533. }
  2534. #u932 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:0px;
  2540. height:0px;
  2541. }
  2542. #u933_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:73px;
  2548. height:25px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:18px;
  2565. }
  2566. #u933 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:238px;
  2570. top:1148px;
  2571. width:73px;
  2572. height:25px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:18px;
  2578. }
  2579. #u933 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u933_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u934_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:169px;
  2597. height:17px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border:none;
  2601. border-left:0px;
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-radius:0px;
  2605. border-bottom-right-radius:0px;
  2606. border-bottom-left-radius:0px;
  2607. -moz-box-shadow:none;
  2608. -webkit-box-shadow:none;
  2609. box-shadow:none;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:12px;
  2614. color:#7F7F7F;
  2615. }
  2616. #u934 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:238px;
  2620. top:1178px;
  2621. width:169px;
  2622. height:17px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. color:#7F7F7F;
  2629. }
  2630. #u934 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u934_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u935 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:0px;
  2648. height:0px;
  2649. }
  2650. #u936_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:240px;
  2656. height:80px;
  2657. background:inherit;
  2658. background-color:rgba(242, 242, 242, 1);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. }
  2665. #u936 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:694px;
  2669. top:336px;
  2670. width:240px;
  2671. height:80px;
  2672. display:flex;
  2673. }
  2674. #u936 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 2px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u936_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u937_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:50px;
  2693. height:53px;
  2694. }
  2695. #u937 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:710px;
  2699. top:349px;
  2700. width:50px;
  2701. height:53px;
  2702. display:flex;
  2703. }
  2704. #u937 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u937_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u938 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:0px;
  2723. height:0px;
  2724. }
  2725. #u939_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:73px;
  2731. height:25px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 0);
  2734. border:none;
  2735. border-left:0px;
  2736. border-top:0px;
  2737. border-right:0px;
  2738. border-radius:0px;
  2739. border-bottom-right-radius:0px;
  2740. border-bottom-left-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:18px;
  2748. }
  2749. #u939 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:775px;
  2753. top:352px;
  2754. width:73px;
  2755. height:25px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:18px;
  2761. }
  2762. #u939 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u939_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u940_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:121px;
  2780. height:17px;
  2781. background:inherit;
  2782. background-color:rgba(255, 255, 255, 0);
  2783. border:none;
  2784. border-left:0px;
  2785. border-top:0px;
  2786. border-right:0px;
  2787. border-radius:0px;
  2788. border-bottom-right-radius:0px;
  2789. border-bottom-left-radius:0px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. color:#7F7F7F;
  2798. }
  2799. #u940 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:775px;
  2803. top:382px;
  2804. width:121px;
  2805. height:17px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#7F7F7F;
  2812. }
  2813. #u940 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:0px 0px 0px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u940_text {
  2821. border-width:0px;
  2822. white-space:nowrap;
  2823. text-transform:none;
  2824. }
  2825. #u941 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:0px;
  2831. height:0px;
  2832. }
  2833. #u942_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:240px;
  2839. height:80px;
  2840. background:inherit;
  2841. background-color:rgba(242, 242, 242, 1);
  2842. border:none;
  2843. border-radius:0px;
  2844. -moz-box-shadow:none;
  2845. -webkit-box-shadow:none;
  2846. box-shadow:none;
  2847. }
  2848. #u942 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:964px;
  2852. top:336px;
  2853. width:240px;
  2854. height:80px;
  2855. display:flex;
  2856. }
  2857. #u942 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u942_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. visibility:hidden;
  2869. }
  2870. #u943_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:50px;
  2876. height:53px;
  2877. }
  2878. #u943 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:980px;
  2882. top:349px;
  2883. width:50px;
  2884. height:53px;
  2885. display:flex;
  2886. }
  2887. #u943 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u943_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u944 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:0px;
  2906. height:0px;
  2907. }
  2908. #u945_div {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:73px;
  2914. height:25px;
  2915. background:inherit;
  2916. background-color:rgba(255, 255, 255, 0);
  2917. border:none;
  2918. border-left:0px;
  2919. border-top:0px;
  2920. border-right:0px;
  2921. border-radius:0px;
  2922. border-bottom-right-radius:0px;
  2923. border-bottom-left-radius:0px;
  2924. -moz-box-shadow:none;
  2925. -webkit-box-shadow:none;
  2926. box-shadow:none;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:18px;
  2931. }
  2932. #u945 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:1045px;
  2936. top:352px;
  2937. width:73px;
  2938. height:25px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:18px;
  2944. }
  2945. #u945 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:0px 0px 0px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u945_text {
  2953. border-width:0px;
  2954. white-space:nowrap;
  2955. text-transform:none;
  2956. }
  2957. #u946_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:181px;
  2963. height:17px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border:none;
  2967. border-left:0px;
  2968. border-top:0px;
  2969. border-right:0px;
  2970. border-radius:0px;
  2971. border-bottom-right-radius:0px;
  2972. border-bottom-left-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#7F7F7F;
  2981. }
  2982. #u946 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:1045px;
  2986. top:382px;
  2987. width:181px;
  2988. height:17px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#7F7F7F;
  2995. }
  2996. #u946 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u946_text {
  3004. border-width:0px;
  3005. white-space:nowrap;
  3006. text-transform:none;
  3007. }
  3008. #u947 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:0px;
  3014. height:0px;
  3015. }
  3016. #u948_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:240px;
  3022. height:80px;
  3023. background:inherit;
  3024. background-color:rgba(242, 242, 242, 1);
  3025. border:none;
  3026. border-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. }
  3031. #u948 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:1234px;
  3035. top:336px;
  3036. width:240px;
  3037. height:80px;
  3038. display:flex;
  3039. }
  3040. #u948 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u948_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u949_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:50px;
  3059. height:53px;
  3060. }
  3061. #u949 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1250px;
  3065. top:349px;
  3066. width:50px;
  3067. height:53px;
  3068. display:flex;
  3069. }
  3070. #u949 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u949_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u950 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:0px;
  3089. height:0px;
  3090. }
  3091. #u951_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:73px;
  3097. height:25px;
  3098. background:inherit;
  3099. background-color:rgba(255, 255, 255, 0);
  3100. border:none;
  3101. border-left:0px;
  3102. border-top:0px;
  3103. border-right:0px;
  3104. border-radius:0px;
  3105. border-bottom-right-radius:0px;
  3106. border-bottom-left-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:18px;
  3114. }
  3115. #u951 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:1315px;
  3119. top:352px;
  3120. width:73px;
  3121. height:25px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:18px;
  3127. }
  3128. #u951 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:0px 0px 0px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u951_text {
  3136. border-width:0px;
  3137. white-space:nowrap;
  3138. text-transform:none;
  3139. }
  3140. #u952_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:205px;
  3146. height:17px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 0);
  3149. border:none;
  3150. border-left:0px;
  3151. border-top:0px;
  3152. border-right:0px;
  3153. border-radius:0px;
  3154. border-bottom-right-radius:0px;
  3155. border-bottom-left-radius:0px;
  3156. -moz-box-shadow:none;
  3157. -webkit-box-shadow:none;
  3158. box-shadow:none;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. color:#7F7F7F;
  3164. }
  3165. #u952 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1315px;
  3169. top:382px;
  3170. width:205px;
  3171. height:17px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. color:#7F7F7F;
  3178. }
  3179. #u952 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:0px 0px 0px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u952_text {
  3187. border-width:0px;
  3188. white-space:nowrap;
  3189. text-transform:none;
  3190. }
  3191. #u953 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:0px;
  3197. height:0px;
  3198. }
  3199. #u954_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:240px;
  3205. height:80px;
  3206. background:inherit;
  3207. background-color:rgba(242, 242, 242, 1);
  3208. border:none;
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. }
  3214. #u954 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:964px;
  3218. top:436px;
  3219. width:240px;
  3220. height:80px;
  3221. display:flex;
  3222. }
  3223. #u954 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u954_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u955_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:50px;
  3242. height:53px;
  3243. }
  3244. #u955 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:980px;
  3248. top:449px;
  3249. width:50px;
  3250. height:53px;
  3251. display:flex;
  3252. }
  3253. #u955 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u955_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u956 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:0px;
  3272. height:0px;
  3273. }
  3274. #u957_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:73px;
  3280. height:25px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-left:0px;
  3285. border-top:0px;
  3286. border-right:0px;
  3287. border-radius:0px;
  3288. border-bottom-right-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:18px;
  3297. }
  3298. #u957 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:1045px;
  3302. top:452px;
  3303. width:73px;
  3304. height:25px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:18px;
  3310. }
  3311. #u957 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u957_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u958_div {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:169px;
  3329. height:17px;
  3330. background:inherit;
  3331. background-color:rgba(255, 255, 255, 0);
  3332. border:none;
  3333. border-left:0px;
  3334. border-top:0px;
  3335. border-right:0px;
  3336. border-radius:0px;
  3337. border-bottom-right-radius:0px;
  3338. border-bottom-left-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:12px;
  3346. color:#7F7F7F;
  3347. }
  3348. #u958 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:1045px;
  3352. top:482px;
  3353. width:169px;
  3354. height:17px;
  3355. display:flex;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:12px;
  3360. color:#7F7F7F;
  3361. }
  3362. #u958 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:0px 0px 0px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u958_text {
  3370. border-width:0px;
  3371. white-space:nowrap;
  3372. text-transform:none;
  3373. }
  3374. #u959 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:0px;
  3380. height:0px;
  3381. }
  3382. #u960_div {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:240px;
  3388. height:80px;
  3389. background:inherit;
  3390. background-color:rgba(242, 242, 242, 1);
  3391. border:none;
  3392. border-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. }
  3397. #u960 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:423px;
  3401. top:436px;
  3402. width:240px;
  3403. height:80px;
  3404. display:flex;
  3405. }
  3406. #u960 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 2px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u960_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u961_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:50px;
  3425. height:53px;
  3426. }
  3427. #u961 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:439px;
  3431. top:449px;
  3432. width:50px;
  3433. height:53px;
  3434. display:flex;
  3435. }
  3436. #u961 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u961_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u962 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:0px;
  3455. height:0px;
  3456. }
  3457. #u963_div {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:73px;
  3463. height:25px;
  3464. background:inherit;
  3465. background-color:rgba(255, 255, 255, 0);
  3466. border:none;
  3467. border-left:0px;
  3468. border-top:0px;
  3469. border-right:0px;
  3470. border-radius:0px;
  3471. border-bottom-right-radius:0px;
  3472. border-bottom-left-radius:0px;
  3473. -moz-box-shadow:none;
  3474. -webkit-box-shadow:none;
  3475. box-shadow:none;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:18px;
  3480. }
  3481. #u963 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:504px;
  3485. top:452px;
  3486. width:73px;
  3487. height:25px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:18px;
  3493. }
  3494. #u963 .text {
  3495. position:absolute;
  3496. align-self:center;
  3497. padding:0px 0px 0px 0px;
  3498. box-sizing:border-box;
  3499. width:100%;
  3500. }
  3501. #u963_text {
  3502. border-width:0px;
  3503. white-space:nowrap;
  3504. text-transform:none;
  3505. }
  3506. #u964_div {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:181px;
  3512. height:17px;
  3513. background:inherit;
  3514. background-color:rgba(255, 255, 255, 0);
  3515. border:none;
  3516. border-left:0px;
  3517. border-top:0px;
  3518. border-right:0px;
  3519. border-radius:0px;
  3520. border-bottom-right-radius:0px;
  3521. border-bottom-left-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. color:#7F7F7F;
  3530. }
  3531. #u964 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:504px;
  3535. top:482px;
  3536. width:181px;
  3537. height:17px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#7F7F7F;
  3544. }
  3545. #u964 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:0px 0px 0px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u964_text {
  3553. border-width:0px;
  3554. white-space:nowrap;
  3555. text-transform:none;
  3556. }
  3557. #u965 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:0px;
  3563. height:0px;
  3564. }
  3565. #u966_div {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:240px;
  3571. height:80px;
  3572. background:inherit;
  3573. background-color:rgba(242, 242, 242, 1);
  3574. border:none;
  3575. border-radius:0px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. }
  3580. #u966 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:694px;
  3584. top:436px;
  3585. width:240px;
  3586. height:80px;
  3587. display:flex;
  3588. }
  3589. #u966 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u966_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u967_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:50px;
  3608. height:53px;
  3609. }
  3610. #u967 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:710px;
  3614. top:449px;
  3615. width:50px;
  3616. height:53px;
  3617. display:flex;
  3618. }
  3619. #u967 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u967_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u968 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:0px;
  3638. height:0px;
  3639. }
  3640. #u969_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:73px;
  3646. height:25px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 255, 0);
  3649. border:none;
  3650. border-left:0px;
  3651. border-top:0px;
  3652. border-right:0px;
  3653. border-radius:0px;
  3654. border-bottom-right-radius:0px;
  3655. border-bottom-left-radius:0px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:18px;
  3663. }
  3664. #u969 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:775px;
  3668. top:452px;
  3669. width:73px;
  3670. height:25px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:18px;
  3676. }
  3677. #u969 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:0px 0px 0px 0px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u969_text {
  3685. border-width:0px;
  3686. white-space:nowrap;
  3687. text-transform:none;
  3688. }
  3689. #u970_div {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:145px;
  3695. height:17px;
  3696. background:inherit;
  3697. background-color:rgba(255, 255, 255, 0);
  3698. border:none;
  3699. border-left:0px;
  3700. border-top:0px;
  3701. border-right:0px;
  3702. border-radius:0px;
  3703. border-bottom-right-radius:0px;
  3704. border-bottom-left-radius:0px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#7F7F7F;
  3713. }
  3714. #u970 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:775px;
  3718. top:482px;
  3719. width:145px;
  3720. height:17px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. color:#7F7F7F;
  3727. }
  3728. #u970 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:0px 0px 0px 0px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u970_text {
  3736. border-width:0px;
  3737. white-space:nowrap;
  3738. text-transform:none;
  3739. }
  3740. #u971 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:0px;
  3746. height:0px;
  3747. }
  3748. #u972_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:240px;
  3754. height:80px;
  3755. background:inherit;
  3756. background-color:rgba(242, 242, 242, 1);
  3757. border:none;
  3758. border-radius:0px;
  3759. -moz-box-shadow:none;
  3760. -webkit-box-shadow:none;
  3761. box-shadow:none;
  3762. }
  3763. #u972 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:694px;
  3767. top:636px;
  3768. width:240px;
  3769. height:80px;
  3770. display:flex;
  3771. }
  3772. #u972 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 2px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u972_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u973_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:50px;
  3791. height:53px;
  3792. }
  3793. #u973 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:710px;
  3797. top:649px;
  3798. width:50px;
  3799. height:53px;
  3800. display:flex;
  3801. }
  3802. #u973 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u973_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u974 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:0px;
  3821. height:0px;
  3822. }
  3823. #u975_div {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:73px;
  3829. height:25px;
  3830. background:inherit;
  3831. background-color:rgba(255, 255, 255, 0);
  3832. border:none;
  3833. border-left:0px;
  3834. border-top:0px;
  3835. border-right:0px;
  3836. border-radius:0px;
  3837. border-bottom-right-radius:0px;
  3838. border-bottom-left-radius:0px;
  3839. -moz-box-shadow:none;
  3840. -webkit-box-shadow:none;
  3841. box-shadow:none;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:18px;
  3846. }
  3847. #u975 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:775px;
  3851. top:652px;
  3852. width:73px;
  3853. height:25px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:18px;
  3859. }
  3860. #u975 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:0px 0px 0px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u975_text {
  3868. border-width:0px;
  3869. white-space:nowrap;
  3870. text-transform:none;
  3871. }
  3872. #u976_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:169px;
  3878. height:17px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 0);
  3881. border:none;
  3882. border-left:0px;
  3883. border-top:0px;
  3884. border-right:0px;
  3885. border-radius:0px;
  3886. border-bottom-right-radius:0px;
  3887. border-bottom-left-radius:0px;
  3888. -moz-box-shadow:none;
  3889. -webkit-box-shadow:none;
  3890. box-shadow:none;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:12px;
  3895. color:#7F7F7F;
  3896. }
  3897. #u976 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:775px;
  3901. top:682px;
  3902. width:169px;
  3903. height:17px;
  3904. display:flex;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:12px;
  3909. color:#7F7F7F;
  3910. }
  3911. #u976 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:0px 0px 0px 0px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u976_text {
  3919. border-width:0px;
  3920. white-space:nowrap;
  3921. text-transform:none;
  3922. }
  3923. #u977 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:0px;
  3929. height:0px;
  3930. }
  3931. #u978_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:240px;
  3937. height:80px;
  3938. background:inherit;
  3939. background-color:rgba(242, 242, 242, 1);
  3940. border:none;
  3941. border-radius:0px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. }
  3946. #u978 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:1235px;
  3950. top:636px;
  3951. width:240px;
  3952. height:80px;
  3953. display:flex;
  3954. }
  3955. #u978 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u978_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u979_img {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:50px;
  3974. height:53px;
  3975. }
  3976. #u979 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:1251px;
  3980. top:649px;
  3981. width:50px;
  3982. height:53px;
  3983. display:flex;
  3984. }
  3985. #u979 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u979_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u980 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u981_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:73px;
  4012. height:25px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 0);
  4015. border:none;
  4016. border-left:0px;
  4017. border-top:0px;
  4018. border-right:0px;
  4019. border-radius:0px;
  4020. border-bottom-right-radius:0px;
  4021. border-bottom-left-radius:0px;
  4022. -moz-box-shadow:none;
  4023. -webkit-box-shadow:none;
  4024. box-shadow:none;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:18px;
  4029. }
  4030. #u981 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:1316px;
  4034. top:652px;
  4035. width:73px;
  4036. height:25px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:18px;
  4042. }
  4043. #u981 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:0px 0px 0px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u981_text {
  4051. border-width:0px;
  4052. white-space:nowrap;
  4053. text-transform:none;
  4054. }
  4055. #u982_div {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:157px;
  4061. height:17px;
  4062. background:inherit;
  4063. background-color:rgba(255, 255, 255, 0);
  4064. border:none;
  4065. border-left:0px;
  4066. border-top:0px;
  4067. border-right:0px;
  4068. border-radius:0px;
  4069. border-bottom-right-radius:0px;
  4070. border-bottom-left-radius:0px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#7F7F7F;
  4079. }
  4080. #u982 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1316px;
  4084. top:682px;
  4085. width:157px;
  4086. height:17px;
  4087. display:flex;
  4088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:12px;
  4092. color:#7F7F7F;
  4093. }
  4094. #u982 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:0px 0px 0px 0px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u982_text {
  4102. border-width:0px;
  4103. white-space:nowrap;
  4104. text-transform:none;
  4105. }
  4106. #u983 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:0px;
  4112. height:0px;
  4113. }
  4114. #u984_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:240px;
  4120. height:80px;
  4121. background:inherit;
  4122. background-color:rgba(242, 242, 242, 1);
  4123. border:none;
  4124. border-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. }
  4129. #u984 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:964px;
  4133. top:636px;
  4134. width:240px;
  4135. height:80px;
  4136. display:flex;
  4137. }
  4138. #u984 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 2px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u984_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u985_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:50px;
  4157. height:53px;
  4158. }
  4159. #u985 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:980px;
  4163. top:649px;
  4164. width:50px;
  4165. height:53px;
  4166. display:flex;
  4167. }
  4168. #u985 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 2px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u985_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u986 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:0px;
  4187. height:0px;
  4188. }
  4189. #u987_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:73px;
  4195. height:25px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 0);
  4198. border:none;
  4199. border-left:0px;
  4200. border-top:0px;
  4201. border-right:0px;
  4202. border-radius:0px;
  4203. border-bottom-right-radius:0px;
  4204. border-bottom-left-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:18px;
  4212. }
  4213. #u987 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:1045px;
  4217. top:652px;
  4218. width:73px;
  4219. height:25px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:18px;
  4225. }
  4226. #u987 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:0px 0px 0px 0px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u987_text {
  4234. border-width:0px;
  4235. white-space:nowrap;
  4236. text-transform:none;
  4237. }
  4238. #u988_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:85px;
  4244. height:17px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 0);
  4247. border:none;
  4248. border-left:0px;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-radius:0px;
  4252. border-bottom-right-radius:0px;
  4253. border-bottom-left-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#7F7F7F;
  4262. }
  4263. #u988 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:1045px;
  4267. top:682px;
  4268. width:85px;
  4269. height:17px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#7F7F7F;
  4276. }
  4277. #u988 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u988_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u989 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:0px;
  4295. height:0px;
  4296. }
  4297. #u990_div {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:240px;
  4303. height:80px;
  4304. background:inherit;
  4305. background-color:rgba(242, 242, 242, 1);
  4306. border:none;
  4307. border-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. }
  4312. #u990 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:153px;
  4316. top:436px;
  4317. width:240px;
  4318. height:80px;
  4319. display:flex;
  4320. }
  4321. #u990 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 2px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u990_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u991_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:50px;
  4340. height:53px;
  4341. }
  4342. #u991 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:169px;
  4346. top:449px;
  4347. width:50px;
  4348. height:53px;
  4349. display:flex;
  4350. }
  4351. #u991 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 2px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u991_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u992 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:0px;
  4370. height:0px;
  4371. }
  4372. #u993_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:73px;
  4378. height:25px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 0);
  4381. border:none;
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:18px;
  4395. }
  4396. #u993 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:234px;
  4400. top:452px;
  4401. width:73px;
  4402. height:25px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:18px;
  4408. }
  4409. #u993 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:0px 0px 0px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u993_text {
  4417. border-width:0px;
  4418. white-space:nowrap;
  4419. text-transform:none;
  4420. }
  4421. #u994_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:193px;
  4427. height:17px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-left:0px;
  4432. border-top:0px;
  4433. border-right:0px;
  4434. border-radius:0px;
  4435. border-bottom-right-radius:0px;
  4436. border-bottom-left-radius:0px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. color:#7F7F7F;
  4445. }
  4446. #u994 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:234px;
  4450. top:482px;
  4451. width:193px;
  4452. height:17px;
  4453. display:flex;
  4454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#7F7F7F;
  4459. }
  4460. #u994 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:0px 0px 0px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u994_text {
  4468. border-width:0px;
  4469. white-space:nowrap;
  4470. text-transform:none;
  4471. }
  4472. #u995 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:0px;
  4478. height:0px;
  4479. }
  4480. #u996_div {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:240px;
  4486. height:80px;
  4487. background:inherit;
  4488. background-color:rgba(242, 242, 242, 1);
  4489. border:none;
  4490. border-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. }
  4495. #u996 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:423px;
  4499. top:636px;
  4500. width:240px;
  4501. height:80px;
  4502. display:flex;
  4503. }
  4504. #u996 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u996_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u997_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:50px;
  4523. height:53px;
  4524. }
  4525. #u997 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:439px;
  4529. top:649px;
  4530. width:50px;
  4531. height:53px;
  4532. display:flex;
  4533. }
  4534. #u997 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u997_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u998 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:0px;
  4553. height:0px;
  4554. }
  4555. #u999_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:109px;
  4561. height:25px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border:none;
  4565. border-left:0px;
  4566. border-top:0px;
  4567. border-right:0px;
  4568. border-radius:0px;
  4569. border-bottom-right-radius:0px;
  4570. border-bottom-left-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:18px;
  4578. }
  4579. #u999 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:504px;
  4583. top:652px;
  4584. width:109px;
  4585. height:25px;
  4586. display:flex;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:18px;
  4591. }
  4592. #u999 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:0px 0px 0px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u999_text {
  4600. border-width:0px;
  4601. white-space:nowrap;
  4602. text-transform:none;
  4603. }
  4604. #u1000_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:145px;
  4610. height:17px;
  4611. background:inherit;
  4612. background-color:rgba(255, 255, 255, 0);
  4613. border:none;
  4614. border-left:0px;
  4615. border-top:0px;
  4616. border-right:0px;
  4617. border-radius:0px;
  4618. border-bottom-right-radius:0px;
  4619. border-bottom-left-radius:0px;
  4620. -moz-box-shadow:none;
  4621. -webkit-box-shadow:none;
  4622. box-shadow:none;
  4623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4624. font-weight:400;
  4625. font-style:normal;
  4626. font-size:12px;
  4627. color:#7F7F7F;
  4628. }
  4629. #u1000 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:504px;
  4633. top:682px;
  4634. width:145px;
  4635. height:17px;
  4636. display:flex;
  4637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:#7F7F7F;
  4642. }
  4643. #u1000 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:0px 0px 0px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u1000_text {
  4651. border-width:0px;
  4652. white-space:nowrap;
  4653. text-transform:none;
  4654. }
  4655. #u1001 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:0px;
  4661. height:0px;
  4662. }
  4663. #u1002_div {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:240px;
  4669. height:80px;
  4670. background:inherit;
  4671. background-color:rgba(242, 242, 242, 1);
  4672. border:none;
  4673. border-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. }
  4678. #u1002 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:1235px;
  4682. top:436px;
  4683. width:240px;
  4684. height:80px;
  4685. display:flex;
  4686. }
  4687. #u1002 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 2px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u1002_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u1003_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:50px;
  4706. height:53px;
  4707. }
  4708. #u1003 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1251px;
  4712. top:449px;
  4713. width:50px;
  4714. height:53px;
  4715. display:flex;
  4716. }
  4717. #u1003 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u1003_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u1004 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. }
  4738. #u1005_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:73px;
  4744. height:25px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 0);
  4747. border:none;
  4748. border-left:0px;
  4749. border-top:0px;
  4750. border-right:0px;
  4751. border-radius:0px;
  4752. border-bottom-right-radius:0px;
  4753. border-bottom-left-radius:0px;
  4754. -moz-box-shadow:none;
  4755. -webkit-box-shadow:none;
  4756. box-shadow:none;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. }
  4762. #u1005 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1316px;
  4766. top:452px;
  4767. width:73px;
  4768. height:25px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:18px;
  4774. }
  4775. #u1005 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:0px 0px 0px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u1005_text {
  4783. border-width:0px;
  4784. white-space:nowrap;
  4785. text-transform:none;
  4786. }
  4787. #u1006_div {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:121px;
  4793. height:17px;
  4794. background:inherit;
  4795. background-color:rgba(255, 255, 255, 0);
  4796. border:none;
  4797. border-left:0px;
  4798. border-top:0px;
  4799. border-right:0px;
  4800. border-radius:0px;
  4801. border-bottom-right-radius:0px;
  4802. border-bottom-left-radius:0px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. color:#7F7F7F;
  4811. }
  4812. #u1006 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1316px;
  4816. top:482px;
  4817. width:121px;
  4818. height:17px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:12px;
  4824. color:#7F7F7F;
  4825. }
  4826. #u1006 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:0px 0px 0px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u1006_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u1007 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. height:0px;
  4845. }
  4846. #u1008_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:240px;
  4852. height:80px;
  4853. background:inherit;
  4854. background-color:rgba(242, 242, 242, 1);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. }
  4861. #u1008 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:1236px;
  4865. top:536px;
  4866. width:240px;
  4867. height:80px;
  4868. display:flex;
  4869. }
  4870. #u1008 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 2px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u1008_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u1009_img {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:50px;
  4889. height:53px;
  4890. }
  4891. #u1009 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1252px;
  4895. top:549px;
  4896. width:50px;
  4897. height:53px;
  4898. display:flex;
  4899. }
  4900. #u1009 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u1009_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u1010 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:0px;
  4919. height:0px;
  4920. }
  4921. #u1011_div {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:73px;
  4927. height:25px;
  4928. background:inherit;
  4929. background-color:rgba(255, 255, 255, 0);
  4930. border:none;
  4931. border-left:0px;
  4932. border-top:0px;
  4933. border-right:0px;
  4934. border-radius:0px;
  4935. border-bottom-right-radius:0px;
  4936. border-bottom-left-radius:0px;
  4937. -moz-box-shadow:none;
  4938. -webkit-box-shadow:none;
  4939. box-shadow:none;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:18px;
  4944. }
  4945. #u1011 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:1317px;
  4949. top:552px;
  4950. width:73px;
  4951. height:25px;
  4952. display:flex;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:18px;
  4957. }
  4958. #u1011 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:0px 0px 0px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u1011_text {
  4966. border-width:0px;
  4967. white-space:nowrap;
  4968. text-transform:none;
  4969. }
  4970. #u1012_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:193px;
  4976. height:17px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 0);
  4979. border:none;
  4980. border-left:0px;
  4981. border-top:0px;
  4982. border-right:0px;
  4983. border-radius:0px;
  4984. border-bottom-right-radius:0px;
  4985. border-bottom-left-radius:0px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#7F7F7F;
  4994. }
  4995. #u1012 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:1317px;
  4999. top:582px;
  5000. width:193px;
  5001. height:17px;
  5002. display:flex;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:12px;
  5007. color:#7F7F7F;
  5008. }
  5009. #u1012 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:0px 0px 0px 0px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u1012_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u1013 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:0px;
  5027. height:0px;
  5028. }
  5029. #u1014_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:240px;
  5035. height:80px;
  5036. background:inherit;
  5037. background-color:rgba(242, 242, 242, 1);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. }
  5044. #u1014 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:965px;
  5048. top:536px;
  5049. width:240px;
  5050. height:80px;
  5051. display:flex;
  5052. }
  5053. #u1014 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 2px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u1014_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u1015_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:50px;
  5072. height:53px;
  5073. }
  5074. #u1015 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:981px;
  5078. top:549px;
  5079. width:50px;
  5080. height:53px;
  5081. display:flex;
  5082. }
  5083. #u1015 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 2px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u1015_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u1016 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:0px;
  5102. height:0px;
  5103. }
  5104. #u1017_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:73px;
  5110. height:25px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 0);
  5113. border:none;
  5114. border-left:0px;
  5115. border-top:0px;
  5116. border-right:0px;
  5117. border-radius:0px;
  5118. border-bottom-right-radius:0px;
  5119. border-bottom-left-radius:0px;
  5120. -moz-box-shadow:none;
  5121. -webkit-box-shadow:none;
  5122. box-shadow:none;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:18px;
  5127. }
  5128. #u1017 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1046px;
  5132. top:552px;
  5133. width:73px;
  5134. height:25px;
  5135. display:flex;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:18px;
  5140. }
  5141. #u1017 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:0px 0px 0px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u1017_text {
  5149. border-width:0px;
  5150. white-space:nowrap;
  5151. text-transform:none;
  5152. }
  5153. #u1018_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:73px;
  5159. height:17px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 0);
  5162. border:none;
  5163. border-left:0px;
  5164. border-top:0px;
  5165. border-right:0px;
  5166. border-radius:0px;
  5167. border-bottom-right-radius:0px;
  5168. border-bottom-left-radius:0px;
  5169. -moz-box-shadow:none;
  5170. -webkit-box-shadow:none;
  5171. box-shadow:none;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. color:#7F7F7F;
  5177. }
  5178. #u1018 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:1046px;
  5182. top:582px;
  5183. width:73px;
  5184. height:17px;
  5185. display:flex;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:12px;
  5190. color:#7F7F7F;
  5191. }
  5192. #u1018 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u1018_text {
  5200. border-width:0px;
  5201. white-space:nowrap;
  5202. text-transform:none;
  5203. }
  5204. #u1019 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:0px;
  5210. height:0px;
  5211. }
  5212. #u1020_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:240px;
  5218. height:80px;
  5219. background:inherit;
  5220. background-color:rgba(242, 242, 242, 1);
  5221. border:none;
  5222. border-radius:0px;
  5223. -moz-box-shadow:none;
  5224. -webkit-box-shadow:none;
  5225. box-shadow:none;
  5226. }
  5227. #u1020 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:153px;
  5231. top:636px;
  5232. width:240px;
  5233. height:80px;
  5234. display:flex;
  5235. }
  5236. #u1020 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 2px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u1020_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u1021_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:50px;
  5255. height:53px;
  5256. }
  5257. #u1021 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:169px;
  5261. top:649px;
  5262. width:50px;
  5263. height:53px;
  5264. display:flex;
  5265. }
  5266. #u1021 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u1021_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u1022 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:0px;
  5285. height:0px;
  5286. }
  5287. #u1023_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:91px;
  5293. height:25px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-left:0px;
  5298. border-top:0px;
  5299. border-right:0px;
  5300. border-radius:0px;
  5301. border-bottom-right-radius:0px;
  5302. border-bottom-left-radius:0px;
  5303. -moz-box-shadow:none;
  5304. -webkit-box-shadow:none;
  5305. box-shadow:none;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:18px;
  5310. }
  5311. #u1023 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:234px;
  5315. top:652px;
  5316. width:91px;
  5317. height:25px;
  5318. display:flex;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:18px;
  5323. }
  5324. #u1023 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:0px 0px 0px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u1023_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u1024_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:121px;
  5342. height:17px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-left:0px;
  5347. border-top:0px;
  5348. border-right:0px;
  5349. border-radius:0px;
  5350. border-bottom-right-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:12px;
  5359. color:#7F7F7F;
  5360. }
  5361. #u1024 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:234px;
  5365. top:682px;
  5366. width:121px;
  5367. height:17px;
  5368. display:flex;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#7F7F7F;
  5374. }
  5375. #u1024 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:0px 0px 0px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u1024_text {
  5383. border-width:0px;
  5384. white-space:nowrap;
  5385. text-transform:none;
  5386. }
  5387. #u1025 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:0px;
  5393. height:0px;
  5394. }
  5395. #u1026_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:240px;
  5401. height:80px;
  5402. background:inherit;
  5403. background-color:rgba(242, 242, 242, 1);
  5404. border:none;
  5405. border-radius:0px;
  5406. -moz-box-shadow:none;
  5407. -webkit-box-shadow:none;
  5408. box-shadow:none;
  5409. }
  5410. #u1026 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:694px;
  5414. top:536px;
  5415. width:240px;
  5416. height:80px;
  5417. display:flex;
  5418. }
  5419. #u1026 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 2px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u1026_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u1027_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:50px;
  5438. height:53px;
  5439. }
  5440. #u1027 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:710px;
  5444. top:549px;
  5445. width:50px;
  5446. height:53px;
  5447. display:flex;
  5448. }
  5449. #u1027 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 2px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u1027_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u1028 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:0px;
  5468. height:0px;
  5469. }
  5470. #u1029_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:73px;
  5476. height:25px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 0);
  5479. border:none;
  5480. border-left:0px;
  5481. border-top:0px;
  5482. border-right:0px;
  5483. border-radius:0px;
  5484. border-bottom-right-radius:0px;
  5485. border-bottom-left-radius:0px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:18px;
  5493. }
  5494. #u1029 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:775px;
  5498. top:552px;
  5499. width:73px;
  5500. height:25px;
  5501. display:flex;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:18px;
  5506. }
  5507. #u1029 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:0px 0px 0px 0px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u1029_text {
  5515. border-width:0px;
  5516. white-space:nowrap;
  5517. text-transform:none;
  5518. }
  5519. #u1030_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:157px;
  5525. height:17px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 0);
  5528. border:none;
  5529. border-left:0px;
  5530. border-top:0px;
  5531. border-right:0px;
  5532. border-radius:0px;
  5533. border-bottom-right-radius:0px;
  5534. border-bottom-left-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:12px;
  5542. color:#7F7F7F;
  5543. }
  5544. #u1030 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:775px;
  5548. top:582px;
  5549. width:157px;
  5550. height:17px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#7F7F7F;
  5557. }
  5558. #u1030 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:0px 0px 0px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u1030_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u1031 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:0px;
  5576. height:0px;
  5577. }
  5578. #u1032_div {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:240px;
  5584. height:80px;
  5585. background:inherit;
  5586. background-color:rgba(242, 242, 242, 1);
  5587. border:none;
  5588. border-radius:0px;
  5589. -moz-box-shadow:none;
  5590. -webkit-box-shadow:none;
  5591. box-shadow:none;
  5592. }
  5593. #u1032 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:423px;
  5597. top:536px;
  5598. width:240px;
  5599. height:80px;
  5600. display:flex;
  5601. }
  5602. #u1032 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u1032_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u1033_img {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:50px;
  5621. height:53px;
  5622. }
  5623. #u1033 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:439px;
  5627. top:549px;
  5628. width:50px;
  5629. height:53px;
  5630. display:flex;
  5631. }
  5632. #u1033 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u1033_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u1034 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u1035_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:73px;
  5659. height:25px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-left:0px;
  5664. border-top:0px;
  5665. border-right:0px;
  5666. border-radius:0px;
  5667. border-bottom-right-radius:0px;
  5668. border-bottom-left-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:18px;
  5676. }
  5677. #u1035 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:504px;
  5681. top:552px;
  5682. width:73px;
  5683. height:25px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:18px;
  5689. }
  5690. #u1035 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:0px 0px 0px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u1035_text {
  5698. border-width:0px;
  5699. white-space:nowrap;
  5700. text-transform:none;
  5701. }
  5702. #u1036_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:229px;
  5708. height:17px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 0);
  5711. border:none;
  5712. border-left:0px;
  5713. border-top:0px;
  5714. border-right:0px;
  5715. border-radius:0px;
  5716. border-bottom-right-radius:0px;
  5717. border-bottom-left-radius:0px;
  5718. -moz-box-shadow:none;
  5719. -webkit-box-shadow:none;
  5720. box-shadow:none;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:12px;
  5725. color:#7F7F7F;
  5726. }
  5727. #u1036 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:504px;
  5731. top:582px;
  5732. width:229px;
  5733. height:17px;
  5734. display:flex;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:12px;
  5739. color:#7F7F7F;
  5740. }
  5741. #u1036 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:0px 0px 0px 0px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u1036_text {
  5749. border-width:0px;
  5750. white-space:nowrap;
  5751. text-transform:none;
  5752. }
  5753. #u1037 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:0px;
  5759. height:0px;
  5760. }
  5761. #u1038_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:240px;
  5767. height:80px;
  5768. background:inherit;
  5769. background-color:rgba(242, 242, 242, 1);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. }
  5776. #u1038 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:153px;
  5780. top:536px;
  5781. width:240px;
  5782. height:80px;
  5783. display:flex;
  5784. }
  5785. #u1038 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u1038_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. visibility:hidden;
  5797. }
  5798. #u1039_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:50px;
  5804. height:53px;
  5805. }
  5806. #u1039 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:169px;
  5810. top:549px;
  5811. width:50px;
  5812. height:53px;
  5813. display:flex;
  5814. }
  5815. #u1039 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u1039_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u1040 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:0px;
  5834. height:0px;
  5835. }
  5836. #u1041_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:73px;
  5842. height:25px;
  5843. background:inherit;
  5844. background-color:rgba(255, 255, 255, 0);
  5845. border:none;
  5846. border-left:0px;
  5847. border-top:0px;
  5848. border-right:0px;
  5849. border-radius:0px;
  5850. border-bottom-right-radius:0px;
  5851. border-bottom-left-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:18px;
  5859. }
  5860. #u1041 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:234px;
  5864. top:552px;
  5865. width:73px;
  5866. height:25px;
  5867. display:flex;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:18px;
  5872. }
  5873. #u1041 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:0px 0px 0px 0px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u1041_text {
  5881. border-width:0px;
  5882. white-space:nowrap;
  5883. text-transform:none;
  5884. }
  5885. #u1042_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:205px;
  5891. height:17px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border:none;
  5895. border-left:0px;
  5896. border-top:0px;
  5897. border-right:0px;
  5898. border-radius:0px;
  5899. border-bottom-right-radius:0px;
  5900. border-bottom-left-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. color:#7F7F7F;
  5909. }
  5910. #u1042 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:234px;
  5914. top:582px;
  5915. width:205px;
  5916. height:17px;
  5917. display:flex;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. color:#7F7F7F;
  5923. }
  5924. #u1042 .text {
  5925. position:absolute;
  5926. align-self:center;
  5927. padding:0px 0px 0px 0px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u1042_text {
  5932. border-width:0px;
  5933. white-space:nowrap;
  5934. text-transform:none;
  5935. }
  5936. #u1043 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:0px;
  5942. height:0px;
  5943. }
  5944. #u1044_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:240px;
  5950. height:80px;
  5951. background:inherit;
  5952. background-color:rgba(242, 242, 242, 1);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. }
  5959. #u1044 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:153px;
  5963. top:836px;
  5964. width:240px;
  5965. height:80px;
  5966. display:flex;
  5967. }
  5968. #u1044 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 2px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u1044_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. visibility:hidden;
  5980. }
  5981. #u1045_img {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:50px;
  5987. height:53px;
  5988. }
  5989. #u1045 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:169px;
  5993. top:849px;
  5994. width:50px;
  5995. height:53px;
  5996. display:flex;
  5997. }
  5998. #u1045 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u1045_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u1046 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u1047_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:73px;
  6025. height:25px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border:none;
  6029. border-left:0px;
  6030. border-top:0px;
  6031. border-right:0px;
  6032. border-radius:0px;
  6033. border-bottom-right-radius:0px;
  6034. border-bottom-left-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:18px;
  6042. }
  6043. #u1047 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:234px;
  6047. top:852px;
  6048. width:73px;
  6049. height:25px;
  6050. display:flex;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:18px;
  6055. }
  6056. #u1047 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:0px 0px 0px 0px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u1047_text {
  6064. border-width:0px;
  6065. white-space:nowrap;
  6066. text-transform:none;
  6067. }
  6068. #u1048_div {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:97px;
  6074. height:17px;
  6075. background:inherit;
  6076. background-color:rgba(255, 255, 255, 0);
  6077. border:none;
  6078. border-left:0px;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-radius:0px;
  6082. border-bottom-right-radius:0px;
  6083. border-bottom-left-radius:0px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:12px;
  6091. color:#7F7F7F;
  6092. }
  6093. #u1048 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:234px;
  6097. top:882px;
  6098. width:97px;
  6099. height:17px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. color:#7F7F7F;
  6106. }
  6107. #u1048 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u1048_text {
  6115. border-width:0px;
  6116. white-space:nowrap;
  6117. text-transform:none;
  6118. }
  6119. #u1049 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u1050_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:240px;
  6133. height:80px;
  6134. background:inherit;
  6135. background-color:rgba(242, 242, 242, 1);
  6136. border:none;
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. }
  6142. #u1050 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:424px;
  6146. top:836px;
  6147. width:240px;
  6148. height:80px;
  6149. display:flex;
  6150. }
  6151. #u1050 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u1050_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u1051_img {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:50px;
  6170. height:53px;
  6171. }
  6172. #u1051 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:440px;
  6176. top:849px;
  6177. width:50px;
  6178. height:53px;
  6179. display:flex;
  6180. }
  6181. #u1051 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 2px 2px 2px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u1051_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u1052 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:0px;
  6200. height:0px;
  6201. }
  6202. #u1053_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:73px;
  6208. height:25px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 0);
  6211. border:none;
  6212. border-left:0px;
  6213. border-top:0px;
  6214. border-right:0px;
  6215. border-radius:0px;
  6216. border-bottom-right-radius:0px;
  6217. border-bottom-left-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:18px;
  6225. }
  6226. #u1053 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:505px;
  6230. top:852px;
  6231. width:73px;
  6232. height:25px;
  6233. display:flex;
  6234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:18px;
  6238. }
  6239. #u1053 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:0px 0px 0px 0px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u1053_text {
  6247. border-width:0px;
  6248. white-space:nowrap;
  6249. text-transform:none;
  6250. }
  6251. #u1054_div {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:97px;
  6257. height:17px;
  6258. background:inherit;
  6259. background-color:rgba(255, 255, 255, 0);
  6260. border:none;
  6261. border-left:0px;
  6262. border-top:0px;
  6263. border-right:0px;
  6264. border-radius:0px;
  6265. border-bottom-right-radius:0px;
  6266. border-bottom-left-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:12px;
  6274. color:#7F7F7F;
  6275. }
  6276. #u1054 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:505px;
  6280. top:882px;
  6281. width:97px;
  6282. height:17px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#7F7F7F;
  6289. }
  6290. #u1054 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:0px 0px 0px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u1054_text {
  6298. border-width:0px;
  6299. white-space:nowrap;
  6300. text-transform:none;
  6301. }
  6302. #u1055 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:0px;
  6308. height:0px;
  6309. }
  6310. #u1056_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:240px;
  6316. height:80px;
  6317. background:inherit;
  6318. background-color:rgba(242, 242, 242, 1);
  6319. border:none;
  6320. border-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. }
  6325. #u1056 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:964px;
  6329. top:736px;
  6330. width:240px;
  6331. height:80px;
  6332. display:flex;
  6333. }
  6334. #u1056 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:2px 2px 2px 2px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u1056_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. visibility:hidden;
  6346. }
  6347. #u1057_img {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:50px;
  6353. height:53px;
  6354. }
  6355. #u1057 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:980px;
  6359. top:749px;
  6360. width:50px;
  6361. height:53px;
  6362. display:flex;
  6363. }
  6364. #u1057 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u1057_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. visibility:hidden;
  6376. }
  6377. #u1058 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:0px;
  6383. height:0px;
  6384. }
  6385. #u1059_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:73px;
  6391. height:25px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 0);
  6394. border:none;
  6395. border-left:0px;
  6396. border-top:0px;
  6397. border-right:0px;
  6398. border-radius:0px;
  6399. border-bottom-right-radius:0px;
  6400. border-bottom-left-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:18px;
  6408. }
  6409. #u1059 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:1045px;
  6413. top:752px;
  6414. width:73px;
  6415. height:25px;
  6416. display:flex;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:18px;
  6421. }
  6422. #u1059 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:0px 0px 0px 0px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u1059_text {
  6430. border-width:0px;
  6431. white-space:nowrap;
  6432. text-transform:none;
  6433. }
  6434. #u1060_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:133px;
  6440. height:17px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 0);
  6443. border:none;
  6444. border-left:0px;
  6445. border-top:0px;
  6446. border-right:0px;
  6447. border-radius:0px;
  6448. border-bottom-right-radius:0px;
  6449. border-bottom-left-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:12px;
  6457. color:#7F7F7F;
  6458. }
  6459. #u1060 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1045px;
  6463. top:782px;
  6464. width:133px;
  6465. height:17px;
  6466. display:flex;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:12px;
  6471. color:#7F7F7F;
  6472. }
  6473. #u1060 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:0px 0px 0px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u1060_text {
  6481. border-width:0px;
  6482. white-space:nowrap;
  6483. text-transform:none;
  6484. }
  6485. #u1061 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:0px;
  6491. height:0px;
  6492. }
  6493. #u1062_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:240px;
  6499. height:80px;
  6500. background:inherit;
  6501. background-color:rgba(242, 242, 242, 1);
  6502. border:none;
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. }
  6508. #u1062 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:694px;
  6512. top:839px;
  6513. width:240px;
  6514. height:80px;
  6515. display:flex;
  6516. }
  6517. #u1062 .text {
  6518. position:absolute;
  6519. align-self:center;
  6520. padding:2px 2px 2px 2px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u1062_text {
  6525. border-width:0px;
  6526. word-wrap:break-word;
  6527. text-transform:none;
  6528. visibility:hidden;
  6529. }
  6530. #u1063_img {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:50px;
  6536. height:53px;
  6537. }
  6538. #u1063 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:710px;
  6542. top:852px;
  6543. width:50px;
  6544. height:53px;
  6545. display:flex;
  6546. }
  6547. #u1063 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:2px 2px 2px 2px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u1063_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. visibility:hidden;
  6559. }
  6560. #u1064 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:0px;
  6566. height:0px;
  6567. }
  6568. #u1065_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:73px;
  6574. height:25px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 0);
  6577. border:none;
  6578. border-left:0px;
  6579. border-top:0px;
  6580. border-right:0px;
  6581. border-radius:0px;
  6582. border-bottom-right-radius:0px;
  6583. border-bottom-left-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:18px;
  6591. }
  6592. #u1065 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:775px;
  6596. top:855px;
  6597. width:73px;
  6598. height:25px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:18px;
  6604. }
  6605. #u1065 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u1065_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u1066_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:133px;
  6623. height:17px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-left:0px;
  6628. border-top:0px;
  6629. border-right:0px;
  6630. border-radius:0px;
  6631. border-bottom-right-radius:0px;
  6632. border-bottom-left-radius:0px;
  6633. -moz-box-shadow:none;
  6634. -webkit-box-shadow:none;
  6635. box-shadow:none;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. color:#7F7F7F;
  6641. }
  6642. #u1066 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:775px;
  6646. top:885px;
  6647. width:133px;
  6648. height:17px;
  6649. display:flex;
  6650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. color:#7F7F7F;
  6655. }
  6656. #u1066 .text {
  6657. position:absolute;
  6658. align-self:center;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u1066_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u1067 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u1068_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:240px;
  6682. height:80px;
  6683. background:inherit;
  6684. background-color:rgba(242, 242, 242, 1);
  6685. border:none;
  6686. border-radius:0px;
  6687. -moz-box-shadow:none;
  6688. -webkit-box-shadow:none;
  6689. box-shadow:none;
  6690. }
  6691. #u1068 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:965px;
  6695. top:828px;
  6696. width:240px;
  6697. height:80px;
  6698. display:flex;
  6699. }
  6700. #u1068 .text {
  6701. position:absolute;
  6702. align-self:center;
  6703. padding:2px 2px 2px 2px;
  6704. box-sizing:border-box;
  6705. width:100%;
  6706. }
  6707. #u1068_text {
  6708. border-width:0px;
  6709. word-wrap:break-word;
  6710. text-transform:none;
  6711. visibility:hidden;
  6712. }
  6713. #u1069_img {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:50px;
  6719. height:53px;
  6720. }
  6721. #u1069 {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:981px;
  6725. top:841px;
  6726. width:50px;
  6727. height:53px;
  6728. display:flex;
  6729. }
  6730. #u1069 .text {
  6731. position:absolute;
  6732. align-self:center;
  6733. padding:2px 2px 2px 2px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u1069_text {
  6738. border-width:0px;
  6739. word-wrap:break-word;
  6740. text-transform:none;
  6741. visibility:hidden;
  6742. }
  6743. #u1070 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:0px;
  6749. height:0px;
  6750. }
  6751. #u1071_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:73px;
  6757. height:25px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:18px;
  6774. }
  6775. #u1071 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:1046px;
  6779. top:844px;
  6780. width:73px;
  6781. height:25px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:18px;
  6787. }
  6788. #u1071 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:0px 0px 0px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u1071_text {
  6796. border-width:0px;
  6797. white-space:nowrap;
  6798. text-transform:none;
  6799. }
  6800. #u1072_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:97px;
  6806. height:17px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 0);
  6809. border:none;
  6810. border-left:0px;
  6811. border-top:0px;
  6812. border-right:0px;
  6813. border-radius:0px;
  6814. border-bottom-right-radius:0px;
  6815. border-bottom-left-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:12px;
  6823. color:#7F7F7F;
  6824. }
  6825. #u1072 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:1046px;
  6829. top:874px;
  6830. width:97px;
  6831. height:17px;
  6832. display:flex;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:12px;
  6837. color:#7F7F7F;
  6838. }
  6839. #u1072 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:0px 0px 0px 0px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u1072_text {
  6847. border-width:0px;
  6848. white-space:nowrap;
  6849. text-transform:none;
  6850. }
  6851. #u1073 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:0px;
  6857. height:0px;
  6858. }
  6859. #u1074_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:240px;
  6865. height:80px;
  6866. background:inherit;
  6867. background-color:rgba(242, 242, 242, 1);
  6868. border:none;
  6869. border-radius:0px;
  6870. -moz-box-shadow:none;
  6871. -webkit-box-shadow:none;
  6872. box-shadow:none;
  6873. }
  6874. #u1074 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:1236px;
  6878. top:736px;
  6879. width:240px;
  6880. height:80px;
  6881. display:flex;
  6882. }
  6883. #u1074 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u1074_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u1075_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:50px;
  6902. height:53px;
  6903. }
  6904. #u1075 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:1252px;
  6908. top:749px;
  6909. width:50px;
  6910. height:53px;
  6911. display:flex;
  6912. }
  6913. #u1075 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 2px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u1075_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. visibility:hidden;
  6925. }
  6926. #u1076 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:0px;
  6932. height:0px;
  6933. }
  6934. #u1077_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:73px;
  6940. height:25px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-left:0px;
  6945. border-top:0px;
  6946. border-right:0px;
  6947. border-radius:0px;
  6948. border-bottom-right-radius:0px;
  6949. border-bottom-left-radius:0px;
  6950. -moz-box-shadow:none;
  6951. -webkit-box-shadow:none;
  6952. box-shadow:none;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:18px;
  6957. }
  6958. #u1077 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:1317px;
  6962. top:752px;
  6963. width:73px;
  6964. height:25px;
  6965. display:flex;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:18px;
  6970. }
  6971. #u1077 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:0px 0px 0px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u1077_text {
  6979. border-width:0px;
  6980. white-space:nowrap;
  6981. text-transform:none;
  6982. }
  6983. #u1078_div {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:109px;
  6989. height:17px;
  6990. background:inherit;
  6991. background-color:rgba(255, 255, 255, 0);
  6992. border:none;
  6993. border-left:0px;
  6994. border-top:0px;
  6995. border-right:0px;
  6996. border-radius:0px;
  6997. border-bottom-right-radius:0px;
  6998. border-bottom-left-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:12px;
  7006. color:#7F7F7F;
  7007. }
  7008. #u1078 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:1317px;
  7012. top:782px;
  7013. width:109px;
  7014. height:17px;
  7015. display:flex;
  7016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7017. font-weight:400;
  7018. font-style:normal;
  7019. font-size:12px;
  7020. color:#7F7F7F;
  7021. }
  7022. #u1078 .text {
  7023. position:absolute;
  7024. align-self:center;
  7025. padding:0px 0px 0px 0px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u1078_text {
  7030. border-width:0px;
  7031. white-space:nowrap;
  7032. text-transform:none;
  7033. }
  7034. #u1079 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:0px;
  7040. height:0px;
  7041. }
  7042. #u1080_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:240px;
  7048. height:80px;
  7049. background:inherit;
  7050. background-color:rgba(242, 242, 242, 1);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. }
  7057. #u1080 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:1235px;
  7061. top:828px;
  7062. width:240px;
  7063. height:80px;
  7064. display:flex;
  7065. }
  7066. #u1080 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 2px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u1080_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u1081_img {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:50px;
  7085. height:53px;
  7086. }
  7087. #u1081 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:1251px;
  7091. top:841px;
  7092. width:50px;
  7093. height:53px;
  7094. display:flex;
  7095. }
  7096. #u1081 .text {
  7097. position:absolute;
  7098. align-self:center;
  7099. padding:2px 2px 2px 2px;
  7100. box-sizing:border-box;
  7101. width:100%;
  7102. }
  7103. #u1081_text {
  7104. border-width:0px;
  7105. word-wrap:break-word;
  7106. text-transform:none;
  7107. visibility:hidden;
  7108. }
  7109. #u1082 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:0px;
  7115. height:0px;
  7116. }
  7117. #u1083_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:73px;
  7123. height:25px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border:none;
  7127. border-left:0px;
  7128. border-top:0px;
  7129. border-right:0px;
  7130. border-radius:0px;
  7131. border-bottom-right-radius:0px;
  7132. border-bottom-left-radius:0px;
  7133. -moz-box-shadow:none;
  7134. -webkit-box-shadow:none;
  7135. box-shadow:none;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:18px;
  7140. }
  7141. #u1083 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:1316px;
  7145. top:844px;
  7146. width:73px;
  7147. height:25px;
  7148. display:flex;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:18px;
  7153. }
  7154. #u1083 .text {
  7155. position:absolute;
  7156. align-self:center;
  7157. padding:0px 0px 0px 0px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u1083_text {
  7162. border-width:0px;
  7163. white-space:nowrap;
  7164. text-transform:none;
  7165. }
  7166. #u1084_div {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:217px;
  7172. height:17px;
  7173. background:inherit;
  7174. background-color:rgba(255, 255, 255, 0);
  7175. border:none;
  7176. border-left:0px;
  7177. border-top:0px;
  7178. border-right:0px;
  7179. border-radius:0px;
  7180. border-bottom-right-radius:0px;
  7181. border-bottom-left-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:12px;
  7189. color:#7F7F7F;
  7190. }
  7191. #u1084 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:1316px;
  7195. top:874px;
  7196. width:217px;
  7197. height:17px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. color:#7F7F7F;
  7204. }
  7205. #u1084 .text {
  7206. position:absolute;
  7207. align-self:center;
  7208. padding:0px 0px 0px 0px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u1084_text {
  7213. border-width:0px;
  7214. white-space:nowrap;
  7215. text-transform:none;
  7216. }
  7217. #u1085 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:0px;
  7223. height:0px;
  7224. }
  7225. #u1086_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:240px;
  7231. height:80px;
  7232. background:inherit;
  7233. background-color:rgba(242, 242, 242, 1);
  7234. border:none;
  7235. border-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. }
  7240. #u1086 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:153px;
  7244. top:1036px;
  7245. width:240px;
  7246. height:80px;
  7247. display:flex;
  7248. }
  7249. #u1086 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u1086_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. visibility:hidden;
  7261. }
  7262. #u1087_img {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:50px;
  7268. height:53px;
  7269. }
  7270. #u1087 {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:169px;
  7274. top:1049px;
  7275. width:50px;
  7276. height:53px;
  7277. display:flex;
  7278. }
  7279. #u1087 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:2px 2px 2px 2px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u1087_text {
  7287. border-width:0px;
  7288. word-wrap:break-word;
  7289. text-transform:none;
  7290. visibility:hidden;
  7291. }
  7292. #u1088 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:0px;
  7298. height:0px;
  7299. }
  7300. #u1089_div {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:73px;
  7306. height:25px;
  7307. background:inherit;
  7308. background-color:rgba(255, 255, 255, 0);
  7309. border:none;
  7310. border-left:0px;
  7311. border-top:0px;
  7312. border-right:0px;
  7313. border-radius:0px;
  7314. border-bottom-right-radius:0px;
  7315. border-bottom-left-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:18px;
  7323. }
  7324. #u1089 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:234px;
  7328. top:1052px;
  7329. width:73px;
  7330. height:25px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:18px;
  7336. }
  7337. #u1089 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u1089_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u1090_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:121px;
  7355. height:17px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-left:0px;
  7360. border-top:0px;
  7361. border-right:0px;
  7362. border-radius:0px;
  7363. border-bottom-right-radius:0px;
  7364. border-bottom-left-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:12px;
  7372. color:#7F7F7F;
  7373. }
  7374. #u1090 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:234px;
  7378. top:1082px;
  7379. width:121px;
  7380. height:17px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#7F7F7F;
  7387. }
  7388. #u1090 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:0px 0px 0px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u1090_text {
  7396. border-width:0px;
  7397. white-space:nowrap;
  7398. text-transform:none;
  7399. }
  7400. #u1091 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:0px;
  7406. height:0px;
  7407. }
  7408. #u1092_div {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:240px;
  7414. height:80px;
  7415. background:inherit;
  7416. background-color:rgba(242, 242, 242, 1);
  7417. border:none;
  7418. border-radius:0px;
  7419. -moz-box-shadow:none;
  7420. -webkit-box-shadow:none;
  7421. box-shadow:none;
  7422. }
  7423. #u1092 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:423px;
  7427. top:936px;
  7428. width:240px;
  7429. height:80px;
  7430. display:flex;
  7431. }
  7432. #u1092 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:2px 2px 2px 2px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u1092_text {
  7440. border-width:0px;
  7441. word-wrap:break-word;
  7442. text-transform:none;
  7443. visibility:hidden;
  7444. }
  7445. #u1093_img {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:50px;
  7451. height:53px;
  7452. }
  7453. #u1093 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:439px;
  7457. top:949px;
  7458. width:50px;
  7459. height:53px;
  7460. display:flex;
  7461. }
  7462. #u1093 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u1093_text {
  7470. border-width:0px;
  7471. word-wrap:break-word;
  7472. text-transform:none;
  7473. visibility:hidden;
  7474. }
  7475. #u1094 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:0px;
  7481. height:0px;
  7482. }
  7483. #u1095_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:73px;
  7489. height:25px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-left:0px;
  7494. border-top:0px;
  7495. border-right:0px;
  7496. border-radius:0px;
  7497. border-bottom-right-radius:0px;
  7498. border-bottom-left-radius:0px;
  7499. -moz-box-shadow:none;
  7500. -webkit-box-shadow:none;
  7501. box-shadow:none;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:18px;
  7506. }
  7507. #u1095 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:504px;
  7511. top:952px;
  7512. width:73px;
  7513. height:25px;
  7514. display:flex;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:18px;
  7519. }
  7520. #u1095 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:0px 0px 0px 0px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u1095_text {
  7528. border-width:0px;
  7529. white-space:nowrap;
  7530. text-transform:none;
  7531. }
  7532. #u1096_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:109px;
  7538. height:17px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 0);
  7541. border:none;
  7542. border-left:0px;
  7543. border-top:0px;
  7544. border-right:0px;
  7545. border-radius:0px;
  7546. border-bottom-right-radius:0px;
  7547. border-bottom-left-radius:0px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:12px;
  7555. color:#7F7F7F;
  7556. }
  7557. #u1096 {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:504px;
  7561. top:982px;
  7562. width:109px;
  7563. height:17px;
  7564. display:flex;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. font-size:12px;
  7569. color:#7F7F7F;
  7570. }
  7571. #u1096 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:0px 0px 0px 0px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u1096_text {
  7579. border-width:0px;
  7580. white-space:nowrap;
  7581. text-transform:none;
  7582. }
  7583. #u1097 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:0px;
  7589. height:0px;
  7590. }
  7591. #u1098_div {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:240px;
  7597. height:80px;
  7598. background:inherit;
  7599. background-color:rgba(242, 242, 242, 1);
  7600. border:none;
  7601. border-radius:0px;
  7602. -moz-box-shadow:none;
  7603. -webkit-box-shadow:none;
  7604. box-shadow:none;
  7605. }
  7606. #u1098 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:423px;
  7610. top:1036px;
  7611. width:240px;
  7612. height:80px;
  7613. display:flex;
  7614. }
  7615. #u1098 .text {
  7616. position:absolute;
  7617. align-self:center;
  7618. padding:2px 2px 2px 2px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u1098_text {
  7623. border-width:0px;
  7624. word-wrap:break-word;
  7625. text-transform:none;
  7626. visibility:hidden;
  7627. }
  7628. #u1099_img {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:50px;
  7634. height:53px;
  7635. }
  7636. #u1099 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:439px;
  7640. top:1049px;
  7641. width:50px;
  7642. height:53px;
  7643. display:flex;
  7644. }
  7645. #u1099 .text {
  7646. position:absolute;
  7647. align-self:center;
  7648. padding:2px 2px 2px 2px;
  7649. box-sizing:border-box;
  7650. width:100%;
  7651. }
  7652. #u1099_text {
  7653. border-width:0px;
  7654. word-wrap:break-word;
  7655. text-transform:none;
  7656. visibility:hidden;
  7657. }
  7658. #u1100 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:0px;
  7664. height:0px;
  7665. }
  7666. #u1101_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:73px;
  7672. height:25px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-left:0px;
  7677. border-top:0px;
  7678. border-right:0px;
  7679. border-radius:0px;
  7680. border-bottom-right-radius:0px;
  7681. border-bottom-left-radius:0px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:18px;
  7689. }
  7690. #u1101 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:504px;
  7694. top:1052px;
  7695. width:73px;
  7696. height:25px;
  7697. display:flex;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:18px;
  7702. }
  7703. #u1101 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:0px 0px 0px 0px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u1101_text {
  7711. border-width:0px;
  7712. white-space:nowrap;
  7713. text-transform:none;
  7714. }
  7715. #u1102_div {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:169px;
  7721. height:17px;
  7722. background:inherit;
  7723. background-color:rgba(255, 255, 255, 0);
  7724. border:none;
  7725. border-left:0px;
  7726. border-top:0px;
  7727. border-right:0px;
  7728. border-radius:0px;
  7729. border-bottom-right-radius:0px;
  7730. border-bottom-left-radius:0px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:12px;
  7738. color:#7F7F7F;
  7739. }
  7740. #u1102 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:504px;
  7744. top:1082px;
  7745. width:169px;
  7746. height:17px;
  7747. display:flex;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. color:#7F7F7F;
  7753. }
  7754. #u1102 .text {
  7755. position:absolute;
  7756. align-self:center;
  7757. padding:0px 0px 0px 0px;
  7758. box-sizing:border-box;
  7759. width:100%;
  7760. }
  7761. #u1102_text {
  7762. border-width:0px;
  7763. white-space:nowrap;
  7764. text-transform:none;
  7765. }
  7766. #u1103 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:0px;
  7770. top:0px;
  7771. width:0px;
  7772. height:0px;
  7773. }
  7774. #u1104_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:240px;
  7780. height:80px;
  7781. background:inherit;
  7782. background-color:rgba(242, 242, 242, 1);
  7783. border:none;
  7784. border-radius:0px;
  7785. -moz-box-shadow:none;
  7786. -webkit-box-shadow:none;
  7787. box-shadow:none;
  7788. }
  7789. #u1104 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:694px;
  7793. top:1036px;
  7794. width:240px;
  7795. height:80px;
  7796. display:flex;
  7797. }
  7798. #u1104 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 2px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u1104_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u1105_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:50px;
  7817. height:53px;
  7818. }
  7819. #u1105 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:710px;
  7823. top:1049px;
  7824. width:50px;
  7825. height:53px;
  7826. display:flex;
  7827. }
  7828. #u1105 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 2px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u1105_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. visibility:hidden;
  7840. }
  7841. #u1106 {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:0px;
  7847. height:0px;
  7848. }
  7849. #u1107_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:73px;
  7855. height:25px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-left:0px;
  7860. border-top:0px;
  7861. border-right:0px;
  7862. border-radius:0px;
  7863. border-bottom-right-radius:0px;
  7864. border-bottom-left-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:18px;
  7872. }
  7873. #u1107 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:775px;
  7877. top:1052px;
  7878. width:73px;
  7879. height:25px;
  7880. display:flex;
  7881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:18px;
  7885. }
  7886. #u1107 .text {
  7887. position:absolute;
  7888. align-self:center;
  7889. padding:0px 0px 0px 0px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u1107_text {
  7894. border-width:0px;
  7895. white-space:nowrap;
  7896. text-transform:none;
  7897. }
  7898. #u1108_div {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:169px;
  7904. height:17px;
  7905. background:inherit;
  7906. background-color:rgba(255, 255, 255, 0);
  7907. border:none;
  7908. border-left:0px;
  7909. border-top:0px;
  7910. border-right:0px;
  7911. border-radius:0px;
  7912. border-bottom-right-radius:0px;
  7913. border-bottom-left-radius:0px;
  7914. -moz-box-shadow:none;
  7915. -webkit-box-shadow:none;
  7916. box-shadow:none;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:12px;
  7921. color:#7F7F7F;
  7922. }
  7923. #u1108 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:775px;
  7927. top:1082px;
  7928. width:169px;
  7929. height:17px;
  7930. display:flex;
  7931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:12px;
  7935. color:#7F7F7F;
  7936. }
  7937. #u1108 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:0px 0px 0px 0px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u1108_text {
  7945. border-width:0px;
  7946. white-space:nowrap;
  7947. text-transform:none;
  7948. }
  7949. #u1109 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:0px;
  7955. height:0px;
  7956. }
  7957. #u1110_div {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:240px;
  7963. height:80px;
  7964. background:inherit;
  7965. background-color:rgba(242, 242, 242, 1);
  7966. border:none;
  7967. border-radius:0px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. }
  7972. #u1110 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:964px;
  7976. top:936px;
  7977. width:240px;
  7978. height:80px;
  7979. display:flex;
  7980. }
  7981. #u1110 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 2px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u1110_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u1111_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:50px;
  8000. height:53px;
  8001. }
  8002. #u1111 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:980px;
  8006. top:949px;
  8007. width:50px;
  8008. height:53px;
  8009. display:flex;
  8010. }
  8011. #u1111 .text {
  8012. position:absolute;
  8013. align-self:center;
  8014. padding:2px 2px 2px 2px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u1111_text {
  8019. border-width:0px;
  8020. word-wrap:break-word;
  8021. text-transform:none;
  8022. visibility:hidden;
  8023. }
  8024. #u1112 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:0px;
  8028. top:0px;
  8029. width:0px;
  8030. height:0px;
  8031. }
  8032. #u1113_div {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:73px;
  8038. height:25px;
  8039. background:inherit;
  8040. background-color:rgba(255, 255, 255, 0);
  8041. border:none;
  8042. border-left:0px;
  8043. border-top:0px;
  8044. border-right:0px;
  8045. border-radius:0px;
  8046. border-bottom-right-radius:0px;
  8047. border-bottom-left-radius:0px;
  8048. -moz-box-shadow:none;
  8049. -webkit-box-shadow:none;
  8050. box-shadow:none;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:18px;
  8055. }
  8056. #u1113 {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:1045px;
  8060. top:952px;
  8061. width:73px;
  8062. height:25px;
  8063. display:flex;
  8064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8065. font-weight:400;
  8066. font-style:normal;
  8067. font-size:18px;
  8068. }
  8069. #u1113 .text {
  8070. position:absolute;
  8071. align-self:center;
  8072. padding:0px 0px 0px 0px;
  8073. box-sizing:border-box;
  8074. width:100%;
  8075. }
  8076. #u1113_text {
  8077. border-width:0px;
  8078. white-space:nowrap;
  8079. text-transform:none;
  8080. }
  8081. #u1114_div {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:205px;
  8087. height:17px;
  8088. background:inherit;
  8089. background-color:rgba(255, 255, 255, 0);
  8090. border:none;
  8091. border-left:0px;
  8092. border-top:0px;
  8093. border-right:0px;
  8094. border-radius:0px;
  8095. border-bottom-right-radius:0px;
  8096. border-bottom-left-radius:0px;
  8097. -moz-box-shadow:none;
  8098. -webkit-box-shadow:none;
  8099. box-shadow:none;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:12px;
  8104. color:#7F7F7F;
  8105. }
  8106. #u1114 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:1045px;
  8110. top:982px;
  8111. width:205px;
  8112. height:17px;
  8113. display:flex;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:12px;
  8118. color:#7F7F7F;
  8119. }
  8120. #u1114 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:0px 0px 0px 0px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u1114_text {
  8128. border-width:0px;
  8129. white-space:nowrap;
  8130. text-transform:none;
  8131. }
  8132. #u1115 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u1116_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:240px;
  8146. height:80px;
  8147. background:inherit;
  8148. background-color:rgba(242, 242, 242, 1);
  8149. border:none;
  8150. border-radius:0px;
  8151. -moz-box-shadow:none;
  8152. -webkit-box-shadow:none;
  8153. box-shadow:none;
  8154. }
  8155. #u1116 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:423px;
  8159. top:736px;
  8160. width:240px;
  8161. height:80px;
  8162. display:flex;
  8163. }
  8164. #u1116 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:2px 2px 2px 2px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u1116_text {
  8172. border-width:0px;
  8173. word-wrap:break-word;
  8174. text-transform:none;
  8175. visibility:hidden;
  8176. }
  8177. #u1117_img {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:50px;
  8183. height:53px;
  8184. }
  8185. #u1117 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:439px;
  8189. top:749px;
  8190. width:50px;
  8191. height:53px;
  8192. display:flex;
  8193. }
  8194. #u1117 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:2px 2px 2px 2px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u1117_text {
  8202. border-width:0px;
  8203. word-wrap:break-word;
  8204. text-transform:none;
  8205. visibility:hidden;
  8206. }
  8207. #u1118 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:0px;
  8213. height:0px;
  8214. }
  8215. #u1119_div {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:0px;
  8219. top:0px;
  8220. width:73px;
  8221. height:25px;
  8222. background:inherit;
  8223. background-color:rgba(255, 255, 255, 0);
  8224. border:none;
  8225. border-left:0px;
  8226. border-top:0px;
  8227. border-right:0px;
  8228. border-radius:0px;
  8229. border-bottom-right-radius:0px;
  8230. border-bottom-left-radius:0px;
  8231. -moz-box-shadow:none;
  8232. -webkit-box-shadow:none;
  8233. box-shadow:none;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:18px;
  8238. }
  8239. #u1119 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:504px;
  8243. top:752px;
  8244. width:73px;
  8245. height:25px;
  8246. display:flex;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:18px;
  8251. }
  8252. #u1119 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:0px 0px 0px 0px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u1119_text {
  8260. border-width:0px;
  8261. white-space:nowrap;
  8262. text-transform:none;
  8263. }
  8264. #u1120_div {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:145px;
  8270. height:17px;
  8271. background:inherit;
  8272. background-color:rgba(255, 255, 255, 0);
  8273. border:none;
  8274. border-left:0px;
  8275. border-top:0px;
  8276. border-right:0px;
  8277. border-radius:0px;
  8278. border-bottom-right-radius:0px;
  8279. border-bottom-left-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:12px;
  8287. color:#7F7F7F;
  8288. }
  8289. #u1120 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:504px;
  8293. top:782px;
  8294. width:145px;
  8295. height:17px;
  8296. display:flex;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:12px;
  8301. color:#7F7F7F;
  8302. }
  8303. #u1120 .text {
  8304. position:absolute;
  8305. align-self:center;
  8306. padding:0px 0px 0px 0px;
  8307. box-sizing:border-box;
  8308. width:100%;
  8309. }
  8310. #u1120_text {
  8311. border-width:0px;
  8312. white-space:nowrap;
  8313. text-transform:none;
  8314. }
  8315. #u1121 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:0px;
  8319. top:0px;
  8320. width:0px;
  8321. height:0px;
  8322. }
  8323. #u1122_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:240px;
  8329. height:80px;
  8330. background:inherit;
  8331. background-color:rgba(242, 242, 242, 1);
  8332. border:none;
  8333. border-radius:0px;
  8334. -moz-box-shadow:none;
  8335. -webkit-box-shadow:none;
  8336. box-shadow:none;
  8337. }
  8338. #u1122 {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:693px;
  8342. top:736px;
  8343. width:240px;
  8344. height:80px;
  8345. display:flex;
  8346. }
  8347. #u1122 .text {
  8348. position:absolute;
  8349. align-self:center;
  8350. padding:2px 2px 2px 2px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u1122_text {
  8355. border-width:0px;
  8356. word-wrap:break-word;
  8357. text-transform:none;
  8358. visibility:hidden;
  8359. }
  8360. #u1123_img {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:0px;
  8364. top:0px;
  8365. width:50px;
  8366. height:53px;
  8367. }
  8368. #u1123 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:709px;
  8372. top:749px;
  8373. width:50px;
  8374. height:53px;
  8375. display:flex;
  8376. }
  8377. #u1123 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 2px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u1123_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. visibility:hidden;
  8389. }
  8390. #u1124 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:0px;
  8396. height:0px;
  8397. }
  8398. #u1125_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:73px;
  8404. height:25px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 0);
  8407. border:none;
  8408. border-left:0px;
  8409. border-top:0px;
  8410. border-right:0px;
  8411. border-radius:0px;
  8412. border-bottom-right-radius:0px;
  8413. border-bottom-left-radius:0px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:18px;
  8421. }
  8422. #u1125 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:774px;
  8426. top:752px;
  8427. width:73px;
  8428. height:25px;
  8429. display:flex;
  8430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:18px;
  8434. }
  8435. #u1125 .text {
  8436. position:absolute;
  8437. align-self:center;
  8438. padding:0px 0px 0px 0px;
  8439. box-sizing:border-box;
  8440. width:100%;
  8441. }
  8442. #u1125_text {
  8443. border-width:0px;
  8444. white-space:nowrap;
  8445. text-transform:none;
  8446. }
  8447. #u1126_div {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:0px;
  8451. top:0px;
  8452. width:241px;
  8453. height:17px;
  8454. background:inherit;
  8455. background-color:rgba(255, 255, 255, 0);
  8456. border:none;
  8457. border-left:0px;
  8458. border-top:0px;
  8459. border-right:0px;
  8460. border-radius:0px;
  8461. border-bottom-right-radius:0px;
  8462. border-bottom-left-radius:0px;
  8463. -moz-box-shadow:none;
  8464. -webkit-box-shadow:none;
  8465. box-shadow:none;
  8466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8467. font-weight:400;
  8468. font-style:normal;
  8469. font-size:12px;
  8470. color:#7F7F7F;
  8471. }
  8472. #u1126 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:774px;
  8476. top:782px;
  8477. width:241px;
  8478. height:17px;
  8479. display:flex;
  8480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8481. font-weight:400;
  8482. font-style:normal;
  8483. font-size:12px;
  8484. color:#7F7F7F;
  8485. }
  8486. #u1126 .text {
  8487. position:absolute;
  8488. align-self:center;
  8489. padding:0px 0px 0px 0px;
  8490. box-sizing:border-box;
  8491. width:100%;
  8492. }
  8493. #u1126_text {
  8494. border-width:0px;
  8495. white-space:nowrap;
  8496. text-transform:none;
  8497. }
  8498. #u1127 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:0px;
  8502. top:0px;
  8503. width:0px;
  8504. height:0px;
  8505. }
  8506. #u1128_div {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:240px;
  8512. height:80px;
  8513. background:inherit;
  8514. background-color:rgba(242, 242, 242, 1);
  8515. border:none;
  8516. border-radius:0px;
  8517. -moz-box-shadow:none;
  8518. -webkit-box-shadow:none;
  8519. box-shadow:none;
  8520. }
  8521. #u1128 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:153px;
  8525. top:736px;
  8526. width:240px;
  8527. height:80px;
  8528. display:flex;
  8529. }
  8530. #u1128 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u1128_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u1129_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:50px;
  8549. height:53px;
  8550. }
  8551. #u1129 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:169px;
  8555. top:749px;
  8556. width:50px;
  8557. height:53px;
  8558. display:flex;
  8559. }
  8560. #u1129 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:2px 2px 2px 2px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u1129_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. visibility:hidden;
  8572. }
  8573. #u1130 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:0px;
  8577. top:0px;
  8578. width:0px;
  8579. height:0px;
  8580. }
  8581. #u1131_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:91px;
  8587. height:25px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 0);
  8590. border:none;
  8591. border-left:0px;
  8592. border-top:0px;
  8593. border-right:0px;
  8594. border-radius:0px;
  8595. border-bottom-right-radius:0px;
  8596. border-bottom-left-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:18px;
  8604. }
  8605. #u1131 {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:234px;
  8609. top:752px;
  8610. width:91px;
  8611. height:25px;
  8612. display:flex;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:18px;
  8617. }
  8618. #u1131 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:0px 0px 0px 0px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u1131_text {
  8626. border-width:0px;
  8627. white-space:nowrap;
  8628. text-transform:none;
  8629. }
  8630. #u1132_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:145px;
  8636. height:17px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 0);
  8639. border:none;
  8640. border-left:0px;
  8641. border-top:0px;
  8642. border-right:0px;
  8643. border-radius:0px;
  8644. border-bottom-right-radius:0px;
  8645. border-bottom-left-radius:0px;
  8646. -moz-box-shadow:none;
  8647. -webkit-box-shadow:none;
  8648. box-shadow:none;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. font-size:12px;
  8653. color:#7F7F7F;
  8654. }
  8655. #u1132 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:234px;
  8659. top:782px;
  8660. width:145px;
  8661. height:17px;
  8662. display:flex;
  8663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:12px;
  8667. color:#7F7F7F;
  8668. }
  8669. #u1132 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:0px 0px 0px 0px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u1132_text {
  8677. border-width:0px;
  8678. white-space:nowrap;
  8679. text-transform:none;
  8680. }
  8681. #u1133 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:0px;
  8687. height:0px;
  8688. }
  8689. #u1134_div {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:240px;
  8695. height:80px;
  8696. background:inherit;
  8697. background-color:rgba(242, 242, 242, 1);
  8698. border:none;
  8699. border-radius:0px;
  8700. -moz-box-shadow:none;
  8701. -webkit-box-shadow:none;
  8702. box-shadow:none;
  8703. }
  8704. #u1134 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:153px;
  8708. top:936px;
  8709. width:240px;
  8710. height:80px;
  8711. display:flex;
  8712. }
  8713. #u1134 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 2px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u1134_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u1135_img {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:50px;
  8732. height:53px;
  8733. }
  8734. #u1135 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:169px;
  8738. top:949px;
  8739. width:50px;
  8740. height:53px;
  8741. display:flex;
  8742. }
  8743. #u1135 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:2px 2px 2px 2px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u1135_text {
  8751. border-width:0px;
  8752. word-wrap:break-word;
  8753. text-transform:none;
  8754. visibility:hidden;
  8755. }
  8756. #u1136 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:0px;
  8762. height:0px;
  8763. }
  8764. #u1137_div {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:0px;
  8768. top:0px;
  8769. width:73px;
  8770. height:25px;
  8771. background:inherit;
  8772. background-color:rgba(255, 255, 255, 0);
  8773. border:none;
  8774. border-left:0px;
  8775. border-top:0px;
  8776. border-right:0px;
  8777. border-radius:0px;
  8778. border-bottom-right-radius:0px;
  8779. border-bottom-left-radius:0px;
  8780. -moz-box-shadow:none;
  8781. -webkit-box-shadow:none;
  8782. box-shadow:none;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:18px;
  8787. }
  8788. #u1137 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:234px;
  8792. top:952px;
  8793. width:73px;
  8794. height:25px;
  8795. display:flex;
  8796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8797. font-weight:400;
  8798. font-style:normal;
  8799. font-size:18px;
  8800. }
  8801. #u1137 .text {
  8802. position:absolute;
  8803. align-self:center;
  8804. padding:0px 0px 0px 0px;
  8805. box-sizing:border-box;
  8806. width:100%;
  8807. }
  8808. #u1137_text {
  8809. border-width:0px;
  8810. white-space:nowrap;
  8811. text-transform:none;
  8812. }
  8813. #u1138_div {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:181px;
  8819. height:17px;
  8820. background:inherit;
  8821. background-color:rgba(255, 255, 255, 0);
  8822. border:none;
  8823. border-left:0px;
  8824. border-top:0px;
  8825. border-right:0px;
  8826. border-radius:0px;
  8827. border-bottom-right-radius:0px;
  8828. border-bottom-left-radius:0px;
  8829. -moz-box-shadow:none;
  8830. -webkit-box-shadow:none;
  8831. box-shadow:none;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. color:#7F7F7F;
  8837. }
  8838. #u1138 {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:234px;
  8842. top:982px;
  8843. width:181px;
  8844. height:17px;
  8845. display:flex;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:12px;
  8850. color:#7F7F7F;
  8851. }
  8852. #u1138 .text {
  8853. position:absolute;
  8854. align-self:center;
  8855. padding:0px 0px 0px 0px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u1138_text {
  8860. border-width:0px;
  8861. white-space:nowrap;
  8862. text-transform:none;
  8863. }
  8864. #u1139 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:0px;
  8870. height:0px;
  8871. }
  8872. #u1140_div {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:240px;
  8878. height:80px;
  8879. background:inherit;
  8880. background-color:rgba(242, 242, 242, 1);
  8881. border:none;
  8882. border-radius:0px;
  8883. -moz-box-shadow:none;
  8884. -webkit-box-shadow:none;
  8885. box-shadow:none;
  8886. }
  8887. #u1140 {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:964px;
  8891. top:1036px;
  8892. width:240px;
  8893. height:80px;
  8894. display:flex;
  8895. }
  8896. #u1140 .text {
  8897. position:absolute;
  8898. align-self:center;
  8899. padding:2px 2px 2px 2px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u1140_text {
  8904. border-width:0px;
  8905. word-wrap:break-word;
  8906. text-transform:none;
  8907. visibility:hidden;
  8908. }
  8909. #u1141_img {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:50px;
  8915. height:53px;
  8916. }
  8917. #u1141 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:980px;
  8921. top:1049px;
  8922. width:50px;
  8923. height:53px;
  8924. display:flex;
  8925. }
  8926. #u1141 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 2px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u1141_text {
  8934. border-width:0px;
  8935. word-wrap:break-word;
  8936. text-transform:none;
  8937. visibility:hidden;
  8938. }
  8939. #u1142 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:0px;
  8945. height:0px;
  8946. }
  8947. #u1143_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:109px;
  8953. height:25px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 0);
  8956. border:none;
  8957. border-left:0px;
  8958. border-top:0px;
  8959. border-right:0px;
  8960. border-radius:0px;
  8961. border-bottom-right-radius:0px;
  8962. border-bottom-left-radius:0px;
  8963. -moz-box-shadow:none;
  8964. -webkit-box-shadow:none;
  8965. box-shadow:none;
  8966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:18px;
  8970. }
  8971. #u1143 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:1045px;
  8975. top:1052px;
  8976. width:109px;
  8977. height:25px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:18px;
  8983. }
  8984. #u1143 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:0px 0px 0px 0px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u1143_text {
  8992. border-width:0px;
  8993. white-space:nowrap;
  8994. text-transform:none;
  8995. }
  8996. #u1144_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:211px;
  9002. height:17px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 0);
  9005. border:none;
  9006. border-left:0px;
  9007. border-top:0px;
  9008. border-right:0px;
  9009. border-radius:0px;
  9010. border-bottom-right-radius:0px;
  9011. border-bottom-left-radius:0px;
  9012. -moz-box-shadow:none;
  9013. -webkit-box-shadow:none;
  9014. box-shadow:none;
  9015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9016. font-weight:400;
  9017. font-style:normal;
  9018. font-size:12px;
  9019. color:#7F7F7F;
  9020. }
  9021. #u1144 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:1045px;
  9025. top:1082px;
  9026. width:211px;
  9027. height:17px;
  9028. display:flex;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:12px;
  9033. color:#7F7F7F;
  9034. }
  9035. #u1144 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:0px 0px 0px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u1144_text {
  9043. border-width:0px;
  9044. white-space:nowrap;
  9045. text-transform:none;
  9046. }
  9047. #u1145 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:0px;
  9053. height:0px;
  9054. }
  9055. #u1146_div {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:240px;
  9061. height:80px;
  9062. background:inherit;
  9063. background-color:rgba(242, 242, 242, 1);
  9064. border:none;
  9065. border-radius:0px;
  9066. -moz-box-shadow:none;
  9067. -webkit-box-shadow:none;
  9068. box-shadow:none;
  9069. }
  9070. #u1146 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:1235px;
  9074. top:1036px;
  9075. width:240px;
  9076. height:80px;
  9077. display:flex;
  9078. }
  9079. #u1146 .text {
  9080. position:absolute;
  9081. align-self:center;
  9082. padding:2px 2px 2px 2px;
  9083. box-sizing:border-box;
  9084. width:100%;
  9085. }
  9086. #u1146_text {
  9087. border-width:0px;
  9088. word-wrap:break-word;
  9089. text-transform:none;
  9090. visibility:hidden;
  9091. }
  9092. #u1147_img {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:0px;
  9096. top:0px;
  9097. width:50px;
  9098. height:53px;
  9099. }
  9100. #u1147 {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:1251px;
  9104. top:1049px;
  9105. width:50px;
  9106. height:53px;
  9107. display:flex;
  9108. }
  9109. #u1147 .text {
  9110. position:absolute;
  9111. align-self:center;
  9112. padding:2px 2px 2px 2px;
  9113. box-sizing:border-box;
  9114. width:100%;
  9115. }
  9116. #u1147_text {
  9117. border-width:0px;
  9118. word-wrap:break-word;
  9119. text-transform:none;
  9120. visibility:hidden;
  9121. }
  9122. #u1148 {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:0px;
  9128. height:0px;
  9129. }
  9130. #u1149_div {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:145px;
  9136. height:25px;
  9137. background:inherit;
  9138. background-color:rgba(255, 255, 255, 0);
  9139. border:none;
  9140. border-left:0px;
  9141. border-top:0px;
  9142. border-right:0px;
  9143. border-radius:0px;
  9144. border-bottom-right-radius:0px;
  9145. border-bottom-left-radius:0px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:18px;
  9153. }
  9154. #u1149 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:1316px;
  9158. top:1052px;
  9159. width:145px;
  9160. height:25px;
  9161. display:flex;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:18px;
  9166. }
  9167. #u1149 .text {
  9168. position:absolute;
  9169. align-self:center;
  9170. padding:0px 0px 0px 0px;
  9171. box-sizing:border-box;
  9172. width:100%;
  9173. }
  9174. #u1149_text {
  9175. border-width:0px;
  9176. white-space:nowrap;
  9177. text-transform:none;
  9178. }
  9179. #u1150_div {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:205px;
  9185. height:17px;
  9186. background:inherit;
  9187. background-color:rgba(255, 255, 255, 0);
  9188. border:none;
  9189. border-left:0px;
  9190. border-top:0px;
  9191. border-right:0px;
  9192. border-radius:0px;
  9193. border-bottom-right-radius:0px;
  9194. border-bottom-left-radius:0px;
  9195. -moz-box-shadow:none;
  9196. -webkit-box-shadow:none;
  9197. box-shadow:none;
  9198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9199. font-weight:400;
  9200. font-style:normal;
  9201. font-size:12px;
  9202. color:#7F7F7F;
  9203. }
  9204. #u1150 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:1316px;
  9208. top:1082px;
  9209. width:205px;
  9210. height:17px;
  9211. display:flex;
  9212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9213. font-weight:400;
  9214. font-style:normal;
  9215. font-size:12px;
  9216. color:#7F7F7F;
  9217. }
  9218. #u1150 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:0px 0px 0px 0px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u1150_text {
  9226. border-width:0px;
  9227. white-space:nowrap;
  9228. text-transform:none;
  9229. }
  9230. #u1151 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:0px;
  9236. height:0px;
  9237. }
  9238. #u1152_div {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:0px;
  9242. top:0px;
  9243. width:240px;
  9244. height:80px;
  9245. background:inherit;
  9246. background-color:rgba(242, 242, 242, 1);
  9247. border:none;
  9248. border-radius:0px;
  9249. -moz-box-shadow:none;
  9250. -webkit-box-shadow:none;
  9251. box-shadow:none;
  9252. }
  9253. #u1152 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:694px;
  9257. top:936px;
  9258. width:240px;
  9259. height:80px;
  9260. display:flex;
  9261. }
  9262. #u1152 .text {
  9263. position:absolute;
  9264. align-self:center;
  9265. padding:2px 2px 2px 2px;
  9266. box-sizing:border-box;
  9267. width:100%;
  9268. }
  9269. #u1152_text {
  9270. border-width:0px;
  9271. word-wrap:break-word;
  9272. text-transform:none;
  9273. visibility:hidden;
  9274. }
  9275. #u1153_img {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:0px;
  9279. top:0px;
  9280. width:50px;
  9281. height:53px;
  9282. }
  9283. #u1153 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:710px;
  9287. top:949px;
  9288. width:50px;
  9289. height:53px;
  9290. display:flex;
  9291. }
  9292. #u1153 .text {
  9293. position:absolute;
  9294. align-self:center;
  9295. padding:2px 2px 2px 2px;
  9296. box-sizing:border-box;
  9297. width:100%;
  9298. }
  9299. #u1153_text {
  9300. border-width:0px;
  9301. word-wrap:break-word;
  9302. text-transform:none;
  9303. visibility:hidden;
  9304. }
  9305. #u1154 {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:0px;
  9309. top:0px;
  9310. width:0px;
  9311. height:0px;
  9312. }
  9313. #u1155_div {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:73px;
  9319. height:25px;
  9320. background:inherit;
  9321. background-color:rgba(255, 255, 255, 0);
  9322. border:none;
  9323. border-left:0px;
  9324. border-top:0px;
  9325. border-right:0px;
  9326. border-radius:0px;
  9327. border-bottom-right-radius:0px;
  9328. border-bottom-left-radius:0px;
  9329. -moz-box-shadow:none;
  9330. -webkit-box-shadow:none;
  9331. box-shadow:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:18px;
  9336. }
  9337. #u1155 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:775px;
  9341. top:952px;
  9342. width:73px;
  9343. height:25px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:18px;
  9349. }
  9350. #u1155 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:0px 0px 0px 0px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u1155_text {
  9358. border-width:0px;
  9359. white-space:nowrap;
  9360. text-transform:none;
  9361. }
  9362. #u1156_div {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:145px;
  9368. height:17px;
  9369. background:inherit;
  9370. background-color:rgba(255, 255, 255, 0);
  9371. border:none;
  9372. border-left:0px;
  9373. border-top:0px;
  9374. border-right:0px;
  9375. border-radius:0px;
  9376. border-bottom-right-radius:0px;
  9377. border-bottom-left-radius:0px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:12px;
  9385. color:#7F7F7F;
  9386. }
  9387. #u1156 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:775px;
  9391. top:982px;
  9392. width:145px;
  9393. height:17px;
  9394. display:flex;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:12px;
  9399. color:#7F7F7F;
  9400. }
  9401. #u1156 .text {
  9402. position:absolute;
  9403. align-self:center;
  9404. padding:0px 0px 0px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u1156_text {
  9409. border-width:0px;
  9410. white-space:nowrap;
  9411. text-transform:none;
  9412. }
  9413. #u1157 {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:0px;
  9419. height:0px;
  9420. }
  9421. #u1158_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:240px;
  9427. height:80px;
  9428. background:inherit;
  9429. background-color:rgba(242, 242, 242, 1);
  9430. border:none;
  9431. border-radius:0px;
  9432. -moz-box-shadow:none;
  9433. -webkit-box-shadow:none;
  9434. box-shadow:none;
  9435. }
  9436. #u1158 {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:1234px;
  9440. top:936px;
  9441. width:240px;
  9442. height:80px;
  9443. display:flex;
  9444. }
  9445. #u1158 .text {
  9446. position:absolute;
  9447. align-self:center;
  9448. padding:2px 2px 2px 2px;
  9449. box-sizing:border-box;
  9450. width:100%;
  9451. }
  9452. #u1158_text {
  9453. border-width:0px;
  9454. word-wrap:break-word;
  9455. text-transform:none;
  9456. visibility:hidden;
  9457. }
  9458. #u1159_img {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:50px;
  9464. height:53px;
  9465. }
  9466. #u1159 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:1250px;
  9470. top:949px;
  9471. width:50px;
  9472. height:53px;
  9473. display:flex;
  9474. }
  9475. #u1159 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:2px 2px 2px 2px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u1159_text {
  9483. border-width:0px;
  9484. word-wrap:break-word;
  9485. text-transform:none;
  9486. visibility:hidden;
  9487. }
  9488. #u1160 {
  9489. border-width:0px;
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:0px;
  9494. height:0px;
  9495. }
  9496. #u1161_div {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:73px;
  9502. height:25px;
  9503. background:inherit;
  9504. background-color:rgba(255, 255, 255, 0);
  9505. border:none;
  9506. border-left:0px;
  9507. border-top:0px;
  9508. border-right:0px;
  9509. border-radius:0px;
  9510. border-bottom-right-radius:0px;
  9511. border-bottom-left-radius:0px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:18px;
  9519. }
  9520. #u1161 {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:1315px;
  9524. top:952px;
  9525. width:73px;
  9526. height:25px;
  9527. display:flex;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:18px;
  9532. }
  9533. #u1161 .text {
  9534. position:absolute;
  9535. align-self:center;
  9536. padding:0px 0px 0px 0px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u1161_text {
  9541. border-width:0px;
  9542. white-space:nowrap;
  9543. text-transform:none;
  9544. }
  9545. #u1162_div {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:193px;
  9551. height:17px;
  9552. background:inherit;
  9553. background-color:rgba(255, 255, 255, 0);
  9554. border:none;
  9555. border-left:0px;
  9556. border-top:0px;
  9557. border-right:0px;
  9558. border-radius:0px;
  9559. border-bottom-right-radius:0px;
  9560. border-bottom-left-radius:0px;
  9561. -moz-box-shadow:none;
  9562. -webkit-box-shadow:none;
  9563. box-shadow:none;
  9564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9565. font-weight:400;
  9566. font-style:normal;
  9567. font-size:12px;
  9568. color:#7F7F7F;
  9569. }
  9570. #u1162 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:1315px;
  9574. top:982px;
  9575. width:193px;
  9576. height:17px;
  9577. display:flex;
  9578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9579. font-weight:400;
  9580. font-style:normal;
  9581. font-size:12px;
  9582. color:#7F7F7F;
  9583. }
  9584. #u1162 .text {
  9585. position:absolute;
  9586. align-self:center;
  9587. padding:0px 0px 0px 0px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u1162_text {
  9592. border-width:0px;
  9593. white-space:nowrap;
  9594. text-transform:none;
  9595. }
  9596. #u1163 {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:0px;
  9602. height:0px;
  9603. }
  9604. #u1164_div {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:240px;
  9610. height:80px;
  9611. background:inherit;
  9612. background-color:rgba(242, 242, 242, 1);
  9613. border:none;
  9614. border-radius:0px;
  9615. -moz-box-shadow:none;
  9616. -webkit-box-shadow:none;
  9617. box-shadow:none;
  9618. }
  9619. #u1164 {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:423px;
  9623. top:1132px;
  9624. width:240px;
  9625. height:80px;
  9626. display:flex;
  9627. }
  9628. #u1164 .text {
  9629. position:absolute;
  9630. align-self:center;
  9631. padding:2px 2px 2px 2px;
  9632. box-sizing:border-box;
  9633. width:100%;
  9634. }
  9635. #u1164_text {
  9636. border-width:0px;
  9637. word-wrap:break-word;
  9638. text-transform:none;
  9639. visibility:hidden;
  9640. }
  9641. #u1165_img {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:50px;
  9647. height:53px;
  9648. }
  9649. #u1165 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:439px;
  9653. top:1145px;
  9654. width:50px;
  9655. height:53px;
  9656. display:flex;
  9657. }
  9658. #u1165 .text {
  9659. position:absolute;
  9660. align-self:center;
  9661. padding:2px 2px 2px 2px;
  9662. box-sizing:border-box;
  9663. width:100%;
  9664. }
  9665. #u1165_text {
  9666. border-width:0px;
  9667. word-wrap:break-word;
  9668. text-transform:none;
  9669. visibility:hidden;
  9670. }
  9671. #u1166 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:0px;
  9677. height:0px;
  9678. }
  9679. #u1167_div {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:91px;
  9685. height:25px;
  9686. background:inherit;
  9687. background-color:rgba(255, 255, 255, 0);
  9688. border:none;
  9689. border-left:0px;
  9690. border-top:0px;
  9691. border-right:0px;
  9692. border-radius:0px;
  9693. border-bottom-right-radius:0px;
  9694. border-bottom-left-radius:0px;
  9695. -moz-box-shadow:none;
  9696. -webkit-box-shadow:none;
  9697. box-shadow:none;
  9698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:18px;
  9702. }
  9703. #u1167 {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:504px;
  9707. top:1148px;
  9708. width:91px;
  9709. height:25px;
  9710. display:flex;
  9711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9712. font-weight:400;
  9713. font-style:normal;
  9714. font-size:18px;
  9715. }
  9716. #u1167 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:0px 0px 0px 0px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u1167_text {
  9724. border-width:0px;
  9725. white-space:nowrap;
  9726. text-transform:none;
  9727. }
  9728. #u1168_div {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:109px;
  9734. height:17px;
  9735. background:inherit;
  9736. background-color:rgba(255, 255, 255, 0);
  9737. border:none;
  9738. border-left:0px;
  9739. border-top:0px;
  9740. border-right:0px;
  9741. border-radius:0px;
  9742. border-bottom-right-radius:0px;
  9743. border-bottom-left-radius:0px;
  9744. -moz-box-shadow:none;
  9745. -webkit-box-shadow:none;
  9746. box-shadow:none;
  9747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. font-size:12px;
  9751. color:#7F7F7F;
  9752. }
  9753. #u1168 {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:504px;
  9757. top:1178px;
  9758. width:109px;
  9759. height:17px;
  9760. display:flex;
  9761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9762. font-weight:400;
  9763. font-style:normal;
  9764. font-size:12px;
  9765. color:#7F7F7F;
  9766. }
  9767. #u1168 .text {
  9768. position:absolute;
  9769. align-self:center;
  9770. padding:0px 0px 0px 0px;
  9771. box-sizing:border-box;
  9772. width:100%;
  9773. }
  9774. #u1168_text {
  9775. border-width:0px;
  9776. white-space:nowrap;
  9777. text-transform:none;
  9778. }
  9779. #u1169 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:0px;
  9785. height:0px;
  9786. }
  9787. #u1170_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:240px;
  9793. height:80px;
  9794. background:inherit;
  9795. background-color:rgba(242, 242, 242, 1);
  9796. border:none;
  9797. border-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. }
  9802. #u1170 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:694px;
  9806. top:1132px;
  9807. width:240px;
  9808. height:80px;
  9809. display:flex;
  9810. }
  9811. #u1170 .text {
  9812. position:absolute;
  9813. align-self:center;
  9814. padding:2px 2px 2px 2px;
  9815. box-sizing:border-box;
  9816. width:100%;
  9817. }
  9818. #u1170_text {
  9819. border-width:0px;
  9820. word-wrap:break-word;
  9821. text-transform:none;
  9822. visibility:hidden;
  9823. }
  9824. #u1171_img {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:50px;
  9830. height:53px;
  9831. }
  9832. #u1171 {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:710px;
  9836. top:1145px;
  9837. width:50px;
  9838. height:53px;
  9839. display:flex;
  9840. }
  9841. #u1171 .text {
  9842. position:absolute;
  9843. align-self:center;
  9844. padding:2px 2px 2px 2px;
  9845. box-sizing:border-box;
  9846. width:100%;
  9847. }
  9848. #u1171_text {
  9849. border-width:0px;
  9850. word-wrap:break-word;
  9851. text-transform:none;
  9852. visibility:hidden;
  9853. }
  9854. #u1172 {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:0px;
  9858. top:0px;
  9859. width:0px;
  9860. height:0px;
  9861. }
  9862. #u1173_div {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:73px;
  9868. height:25px;
  9869. background:inherit;
  9870. background-color:rgba(255, 255, 255, 0);
  9871. border:none;
  9872. border-left:0px;
  9873. border-top:0px;
  9874. border-right:0px;
  9875. border-radius:0px;
  9876. border-bottom-right-radius:0px;
  9877. border-bottom-left-radius:0px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9882. font-weight:400;
  9883. font-style:normal;
  9884. font-size:18px;
  9885. }
  9886. #u1173 {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:775px;
  9890. top:1148px;
  9891. width:73px;
  9892. height:25px;
  9893. display:flex;
  9894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9895. font-weight:400;
  9896. font-style:normal;
  9897. font-size:18px;
  9898. }
  9899. #u1173 .text {
  9900. position:absolute;
  9901. align-self:center;
  9902. padding:0px 0px 0px 0px;
  9903. box-sizing:border-box;
  9904. width:100%;
  9905. }
  9906. #u1173_text {
  9907. border-width:0px;
  9908. white-space:nowrap;
  9909. text-transform:none;
  9910. }
  9911. #u1174_div {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:0px;
  9915. top:0px;
  9916. width:97px;
  9917. height:17px;
  9918. background:inherit;
  9919. background-color:rgba(255, 255, 255, 0);
  9920. border:none;
  9921. border-left:0px;
  9922. border-top:0px;
  9923. border-right:0px;
  9924. border-radius:0px;
  9925. border-bottom-right-radius:0px;
  9926. border-bottom-left-radius:0px;
  9927. -moz-box-shadow:none;
  9928. -webkit-box-shadow:none;
  9929. box-shadow:none;
  9930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. font-size:12px;
  9934. color:#7F7F7F;
  9935. }
  9936. #u1174 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:775px;
  9940. top:1178px;
  9941. width:97px;
  9942. height:17px;
  9943. display:flex;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:12px;
  9948. color:#7F7F7F;
  9949. }
  9950. #u1174 .text {
  9951. position:absolute;
  9952. align-self:center;
  9953. padding:0px 0px 0px 0px;
  9954. box-sizing:border-box;
  9955. width:100%;
  9956. }
  9957. #u1174_text {
  9958. border-width:0px;
  9959. white-space:nowrap;
  9960. text-transform:none;
  9961. }
  9962. #u1175 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:0px;
  9966. top:0px;
  9967. width:0px;
  9968. height:0px;
  9969. }
  9970. #u1176_div {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:380px;
  9976. height:50px;
  9977. background:inherit;
  9978. background-color:rgba(255, 255, 255, 1);
  9979. box-sizing:border-box;
  9980. border-width:1px;
  9981. border-style:solid;
  9982. border-color:rgba(121, 121, 121, 1);
  9983. border-radius:0px;
  9984. -moz-box-shadow:none;
  9985. -webkit-box-shadow:none;
  9986. box-shadow:none;
  9987. }
  9988. #u1176 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:170px;
  9992. top:1395px;
  9993. width:380px;
  9994. height:50px;
  9995. display:flex;
  9996. }
  9997. #u1176 .text {
  9998. position:absolute;
  9999. align-self:center;
  10000. padding:2px 2px 2px 2px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u1176_text {
  10005. border-width:0px;
  10006. word-wrap:break-word;
  10007. text-transform:none;
  10008. visibility:hidden;
  10009. }
  10010. #u1177_div {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:0px;
  10014. top:0px;
  10015. width:57px;
  10016. height:20px;
  10017. background:inherit;
  10018. background-color:rgba(255, 255, 255, 0);
  10019. border:none;
  10020. border-radius:0px;
  10021. -moz-box-shadow:none;
  10022. -webkit-box-shadow:none;
  10023. box-shadow:none;
  10024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10025. font-weight:400;
  10026. font-style:normal;
  10027. color:#555555;
  10028. }
  10029. #u1177 {
  10030. border-width:0px;
  10031. position:absolute;
  10032. left:189px;
  10033. top:1410px;
  10034. width:57px;
  10035. height:20px;
  10036. display:flex;
  10037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10038. font-weight:400;
  10039. font-style:normal;
  10040. color:#555555;
  10041. }
  10042. #u1177 .text {
  10043. position:absolute;
  10044. align-self:flex-start;
  10045. padding:0px 0px 0px 0px;
  10046. box-sizing:border-box;
  10047. width:100%;
  10048. }
  10049. #u1177_text {
  10050. border-width:0px;
  10051. white-space:nowrap;
  10052. text-transform:none;
  10053. }
  10054. #u1178 {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:0px;
  10058. top:0px;
  10059. width:0px;
  10060. height:0px;
  10061. }
  10062. #u1179_img {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:12px;
  10068. height:12px;
  10069. }
  10070. #u1179 {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:427px;
  10074. top:1415px;
  10075. width:12px;
  10076. height:12px;
  10077. display:flex;
  10078. }
  10079. #u1179 .text {
  10080. position:absolute;
  10081. align-self:center;
  10082. padding:2px 2px 2px 2px;
  10083. box-sizing:border-box;
  10084. width:100%;
  10085. }
  10086. #u1179_text {
  10087. border-width:0px;
  10088. word-wrap:break-word;
  10089. text-transform:none;
  10090. visibility:hidden;
  10091. }
  10092. #u1180_div {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:0px;
  10096. top:0px;
  10097. width:85px;
  10098. height:17px;
  10099. background:inherit;
  10100. background-color:rgba(255, 255, 255, 0);
  10101. border:none;
  10102. border-radius:0px;
  10103. -moz-box-shadow:none;
  10104. -webkit-box-shadow:none;
  10105. box-shadow:none;
  10106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. font-size:12px;
  10110. color:#555555;
  10111. }
  10112. #u1180 {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:445px;
  10116. top:1412px;
  10117. width:85px;
  10118. height:17px;
  10119. display:flex;
  10120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. font-size:12px;
  10124. color:#555555;
  10125. }
  10126. #u1180 .text {
  10127. position:absolute;
  10128. align-self:flex-start;
  10129. padding:0px 0px 0px 0px;
  10130. box-sizing:border-box;
  10131. width:100%;
  10132. }
  10133. #u1180_text {
  10134. border-width:0px;
  10135. white-space:nowrap;
  10136. text-transform:none;
  10137. }
  10138. #u1181_div {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:0px;
  10142. top:0px;
  10143. width:380px;
  10144. height:203px;
  10145. background:inherit;
  10146. background-color:rgba(255, 255, 255, 1);
  10147. box-sizing:border-box;
  10148. border-width:1px;
  10149. border-style:solid;
  10150. border-color:rgba(121, 121, 121, 1);
  10151. border-radius:0px;
  10152. -moz-box-shadow:none;
  10153. -webkit-box-shadow:none;
  10154. box-shadow:none;
  10155. }
  10156. #u1181 {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:170px;
  10160. top:1444px;
  10161. width:380px;
  10162. height:203px;
  10163. display:flex;
  10164. }
  10165. #u1181 .text {
  10166. position:absolute;
  10167. align-self:center;
  10168. padding:2px 2px 2px 2px;
  10169. box-sizing:border-box;
  10170. width:100%;
  10171. }
  10172. #u1181_text {
  10173. border-width:0px;
  10174. word-wrap:break-word;
  10175. text-transform:none;
  10176. visibility:hidden;
  10177. }
  10178. #u1182_div {
  10179. border-width:0px;
  10180. position:absolute;
  10181. left:0px;
  10182. top:0px;
  10183. width:267px;
  10184. height:17px;
  10185. background:inherit;
  10186. background-color:rgba(255, 255, 255, 0);
  10187. border:none;
  10188. border-radius:0px;
  10189. -moz-box-shadow:none;
  10190. -webkit-box-shadow:none;
  10191. box-shadow:none;
  10192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10193. font-weight:400;
  10194. font-style:normal;
  10195. font-size:12px;
  10196. color:#555555;
  10197. }
  10198. #u1182 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:190px;
  10202. top:1462px;
  10203. width:267px;
  10204. height:17px;
  10205. display:flex;
  10206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10207. font-weight:400;
  10208. font-style:normal;
  10209. font-size:12px;
  10210. color:#555555;
  10211. }
  10212. #u1182 .text {
  10213. position:absolute;
  10214. align-self:flex-start;
  10215. padding:0px 0px 0px 0px;
  10216. box-sizing:border-box;
  10217. width:100%;
  10218. }
  10219. #u1182_text {
  10220. border-width:0px;
  10221. white-space:nowrap;
  10222. text-transform:none;
  10223. }
  10224. #u1183_div {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:0px;
  10228. top:0px;
  10229. width:72px;
  10230. height:17px;
  10231. background:inherit;
  10232. background-color:rgba(255, 255, 255, 0);
  10233. border:none;
  10234. border-radius:0px;
  10235. -moz-box-shadow:none;
  10236. -webkit-box-shadow:none;
  10237. box-shadow:none;
  10238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10239. font-weight:400;
  10240. font-style:normal;
  10241. font-size:12px;
  10242. color:#555555;
  10243. text-align:right;
  10244. }
  10245. #u1183 {
  10246. border-width:0px;
  10247. position:absolute;
  10248. left:458px;
  10249. top:1462px;
  10250. width:72px;
  10251. height:17px;
  10252. display:flex;
  10253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10254. font-weight:400;
  10255. font-style:normal;
  10256. font-size:12px;
  10257. color:#555555;
  10258. text-align:right;
  10259. }
  10260. #u1183 .text {
  10261. position:absolute;
  10262. align-self:flex-start;
  10263. padding:0px 0px 0px 0px;
  10264. box-sizing:border-box;
  10265. width:100%;
  10266. }
  10267. #u1183_text {
  10268. border-width:0px;
  10269. white-space:nowrap;
  10270. text-transform:none;
  10271. }
  10272. #u1184_div {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:267px;
  10278. height:17px;
  10279. background:inherit;
  10280. background-color:rgba(255, 255, 255, 0);
  10281. border:none;
  10282. border-radius:0px;
  10283. -moz-box-shadow:none;
  10284. -webkit-box-shadow:none;
  10285. box-shadow:none;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:12px;
  10290. color:#555555;
  10291. }
  10292. #u1184 {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:190px;
  10296. top:1495px;
  10297. width:267px;
  10298. height:17px;
  10299. display:flex;
  10300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10301. font-weight:400;
  10302. font-style:normal;
  10303. font-size:12px;
  10304. color:#555555;
  10305. }
  10306. #u1184 .text {
  10307. position:absolute;
  10308. align-self:flex-start;
  10309. padding:0px 0px 0px 0px;
  10310. box-sizing:border-box;
  10311. width:100%;
  10312. }
  10313. #u1184_text {
  10314. border-width:0px;
  10315. white-space:nowrap;
  10316. text-transform:none;
  10317. }
  10318. #u1185_div {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:0px;
  10322. top:0px;
  10323. width:72px;
  10324. height:17px;
  10325. background:inherit;
  10326. background-color:rgba(255, 255, 255, 0);
  10327. border:none;
  10328. border-radius:0px;
  10329. -moz-box-shadow:none;
  10330. -webkit-box-shadow:none;
  10331. box-shadow:none;
  10332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10333. font-weight:400;
  10334. font-style:normal;
  10335. font-size:12px;
  10336. color:#555555;
  10337. text-align:right;
  10338. }
  10339. #u1185 {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:458px;
  10343. top:1495px;
  10344. width:72px;
  10345. height:17px;
  10346. display:flex;
  10347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10348. font-weight:400;
  10349. font-style:normal;
  10350. font-size:12px;
  10351. color:#555555;
  10352. text-align:right;
  10353. }
  10354. #u1185 .text {
  10355. position:absolute;
  10356. align-self:flex-start;
  10357. padding:0px 0px 0px 0px;
  10358. box-sizing:border-box;
  10359. width:100%;
  10360. }
  10361. #u1185_text {
  10362. border-width:0px;
  10363. white-space:nowrap;
  10364. text-transform:none;
  10365. }
  10366. #u1186_div {
  10367. border-width:0px;
  10368. position:absolute;
  10369. left:0px;
  10370. top:0px;
  10371. width:253px;
  10372. height:17px;
  10373. background:inherit;
  10374. background-color:rgba(255, 255, 255, 0);
  10375. border:none;
  10376. border-radius:0px;
  10377. -moz-box-shadow:none;
  10378. -webkit-box-shadow:none;
  10379. box-shadow:none;
  10380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10381. font-weight:400;
  10382. font-style:normal;
  10383. font-size:12px;
  10384. color:#555555;
  10385. }
  10386. #u1186 {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:190px;
  10390. top:1522px;
  10391. width:253px;
  10392. height:17px;
  10393. display:flex;
  10394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. font-size:12px;
  10398. color:#555555;
  10399. }
  10400. #u1186 .text {
  10401. position:absolute;
  10402. align-self:flex-start;
  10403. padding:0px 0px 0px 0px;
  10404. box-sizing:border-box;
  10405. width:100%;
  10406. }
  10407. #u1186_text {
  10408. border-width:0px;
  10409. white-space:nowrap;
  10410. text-transform:none;
  10411. }
  10412. #u1187_div {
  10413. border-width:0px;
  10414. position:absolute;
  10415. left:0px;
  10416. top:0px;
  10417. width:72px;
  10418. height:17px;
  10419. background:inherit;
  10420. background-color:rgba(255, 255, 255, 0);
  10421. border:none;
  10422. border-radius:0px;
  10423. -moz-box-shadow:none;
  10424. -webkit-box-shadow:none;
  10425. box-shadow:none;
  10426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10427. font-weight:400;
  10428. font-style:normal;
  10429. font-size:12px;
  10430. color:#555555;
  10431. text-align:right;
  10432. }
  10433. #u1187 {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:458px;
  10437. top:1522px;
  10438. width:72px;
  10439. height:17px;
  10440. display:flex;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. font-size:12px;
  10445. color:#555555;
  10446. text-align:right;
  10447. }
  10448. #u1187 .text {
  10449. position:absolute;
  10450. align-self:flex-start;
  10451. padding:0px 0px 0px 0px;
  10452. box-sizing:border-box;
  10453. width:100%;
  10454. }
  10455. #u1187_text {
  10456. border-width:0px;
  10457. white-space:nowrap;
  10458. text-transform:none;
  10459. }
  10460. #u1188_div {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:0px;
  10464. top:0px;
  10465. width:253px;
  10466. height:17px;
  10467. background:inherit;
  10468. background-color:rgba(255, 255, 255, 0);
  10469. border:none;
  10470. border-radius:0px;
  10471. -moz-box-shadow:none;
  10472. -webkit-box-shadow:none;
  10473. box-shadow:none;
  10474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10475. font-weight:400;
  10476. font-style:normal;
  10477. font-size:12px;
  10478. color:#555555;
  10479. }
  10480. #u1188 {
  10481. border-width:0px;
  10482. position:absolute;
  10483. left:190px;
  10484. top:1549px;
  10485. width:253px;
  10486. height:17px;
  10487. display:flex;
  10488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10489. font-weight:400;
  10490. font-style:normal;
  10491. font-size:12px;
  10492. color:#555555;
  10493. }
  10494. #u1188 .text {
  10495. position:absolute;
  10496. align-self:flex-start;
  10497. padding:0px 0px 0px 0px;
  10498. box-sizing:border-box;
  10499. width:100%;
  10500. }
  10501. #u1188_text {
  10502. border-width:0px;
  10503. white-space:nowrap;
  10504. text-transform:none;
  10505. }
  10506. #u1189_div {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:0px;
  10510. top:0px;
  10511. width:72px;
  10512. height:17px;
  10513. background:inherit;
  10514. background-color:rgba(255, 255, 255, 0);
  10515. border:none;
  10516. border-radius:0px;
  10517. -moz-box-shadow:none;
  10518. -webkit-box-shadow:none;
  10519. box-shadow:none;
  10520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:12px;
  10524. color:#555555;
  10525. text-align:right;
  10526. }
  10527. #u1189 {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:458px;
  10531. top:1549px;
  10532. width:72px;
  10533. height:17px;
  10534. display:flex;
  10535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10536. font-weight:400;
  10537. font-style:normal;
  10538. font-size:12px;
  10539. color:#555555;
  10540. text-align:right;
  10541. }
  10542. #u1189 .text {
  10543. position:absolute;
  10544. align-self:flex-start;
  10545. padding:0px 0px 0px 0px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u1189_text {
  10550. border-width:0px;
  10551. white-space:nowrap;
  10552. text-transform:none;
  10553. }
  10554. #u1190_div {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:0px;
  10558. top:0px;
  10559. width:241px;
  10560. height:17px;
  10561. background:inherit;
  10562. background-color:rgba(255, 255, 255, 0);
  10563. border:none;
  10564. border-radius:0px;
  10565. -moz-box-shadow:none;
  10566. -webkit-box-shadow:none;
  10567. box-shadow:none;
  10568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10569. font-weight:400;
  10570. font-style:normal;
  10571. font-size:12px;
  10572. color:#555555;
  10573. }
  10574. #u1190 {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:190px;
  10578. top:1576px;
  10579. width:241px;
  10580. height:17px;
  10581. display:flex;
  10582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10583. font-weight:400;
  10584. font-style:normal;
  10585. font-size:12px;
  10586. color:#555555;
  10587. }
  10588. #u1190 .text {
  10589. position:absolute;
  10590. align-self:flex-start;
  10591. padding:0px 0px 0px 0px;
  10592. box-sizing:border-box;
  10593. width:100%;
  10594. }
  10595. #u1190_text {
  10596. border-width:0px;
  10597. white-space:nowrap;
  10598. text-transform:none;
  10599. }
  10600. #u1191_div {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:0px;
  10604. top:0px;
  10605. width:72px;
  10606. height:17px;
  10607. background:inherit;
  10608. background-color:rgba(255, 255, 255, 0);
  10609. border:none;
  10610. border-radius:0px;
  10611. -moz-box-shadow:none;
  10612. -webkit-box-shadow:none;
  10613. box-shadow:none;
  10614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10615. font-weight:400;
  10616. font-style:normal;
  10617. font-size:12px;
  10618. color:#555555;
  10619. text-align:right;
  10620. }
  10621. #u1191 {
  10622. border-width:0px;
  10623. position:absolute;
  10624. left:458px;
  10625. top:1576px;
  10626. width:72px;
  10627. height:17px;
  10628. display:flex;
  10629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10630. font-weight:400;
  10631. font-style:normal;
  10632. font-size:12px;
  10633. color:#555555;
  10634. text-align:right;
  10635. }
  10636. #u1191 .text {
  10637. position:absolute;
  10638. align-self:flex-start;
  10639. padding:0px 0px 0px 0px;
  10640. box-sizing:border-box;
  10641. width:100%;
  10642. }
  10643. #u1191_text {
  10644. border-width:0px;
  10645. white-space:nowrap;
  10646. text-transform:none;
  10647. }
  10648. #u1192_div {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:0px;
  10652. top:0px;
  10653. width:359px;
  10654. height:40px;
  10655. background:inherit;
  10656. background-color:rgba(255, 255, 255, 1);
  10657. box-sizing:border-box;
  10658. border-width:1px;
  10659. border-style:solid;
  10660. border-color:rgba(215, 215, 215, 1);
  10661. border-left:0px;
  10662. border-right:0px;
  10663. border-bottom:0px;
  10664. border-radius:0px;
  10665. border-top-left-radius:0px;
  10666. border-top-right-radius:0px;
  10667. -moz-box-shadow:none;
  10668. -webkit-box-shadow:none;
  10669. box-shadow:none;
  10670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10671. font-weight:400;
  10672. font-style:normal;
  10673. font-size:12px;
  10674. color:#1890FF;
  10675. }
  10676. #u1192 {
  10677. border-width:0px;
  10678. position:absolute;
  10679. left:181px;
  10680. top:1605px;
  10681. width:359px;
  10682. height:40px;
  10683. display:flex;
  10684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10685. font-weight:400;
  10686. font-style:normal;
  10687. font-size:12px;
  10688. color:#1890FF;
  10689. }
  10690. #u1192 .text {
  10691. position:absolute;
  10692. align-self:center;
  10693. padding:2px 2px 2px 2px;
  10694. box-sizing:border-box;
  10695. width:100%;
  10696. }
  10697. #u1192_text {
  10698. border-width:0px;
  10699. word-wrap:break-word;
  10700. text-transform:none;
  10701. }
  10702. #u1193 {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:0px;
  10706. top:0px;
  10707. width:0px;
  10708. height:0px;
  10709. }
  10710. #u1194_div {
  10711. border-width:0px;
  10712. position:absolute;
  10713. left:0px;
  10714. top:0px;
  10715. width:1000px;
  10716. height:50px;
  10717. background:inherit;
  10718. background-color:rgba(255, 255, 255, 1);
  10719. box-sizing:border-box;
  10720. border-width:1px;
  10721. border-style:solid;
  10722. border-color:rgba(121, 121, 121, 1);
  10723. border-radius:0px;
  10724. -moz-box-shadow:none;
  10725. -webkit-box-shadow:none;
  10726. box-shadow:none;
  10727. }
  10728. #u1194 {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:170px;
  10732. top:1673px;
  10733. width:1000px;
  10734. height:50px;
  10735. display:flex;
  10736. }
  10737. #u1194 .text {
  10738. position:absolute;
  10739. align-self:center;
  10740. padding:2px 2px 2px 2px;
  10741. box-sizing:border-box;
  10742. width:100%;
  10743. }
  10744. #u1194_text {
  10745. border-width:0px;
  10746. word-wrap:break-word;
  10747. text-transform:none;
  10748. visibility:hidden;
  10749. }
  10750. #u1195_div {
  10751. border-width:0px;
  10752. position:absolute;
  10753. left:0px;
  10754. top:0px;
  10755. width:57px;
  10756. height:20px;
  10757. background:inherit;
  10758. background-color:rgba(255, 255, 255, 0);
  10759. border:none;
  10760. border-radius:0px;
  10761. -moz-box-shadow:none;
  10762. -webkit-box-shadow:none;
  10763. box-shadow:none;
  10764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10765. font-weight:400;
  10766. font-style:normal;
  10767. color:#555555;
  10768. }
  10769. #u1195 {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:189px;
  10773. top:1688px;
  10774. width:57px;
  10775. height:20px;
  10776. display:flex;
  10777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. color:#555555;
  10781. }
  10782. #u1195 .text {
  10783. position:absolute;
  10784. align-self:flex-start;
  10785. padding:0px 0px 0px 0px;
  10786. box-sizing:border-box;
  10787. width:100%;
  10788. }
  10789. #u1195_text {
  10790. border-width:0px;
  10791. white-space:nowrap;
  10792. text-transform:none;
  10793. }
  10794. #u1196_div {
  10795. border-width:0px;
  10796. position:absolute;
  10797. left:0px;
  10798. top:0px;
  10799. width:1000px;
  10800. height:587px;
  10801. background:inherit;
  10802. background-color:rgba(255, 255, 255, 1);
  10803. box-sizing:border-box;
  10804. border-width:1px;
  10805. border-style:solid;
  10806. border-color:rgba(121, 121, 121, 1);
  10807. border-radius:0px;
  10808. -moz-box-shadow:none;
  10809. -webkit-box-shadow:none;
  10810. box-shadow:none;
  10811. }
  10812. #u1196 {
  10813. border-width:0px;
  10814. position:absolute;
  10815. left:170px;
  10816. top:1722px;
  10817. width:1000px;
  10818. height:587px;
  10819. display:flex;
  10820. }
  10821. #u1196 .text {
  10822. position:absolute;
  10823. align-self:center;
  10824. padding:2px 2px 2px 2px;
  10825. box-sizing:border-box;
  10826. width:100%;
  10827. }
  10828. #u1196_text {
  10829. border-width:0px;
  10830. word-wrap:break-word;
  10831. text-transform:none;
  10832. visibility:hidden;
  10833. }
  10834. #u1197_div {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:49px;
  10840. height:17px;
  10841. background:inherit;
  10842. background-color:rgba(255, 255, 255, 0);
  10843. border:none;
  10844. border-radius:0px;
  10845. -moz-box-shadow:none;
  10846. -webkit-box-shadow:none;
  10847. box-shadow:none;
  10848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10849. font-weight:400;
  10850. font-style:normal;
  10851. font-size:12px;
  10852. color:#555555;
  10853. }
  10854. #u1197 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:210px;
  10858. top:1740px;
  10859. width:49px;
  10860. height:17px;
  10861. display:flex;
  10862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10863. font-weight:400;
  10864. font-style:normal;
  10865. font-size:12px;
  10866. color:#555555;
  10867. }
  10868. #u1197 .text {
  10869. position:absolute;
  10870. align-self:flex-start;
  10871. padding:0px 0px 0px 0px;
  10872. box-sizing:border-box;
  10873. width:100%;
  10874. }
  10875. #u1197_text {
  10876. border-width:0px;
  10877. white-space:nowrap;
  10878. text-transform:none;
  10879. }
  10880. #u1198_div {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:0px;
  10884. top:0px;
  10885. width:49px;
  10886. height:17px;
  10887. background:inherit;
  10888. background-color:rgba(255, 255, 255, 0);
  10889. border:none;
  10890. border-radius:0px;
  10891. -moz-box-shadow:none;
  10892. -webkit-box-shadow:none;
  10893. box-shadow:none;
  10894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10895. font-weight:400;
  10896. font-style:normal;
  10897. font-size:12px;
  10898. color:#555555;
  10899. text-align:right;
  10900. }
  10901. #u1198 {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:1072px;
  10905. top:1740px;
  10906. width:49px;
  10907. height:17px;
  10908. display:flex;
  10909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10910. font-weight:400;
  10911. font-style:normal;
  10912. font-size:12px;
  10913. color:#555555;
  10914. text-align:right;
  10915. }
  10916. #u1198 .text {
  10917. position:absolute;
  10918. align-self:flex-start;
  10919. padding:0px 0px 0px 0px;
  10920. box-sizing:border-box;
  10921. width:100%;
  10922. }
  10923. #u1198_text {
  10924. border-width:0px;
  10925. white-space:nowrap;
  10926. text-transform:none;
  10927. }
  10928. #u1199_div {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:0px;
  10933. width:267px;
  10934. height:17px;
  10935. background:inherit;
  10936. background-color:rgba(255, 255, 255, 0);
  10937. border:none;
  10938. border-radius:0px;
  10939. -moz-box-shadow:none;
  10940. -webkit-box-shadow:none;
  10941. box-shadow:none;
  10942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10943. font-weight:400;
  10944. font-style:normal;
  10945. font-size:12px;
  10946. color:#555555;
  10947. }
  10948. #u1199 {
  10949. border-width:0px;
  10950. position:absolute;
  10951. left:210px;
  10952. top:1769px;
  10953. width:267px;
  10954. height:17px;
  10955. display:flex;
  10956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10957. font-weight:400;
  10958. font-style:normal;
  10959. font-size:12px;
  10960. color:#555555;
  10961. }
  10962. #u1199 .text {
  10963. position:absolute;
  10964. align-self:flex-start;
  10965. padding:0px 0px 0px 0px;
  10966. box-sizing:border-box;
  10967. width:100%;
  10968. }
  10969. #u1199_text {
  10970. border-width:0px;
  10971. white-space:nowrap;
  10972. text-transform:none;
  10973. }
  10974. #u1200_div {
  10975. border-width:0px;
  10976. position:absolute;
  10977. left:0px;
  10978. top:0px;
  10979. width:72px;
  10980. height:17px;
  10981. background:inherit;
  10982. background-color:rgba(255, 255, 255, 0);
  10983. border:none;
  10984. border-radius:0px;
  10985. -moz-box-shadow:none;
  10986. -webkit-box-shadow:none;
  10987. box-shadow:none;
  10988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10989. font-weight:400;
  10990. font-style:normal;
  10991. font-size:12px;
  10992. color:#555555;
  10993. text-align:right;
  10994. }
  10995. #u1200 {
  10996. border-width:0px;
  10997. position:absolute;
  10998. left:1049px;
  10999. top:1769px;
  11000. width:72px;
  11001. height:17px;
  11002. display:flex;
  11003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11004. font-weight:400;
  11005. font-style:normal;
  11006. font-size:12px;
  11007. color:#555555;
  11008. text-align:right;
  11009. }
  11010. #u1200 .text {
  11011. position:absolute;
  11012. align-self:flex-start;
  11013. padding:0px 0px 0px 0px;
  11014. box-sizing:border-box;
  11015. width:100%;
  11016. }
  11017. #u1200_text {
  11018. border-width:0px;
  11019. white-space:nowrap;
  11020. text-transform:none;
  11021. }
  11022. #u1201_div {
  11023. border-width:0px;
  11024. position:absolute;
  11025. left:0px;
  11026. top:0px;
  11027. width:253px;
  11028. height:17px;
  11029. background:inherit;
  11030. background-color:rgba(255, 255, 255, 0);
  11031. border:none;
  11032. border-radius:0px;
  11033. -moz-box-shadow:none;
  11034. -webkit-box-shadow:none;
  11035. box-shadow:none;
  11036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11037. font-weight:400;
  11038. font-style:normal;
  11039. font-size:12px;
  11040. color:#555555;
  11041. }
  11042. #u1201 {
  11043. border-width:0px;
  11044. position:absolute;
  11045. left:210px;
  11046. top:1797px;
  11047. width:253px;
  11048. height:17px;
  11049. display:flex;
  11050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11051. font-weight:400;
  11052. font-style:normal;
  11053. font-size:12px;
  11054. color:#555555;
  11055. }
  11056. #u1201 .text {
  11057. position:absolute;
  11058. align-self:flex-start;
  11059. padding:0px 0px 0px 0px;
  11060. box-sizing:border-box;
  11061. width:100%;
  11062. }
  11063. #u1201_text {
  11064. border-width:0px;
  11065. white-space:nowrap;
  11066. text-transform:none;
  11067. }
  11068. #u1202_div {
  11069. border-width:0px;
  11070. position:absolute;
  11071. left:0px;
  11072. top:0px;
  11073. width:72px;
  11074. height:17px;
  11075. background:inherit;
  11076. background-color:rgba(255, 255, 255, 0);
  11077. border:none;
  11078. border-radius:0px;
  11079. -moz-box-shadow:none;
  11080. -webkit-box-shadow:none;
  11081. box-shadow:none;
  11082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11083. font-weight:400;
  11084. font-style:normal;
  11085. font-size:12px;
  11086. color:#555555;
  11087. text-align:right;
  11088. }
  11089. #u1202 {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:1049px;
  11093. top:1797px;
  11094. width:72px;
  11095. height:17px;
  11096. display:flex;
  11097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11098. font-weight:400;
  11099. font-style:normal;
  11100. font-size:12px;
  11101. color:#555555;
  11102. text-align:right;
  11103. }
  11104. #u1202 .text {
  11105. position:absolute;
  11106. align-self:flex-start;
  11107. padding:0px 0px 0px 0px;
  11108. box-sizing:border-box;
  11109. width:100%;
  11110. }
  11111. #u1202_text {
  11112. border-width:0px;
  11113. white-space:nowrap;
  11114. text-transform:none;
  11115. }
  11116. #u1203_div {
  11117. border-width:0px;
  11118. position:absolute;
  11119. left:0px;
  11120. top:0px;
  11121. width:253px;
  11122. height:17px;
  11123. background:inherit;
  11124. background-color:rgba(255, 255, 255, 0);
  11125. border:none;
  11126. border-radius:0px;
  11127. -moz-box-shadow:none;
  11128. -webkit-box-shadow:none;
  11129. box-shadow:none;
  11130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11131. font-weight:400;
  11132. font-style:normal;
  11133. font-size:12px;
  11134. color:#555555;
  11135. }
  11136. #u1203 {
  11137. border-width:0px;
  11138. position:absolute;
  11139. left:210px;
  11140. top:1826px;
  11141. width:253px;
  11142. height:17px;
  11143. display:flex;
  11144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11145. font-weight:400;
  11146. font-style:normal;
  11147. font-size:12px;
  11148. color:#555555;
  11149. }
  11150. #u1203 .text {
  11151. position:absolute;
  11152. align-self:flex-start;
  11153. padding:0px 0px 0px 0px;
  11154. box-sizing:border-box;
  11155. width:100%;
  11156. }
  11157. #u1203_text {
  11158. border-width:0px;
  11159. white-space:nowrap;
  11160. text-transform:none;
  11161. }
  11162. #u1204_div {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:72px;
  11168. height:17px;
  11169. background:inherit;
  11170. background-color:rgba(255, 255, 255, 0);
  11171. border:none;
  11172. border-radius:0px;
  11173. -moz-box-shadow:none;
  11174. -webkit-box-shadow:none;
  11175. box-shadow:none;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:12px;
  11180. color:#555555;
  11181. text-align:right;
  11182. }
  11183. #u1204 {
  11184. border-width:0px;
  11185. position:absolute;
  11186. left:1049px;
  11187. top:1826px;
  11188. width:72px;
  11189. height:17px;
  11190. display:flex;
  11191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11192. font-weight:400;
  11193. font-style:normal;
  11194. font-size:12px;
  11195. color:#555555;
  11196. text-align:right;
  11197. }
  11198. #u1204 .text {
  11199. position:absolute;
  11200. align-self:flex-start;
  11201. padding:0px 0px 0px 0px;
  11202. box-sizing:border-box;
  11203. width:100%;
  11204. }
  11205. #u1204_text {
  11206. border-width:0px;
  11207. white-space:nowrap;
  11208. text-transform:none;
  11209. }
  11210. #u1205_div {
  11211. border-width:0px;
  11212. position:absolute;
  11213. left:0px;
  11214. top:0px;
  11215. width:241px;
  11216. height:17px;
  11217. background:inherit;
  11218. background-color:rgba(255, 255, 255, 0);
  11219. border:none;
  11220. border-radius:0px;
  11221. -moz-box-shadow:none;
  11222. -webkit-box-shadow:none;
  11223. box-shadow:none;
  11224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11225. font-weight:400;
  11226. font-style:normal;
  11227. font-size:12px;
  11228. color:#555555;
  11229. }
  11230. #u1205 {
  11231. border-width:0px;
  11232. position:absolute;
  11233. left:210px;
  11234. top:1854px;
  11235. width:241px;
  11236. height:17px;
  11237. display:flex;
  11238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11239. font-weight:400;
  11240. font-style:normal;
  11241. font-size:12px;
  11242. color:#555555;
  11243. }
  11244. #u1205 .text {
  11245. position:absolute;
  11246. align-self:flex-start;
  11247. padding:0px 0px 0px 0px;
  11248. box-sizing:border-box;
  11249. width:100%;
  11250. }
  11251. #u1205_text {
  11252. border-width:0px;
  11253. white-space:nowrap;
  11254. text-transform:none;
  11255. }
  11256. #u1206_div {
  11257. border-width:0px;
  11258. position:absolute;
  11259. left:0px;
  11260. top:0px;
  11261. width:72px;
  11262. height:17px;
  11263. background:inherit;
  11264. background-color:rgba(255, 255, 255, 0);
  11265. border:none;
  11266. border-radius:0px;
  11267. -moz-box-shadow:none;
  11268. -webkit-box-shadow:none;
  11269. box-shadow:none;
  11270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11271. font-weight:400;
  11272. font-style:normal;
  11273. font-size:12px;
  11274. color:#555555;
  11275. text-align:right;
  11276. }
  11277. #u1206 {
  11278. border-width:0px;
  11279. position:absolute;
  11280. left:1049px;
  11281. top:1854px;
  11282. width:72px;
  11283. height:17px;
  11284. display:flex;
  11285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11286. font-weight:400;
  11287. font-style:normal;
  11288. font-size:12px;
  11289. color:#555555;
  11290. text-align:right;
  11291. }
  11292. #u1206 .text {
  11293. position:absolute;
  11294. align-self:flex-start;
  11295. padding:0px 0px 0px 0px;
  11296. box-sizing:border-box;
  11297. width:100%;
  11298. }
  11299. #u1206_text {
  11300. border-width:0px;
  11301. white-space:nowrap;
  11302. text-transform:none;
  11303. }
  11304. #u1207 {
  11305. border-width:0px;
  11306. position:absolute;
  11307. left:0px;
  11308. top:0px;
  11309. width:0px;
  11310. height:0px;
  11311. }
  11312. #u1208_img {
  11313. border-width:0px;
  11314. position:absolute;
  11315. left:0px;
  11316. top:0px;
  11317. width:10px;
  11318. height:10px;
  11319. }
  11320. #u1208 {
  11321. border-width:0px;
  11322. position:absolute;
  11323. left:265px;
  11324. top:1692px;
  11325. width:10px;
  11326. height:10px;
  11327. display:flex;
  11328. }
  11329. #u1208 .text {
  11330. position:absolute;
  11331. align-self:center;
  11332. padding:2px 2px 2px 2px;
  11333. box-sizing:border-box;
  11334. width:100%;
  11335. }
  11336. #u1208_text {
  11337. border-width:0px;
  11338. word-wrap:break-word;
  11339. text-transform:none;
  11340. visibility:hidden;
  11341. }
  11342. #u1209_div {
  11343. border-width:0px;
  11344. position:absolute;
  11345. left:0px;
  11346. top:0px;
  11347. width:49px;
  11348. height:17px;
  11349. background:inherit;
  11350. background-color:rgba(255, 255, 255, 0);
  11351. border:none;
  11352. border-radius:0px;
  11353. -moz-box-shadow:none;
  11354. -webkit-box-shadow:none;
  11355. box-shadow:none;
  11356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11357. font-weight:400;
  11358. font-style:normal;
  11359. font-size:12px;
  11360. color:#1890FF;
  11361. }
  11362. #u1209 {
  11363. border-width:0px;
  11364. position:absolute;
  11365. left:280px;
  11366. top:1688px;
  11367. width:49px;
  11368. height:17px;
  11369. display:flex;
  11370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11371. font-weight:400;
  11372. font-style:normal;
  11373. font-size:12px;
  11374. color:#1890FF;
  11375. }
  11376. #u1209 .text {
  11377. position:absolute;
  11378. align-self:flex-start;
  11379. padding:0px 0px 0px 0px;
  11380. box-sizing:border-box;
  11381. width:100%;
  11382. }
  11383. #u1209_text {
  11384. border-width:0px;
  11385. white-space:nowrap;
  11386. text-transform:none;
  11387. }
  11388. #u1210_div {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:0px;
  11392. top:0px;
  11393. width:21px;
  11394. height:15px;
  11395. background:inherit;
  11396. background-color:rgba(217, 0, 27, 1);
  11397. border:none;
  11398. border-radius:2px;
  11399. -moz-box-shadow:none;
  11400. -webkit-box-shadow:none;
  11401. box-shadow:none;
  11402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11403. font-weight:400;
  11404. font-style:normal;
  11405. font-size:8px;
  11406. color:#FFFFFF;
  11407. }
  11408. #u1210 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:192px;
  11412. top:1770px;
  11413. width:21px;
  11414. height:15px;
  11415. display:flex;
  11416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11417. font-weight:400;
  11418. font-style:normal;
  11419. font-size:8px;
  11420. color:#FFFFFF;
  11421. }
  11422. #u1210 .text {
  11423. position:absolute;
  11424. align-self:flex-start;
  11425. padding:2px 2px 2px 2px;
  11426. box-sizing:border-box;
  11427. width:100%;
  11428. }
  11429. #u1210_text {
  11430. border-width:0px;
  11431. white-space:nowrap;
  11432. text-transform:none;
  11433. }
  11434. #u1211_div {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:0px;
  11438. top:0px;
  11439. width:21px;
  11440. height:15px;
  11441. background:inherit;
  11442. background-color:rgba(170, 170, 170, 1);
  11443. border:none;
  11444. border-radius:2px;
  11445. -moz-box-shadow:none;
  11446. -webkit-box-shadow:none;
  11447. box-shadow:none;
  11448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11449. font-weight:400;
  11450. font-style:normal;
  11451. font-size:8px;
  11452. color:#FFFFFF;
  11453. }
  11454. #u1211 {
  11455. border-width:0px;
  11456. position:absolute;
  11457. left:192px;
  11458. top:1799px;
  11459. width:21px;
  11460. height:15px;
  11461. display:flex;
  11462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11463. font-weight:400;
  11464. font-style:normal;
  11465. font-size:8px;
  11466. color:#FFFFFF;
  11467. }
  11468. #u1211 .text {
  11469. position:absolute;
  11470. align-self:flex-start;
  11471. padding:2px 2px 2px 2px;
  11472. box-sizing:border-box;
  11473. width:100%;
  11474. }
  11475. #u1211_text {
  11476. border-width:0px;
  11477. white-space:nowrap;
  11478. text-transform:none;
  11479. }
  11480. #u1212_div {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:0px;
  11484. top:0px;
  11485. width:21px;
  11486. height:15px;
  11487. background:inherit;
  11488. background-color:rgba(217, 0, 27, 1);
  11489. border:none;
  11490. border-radius:2px;
  11491. -moz-box-shadow:none;
  11492. -webkit-box-shadow:none;
  11493. box-shadow:none;
  11494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11495. font-weight:400;
  11496. font-style:normal;
  11497. font-size:8px;
  11498. color:#FFFFFF;
  11499. }
  11500. #u1212 {
  11501. border-width:0px;
  11502. position:absolute;
  11503. left:192px;
  11504. top:1827px;
  11505. width:21px;
  11506. height:15px;
  11507. display:flex;
  11508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11509. font-weight:400;
  11510. font-style:normal;
  11511. font-size:8px;
  11512. color:#FFFFFF;
  11513. }
  11514. #u1212 .text {
  11515. position:absolute;
  11516. align-self:flex-start;
  11517. padding:2px 2px 2px 2px;
  11518. box-sizing:border-box;
  11519. width:100%;
  11520. }
  11521. #u1212_text {
  11522. border-width:0px;
  11523. white-space:nowrap;
  11524. text-transform:none;
  11525. }
  11526. #u1213_div {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:0px;
  11530. top:0px;
  11531. width:21px;
  11532. height:15px;
  11533. background:inherit;
  11534. background-color:rgba(217, 0, 27, 1);
  11535. border:none;
  11536. border-radius:2px;
  11537. -moz-box-shadow:none;
  11538. -webkit-box-shadow:none;
  11539. box-shadow:none;
  11540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11541. font-weight:400;
  11542. font-style:normal;
  11543. font-size:8px;
  11544. color:#FFFFFF;
  11545. }
  11546. #u1213 {
  11547. border-width:0px;
  11548. position:absolute;
  11549. left:192px;
  11550. top:1856px;
  11551. width:21px;
  11552. height:15px;
  11553. display:flex;
  11554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11555. font-weight:400;
  11556. font-style:normal;
  11557. font-size:8px;
  11558. color:#FFFFFF;
  11559. }
  11560. #u1213 .text {
  11561. position:absolute;
  11562. align-self:flex-start;
  11563. padding:2px 2px 2px 2px;
  11564. box-sizing:border-box;
  11565. width:100%;
  11566. }
  11567. #u1213_text {
  11568. border-width:0px;
  11569. white-space:nowrap;
  11570. text-transform:none;
  11571. }
  11572. #u1214_div {
  11573. border-width:0px;
  11574. position:absolute;
  11575. left:0px;
  11576. top:0px;
  11577. width:267px;
  11578. height:17px;
  11579. background:inherit;
  11580. background-color:rgba(255, 255, 255, 0);
  11581. border:none;
  11582. border-radius:0px;
  11583. -moz-box-shadow:none;
  11584. -webkit-box-shadow:none;
  11585. box-shadow:none;
  11586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11587. font-weight:400;
  11588. font-style:normal;
  11589. font-size:12px;
  11590. color:#555555;
  11591. }
  11592. #u1214 {
  11593. border-width:0px;
  11594. position:absolute;
  11595. left:210px;
  11596. top:1881px;
  11597. width:267px;
  11598. height:17px;
  11599. display:flex;
  11600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11601. font-weight:400;
  11602. font-style:normal;
  11603. font-size:12px;
  11604. color:#555555;
  11605. }
  11606. #u1214 .text {
  11607. position:absolute;
  11608. align-self:flex-start;
  11609. padding:0px 0px 0px 0px;
  11610. box-sizing:border-box;
  11611. width:100%;
  11612. }
  11613. #u1214_text {
  11614. border-width:0px;
  11615. white-space:nowrap;
  11616. text-transform:none;
  11617. }
  11618. #u1215_div {
  11619. border-width:0px;
  11620. position:absolute;
  11621. left:0px;
  11622. top:0px;
  11623. width:72px;
  11624. height:17px;
  11625. background:inherit;
  11626. background-color:rgba(255, 255, 255, 0);
  11627. border:none;
  11628. border-radius:0px;
  11629. -moz-box-shadow:none;
  11630. -webkit-box-shadow:none;
  11631. box-shadow:none;
  11632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11633. font-weight:400;
  11634. font-style:normal;
  11635. font-size:12px;
  11636. color:#555555;
  11637. text-align:right;
  11638. }
  11639. #u1215 {
  11640. border-width:0px;
  11641. position:absolute;
  11642. left:1049px;
  11643. top:1881px;
  11644. width:72px;
  11645. height:17px;
  11646. display:flex;
  11647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11648. font-weight:400;
  11649. font-style:normal;
  11650. font-size:12px;
  11651. color:#555555;
  11652. text-align:right;
  11653. }
  11654. #u1215 .text {
  11655. position:absolute;
  11656. align-self:flex-start;
  11657. padding:0px 0px 0px 0px;
  11658. box-sizing:border-box;
  11659. width:100%;
  11660. }
  11661. #u1215_text {
  11662. border-width:0px;
  11663. white-space:nowrap;
  11664. text-transform:none;
  11665. }
  11666. #u1216_div {
  11667. border-width:0px;
  11668. position:absolute;
  11669. left:0px;
  11670. top:0px;
  11671. width:253px;
  11672. height:17px;
  11673. background:inherit;
  11674. background-color:rgba(255, 255, 255, 0);
  11675. border:none;
  11676. border-radius:0px;
  11677. -moz-box-shadow:none;
  11678. -webkit-box-shadow:none;
  11679. box-shadow:none;
  11680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11681. font-weight:400;
  11682. font-style:normal;
  11683. font-size:12px;
  11684. color:#555555;
  11685. }
  11686. #u1216 {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:210px;
  11690. top:1909px;
  11691. width:253px;
  11692. height:17px;
  11693. display:flex;
  11694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11695. font-weight:400;
  11696. font-style:normal;
  11697. font-size:12px;
  11698. color:#555555;
  11699. }
  11700. #u1216 .text {
  11701. position:absolute;
  11702. align-self:flex-start;
  11703. padding:0px 0px 0px 0px;
  11704. box-sizing:border-box;
  11705. width:100%;
  11706. }
  11707. #u1216_text {
  11708. border-width:0px;
  11709. white-space:nowrap;
  11710. text-transform:none;
  11711. }
  11712. #u1217_div {
  11713. border-width:0px;
  11714. position:absolute;
  11715. left:0px;
  11716. top:0px;
  11717. width:72px;
  11718. height:17px;
  11719. background:inherit;
  11720. background-color:rgba(255, 255, 255, 0);
  11721. border:none;
  11722. border-radius:0px;
  11723. -moz-box-shadow:none;
  11724. -webkit-box-shadow:none;
  11725. box-shadow:none;
  11726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11727. font-weight:400;
  11728. font-style:normal;
  11729. font-size:12px;
  11730. color:#555555;
  11731. text-align:right;
  11732. }
  11733. #u1217 {
  11734. border-width:0px;
  11735. position:absolute;
  11736. left:1049px;
  11737. top:1909px;
  11738. width:72px;
  11739. height:17px;
  11740. display:flex;
  11741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11742. font-weight:400;
  11743. font-style:normal;
  11744. font-size:12px;
  11745. color:#555555;
  11746. text-align:right;
  11747. }
  11748. #u1217 .text {
  11749. position:absolute;
  11750. align-self:flex-start;
  11751. padding:0px 0px 0px 0px;
  11752. box-sizing:border-box;
  11753. width:100%;
  11754. }
  11755. #u1217_text {
  11756. border-width:0px;
  11757. white-space:nowrap;
  11758. text-transform:none;
  11759. }
  11760. #u1218_div {
  11761. border-width:0px;
  11762. position:absolute;
  11763. left:0px;
  11764. top:0px;
  11765. width:253px;
  11766. height:17px;
  11767. background:inherit;
  11768. background-color:rgba(255, 255, 255, 0);
  11769. border:none;
  11770. border-radius:0px;
  11771. -moz-box-shadow:none;
  11772. -webkit-box-shadow:none;
  11773. box-shadow:none;
  11774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11775. font-weight:400;
  11776. font-style:normal;
  11777. font-size:12px;
  11778. color:#555555;
  11779. }
  11780. #u1218 {
  11781. border-width:0px;
  11782. position:absolute;
  11783. left:210px;
  11784. top:1938px;
  11785. width:253px;
  11786. height:17px;
  11787. display:flex;
  11788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11789. font-weight:400;
  11790. font-style:normal;
  11791. font-size:12px;
  11792. color:#555555;
  11793. }
  11794. #u1218 .text {
  11795. position:absolute;
  11796. align-self:flex-start;
  11797. padding:0px 0px 0px 0px;
  11798. box-sizing:border-box;
  11799. width:100%;
  11800. }
  11801. #u1218_text {
  11802. border-width:0px;
  11803. white-space:nowrap;
  11804. text-transform:none;
  11805. }
  11806. #u1219_div {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:72px;
  11812. height:17px;
  11813. background:inherit;
  11814. background-color:rgba(255, 255, 255, 0);
  11815. border:none;
  11816. border-radius:0px;
  11817. -moz-box-shadow:none;
  11818. -webkit-box-shadow:none;
  11819. box-shadow:none;
  11820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11821. font-weight:400;
  11822. font-style:normal;
  11823. font-size:12px;
  11824. color:#555555;
  11825. text-align:right;
  11826. }
  11827. #u1219 {
  11828. border-width:0px;
  11829. position:absolute;
  11830. left:1049px;
  11831. top:1938px;
  11832. width:72px;
  11833. height:17px;
  11834. display:flex;
  11835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11836. font-weight:400;
  11837. font-style:normal;
  11838. font-size:12px;
  11839. color:#555555;
  11840. text-align:right;
  11841. }
  11842. #u1219 .text {
  11843. position:absolute;
  11844. align-self:flex-start;
  11845. padding:0px 0px 0px 0px;
  11846. box-sizing:border-box;
  11847. width:100%;
  11848. }
  11849. #u1219_text {
  11850. border-width:0px;
  11851. white-space:nowrap;
  11852. text-transform:none;
  11853. }
  11854. #u1220_div {
  11855. border-width:0px;
  11856. position:absolute;
  11857. left:0px;
  11858. top:0px;
  11859. width:241px;
  11860. height:17px;
  11861. background:inherit;
  11862. background-color:rgba(255, 255, 255, 0);
  11863. border:none;
  11864. border-radius:0px;
  11865. -moz-box-shadow:none;
  11866. -webkit-box-shadow:none;
  11867. box-shadow:none;
  11868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11869. font-weight:400;
  11870. font-style:normal;
  11871. font-size:12px;
  11872. color:#555555;
  11873. }
  11874. #u1220 {
  11875. border-width:0px;
  11876. position:absolute;
  11877. left:210px;
  11878. top:1966px;
  11879. width:241px;
  11880. height:17px;
  11881. display:flex;
  11882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11883. font-weight:400;
  11884. font-style:normal;
  11885. font-size:12px;
  11886. color:#555555;
  11887. }
  11888. #u1220 .text {
  11889. position:absolute;
  11890. align-self:flex-start;
  11891. padding:0px 0px 0px 0px;
  11892. box-sizing:border-box;
  11893. width:100%;
  11894. }
  11895. #u1220_text {
  11896. border-width:0px;
  11897. white-space:nowrap;
  11898. text-transform:none;
  11899. }
  11900. #u1221_div {
  11901. border-width:0px;
  11902. position:absolute;
  11903. left:0px;
  11904. top:0px;
  11905. width:72px;
  11906. height:17px;
  11907. background:inherit;
  11908. background-color:rgba(255, 255, 255, 0);
  11909. border:none;
  11910. border-radius:0px;
  11911. -moz-box-shadow:none;
  11912. -webkit-box-shadow:none;
  11913. box-shadow:none;
  11914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11915. font-weight:400;
  11916. font-style:normal;
  11917. font-size:12px;
  11918. color:#555555;
  11919. text-align:right;
  11920. }
  11921. #u1221 {
  11922. border-width:0px;
  11923. position:absolute;
  11924. left:1049px;
  11925. top:1966px;
  11926. width:72px;
  11927. height:17px;
  11928. display:flex;
  11929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11930. font-weight:400;
  11931. font-style:normal;
  11932. font-size:12px;
  11933. color:#555555;
  11934. text-align:right;
  11935. }
  11936. #u1221 .text {
  11937. position:absolute;
  11938. align-self:flex-start;
  11939. padding:0px 0px 0px 0px;
  11940. box-sizing:border-box;
  11941. width:100%;
  11942. }
  11943. #u1221_text {
  11944. border-width:0px;
  11945. white-space:nowrap;
  11946. text-transform:none;
  11947. }
  11948. #u1222_div {
  11949. border-width:0px;
  11950. position:absolute;
  11951. left:0px;
  11952. top:0px;
  11953. width:21px;
  11954. height:15px;
  11955. background:inherit;
  11956. background-color:rgba(217, 0, 27, 1);
  11957. border:none;
  11958. border-radius:2px;
  11959. -moz-box-shadow:none;
  11960. -webkit-box-shadow:none;
  11961. box-shadow:none;
  11962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11963. font-weight:400;
  11964. font-style:normal;
  11965. font-size:8px;
  11966. color:#FFFFFF;
  11967. }
  11968. #u1222 {
  11969. border-width:0px;
  11970. position:absolute;
  11971. left:192px;
  11972. top:1882px;
  11973. width:21px;
  11974. height:15px;
  11975. display:flex;
  11976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11977. font-weight:400;
  11978. font-style:normal;
  11979. font-size:8px;
  11980. color:#FFFFFF;
  11981. }
  11982. #u1222 .text {
  11983. position:absolute;
  11984. align-self:flex-start;
  11985. padding:2px 2px 2px 2px;
  11986. box-sizing:border-box;
  11987. width:100%;
  11988. }
  11989. #u1222_text {
  11990. border-width:0px;
  11991. white-space:nowrap;
  11992. text-transform:none;
  11993. }
  11994. #u1223_div {
  11995. border-width:0px;
  11996. position:absolute;
  11997. left:0px;
  11998. top:0px;
  11999. width:21px;
  12000. height:15px;
  12001. background:inherit;
  12002. background-color:rgba(170, 170, 170, 1);
  12003. border:none;
  12004. border-radius:2px;
  12005. -moz-box-shadow:none;
  12006. -webkit-box-shadow:none;
  12007. box-shadow:none;
  12008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12009. font-weight:400;
  12010. font-style:normal;
  12011. font-size:8px;
  12012. color:#FFFFFF;
  12013. }
  12014. #u1223 {
  12015. border-width:0px;
  12016. position:absolute;
  12017. left:192px;
  12018. top:1911px;
  12019. width:21px;
  12020. height:15px;
  12021. display:flex;
  12022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12023. font-weight:400;
  12024. font-style:normal;
  12025. font-size:8px;
  12026. color:#FFFFFF;
  12027. }
  12028. #u1223 .text {
  12029. position:absolute;
  12030. align-self:flex-start;
  12031. padding:2px 2px 2px 2px;
  12032. box-sizing:border-box;
  12033. width:100%;
  12034. }
  12035. #u1223_text {
  12036. border-width:0px;
  12037. white-space:nowrap;
  12038. text-transform:none;
  12039. }
  12040. #u1224_div {
  12041. border-width:0px;
  12042. position:absolute;
  12043. left:0px;
  12044. top:0px;
  12045. width:21px;
  12046. height:15px;
  12047. background:inherit;
  12048. background-color:rgba(217, 0, 27, 1);
  12049. border:none;
  12050. border-radius:2px;
  12051. -moz-box-shadow:none;
  12052. -webkit-box-shadow:none;
  12053. box-shadow:none;
  12054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12055. font-weight:400;
  12056. font-style:normal;
  12057. font-size:8px;
  12058. color:#FFFFFF;
  12059. }
  12060. #u1224 {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:192px;
  12064. top:1939px;
  12065. width:21px;
  12066. height:15px;
  12067. display:flex;
  12068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12069. font-weight:400;
  12070. font-style:normal;
  12071. font-size:8px;
  12072. color:#FFFFFF;
  12073. }
  12074. #u1224 .text {
  12075. position:absolute;
  12076. align-self:flex-start;
  12077. padding:2px 2px 2px 2px;
  12078. box-sizing:border-box;
  12079. width:100%;
  12080. }
  12081. #u1224_text {
  12082. border-width:0px;
  12083. white-space:nowrap;
  12084. text-transform:none;
  12085. }
  12086. #u1225_div {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:0px;
  12090. top:0px;
  12091. width:21px;
  12092. height:15px;
  12093. background:inherit;
  12094. background-color:rgba(217, 0, 27, 1);
  12095. border:none;
  12096. border-radius:2px;
  12097. -moz-box-shadow:none;
  12098. -webkit-box-shadow:none;
  12099. box-shadow:none;
  12100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12101. font-weight:400;
  12102. font-style:normal;
  12103. font-size:8px;
  12104. color:#FFFFFF;
  12105. }
  12106. #u1225 {
  12107. border-width:0px;
  12108. position:absolute;
  12109. left:192px;
  12110. top:1968px;
  12111. width:21px;
  12112. height:15px;
  12113. display:flex;
  12114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12115. font-weight:400;
  12116. font-style:normal;
  12117. font-size:8px;
  12118. color:#FFFFFF;
  12119. }
  12120. #u1225 .text {
  12121. position:absolute;
  12122. align-self:flex-start;
  12123. padding:2px 2px 2px 2px;
  12124. box-sizing:border-box;
  12125. width:100%;
  12126. }
  12127. #u1225_text {
  12128. border-width:0px;
  12129. white-space:nowrap;
  12130. text-transform:none;
  12131. }
  12132. #u1226_div {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:0px;
  12136. top:0px;
  12137. width:267px;
  12138. height:17px;
  12139. background:inherit;
  12140. background-color:rgba(255, 255, 255, 0);
  12141. border:none;
  12142. border-radius:0px;
  12143. -moz-box-shadow:none;
  12144. -webkit-box-shadow:none;
  12145. box-shadow:none;
  12146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12147. font-weight:400;
  12148. font-style:normal;
  12149. font-size:12px;
  12150. color:#555555;
  12151. }
  12152. #u1226 {
  12153. border-width:0px;
  12154. position:absolute;
  12155. left:210px;
  12156. top:1993px;
  12157. width:267px;
  12158. height:17px;
  12159. display:flex;
  12160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12161. font-weight:400;
  12162. font-style:normal;
  12163. font-size:12px;
  12164. color:#555555;
  12165. }
  12166. #u1226 .text {
  12167. position:absolute;
  12168. align-self:flex-start;
  12169. padding:0px 0px 0px 0px;
  12170. box-sizing:border-box;
  12171. width:100%;
  12172. }
  12173. #u1226_text {
  12174. border-width:0px;
  12175. white-space:nowrap;
  12176. text-transform:none;
  12177. }
  12178. #u1227_div {
  12179. border-width:0px;
  12180. position:absolute;
  12181. left:0px;
  12182. top:0px;
  12183. width:72px;
  12184. height:17px;
  12185. background:inherit;
  12186. background-color:rgba(255, 255, 255, 0);
  12187. border:none;
  12188. border-radius:0px;
  12189. -moz-box-shadow:none;
  12190. -webkit-box-shadow:none;
  12191. box-shadow:none;
  12192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12193. font-weight:400;
  12194. font-style:normal;
  12195. font-size:12px;
  12196. color:#555555;
  12197. text-align:right;
  12198. }
  12199. #u1227 {
  12200. border-width:0px;
  12201. position:absolute;
  12202. left:1049px;
  12203. top:1993px;
  12204. width:72px;
  12205. height:17px;
  12206. display:flex;
  12207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12208. font-weight:400;
  12209. font-style:normal;
  12210. font-size:12px;
  12211. color:#555555;
  12212. text-align:right;
  12213. }
  12214. #u1227 .text {
  12215. position:absolute;
  12216. align-self:flex-start;
  12217. padding:0px 0px 0px 0px;
  12218. box-sizing:border-box;
  12219. width:100%;
  12220. }
  12221. #u1227_text {
  12222. border-width:0px;
  12223. white-space:nowrap;
  12224. text-transform:none;
  12225. }
  12226. #u1228_div {
  12227. border-width:0px;
  12228. position:absolute;
  12229. left:0px;
  12230. top:0px;
  12231. width:253px;
  12232. height:17px;
  12233. background:inherit;
  12234. background-color:rgba(255, 255, 255, 0);
  12235. border:none;
  12236. border-radius:0px;
  12237. -moz-box-shadow:none;
  12238. -webkit-box-shadow:none;
  12239. box-shadow:none;
  12240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12241. font-weight:400;
  12242. font-style:normal;
  12243. font-size:12px;
  12244. color:#555555;
  12245. }
  12246. #u1228 {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:210px;
  12250. top:2021px;
  12251. width:253px;
  12252. height:17px;
  12253. display:flex;
  12254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12255. font-weight:400;
  12256. font-style:normal;
  12257. font-size:12px;
  12258. color:#555555;
  12259. }
  12260. #u1228 .text {
  12261. position:absolute;
  12262. align-self:flex-start;
  12263. padding:0px 0px 0px 0px;
  12264. box-sizing:border-box;
  12265. width:100%;
  12266. }
  12267. #u1228_text {
  12268. border-width:0px;
  12269. white-space:nowrap;
  12270. text-transform:none;
  12271. }
  12272. #u1229_div {
  12273. border-width:0px;
  12274. position:absolute;
  12275. left:0px;
  12276. top:0px;
  12277. width:72px;
  12278. height:17px;
  12279. background:inherit;
  12280. background-color:rgba(255, 255, 255, 0);
  12281. border:none;
  12282. border-radius:0px;
  12283. -moz-box-shadow:none;
  12284. -webkit-box-shadow:none;
  12285. box-shadow:none;
  12286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12287. font-weight:400;
  12288. font-style:normal;
  12289. font-size:12px;
  12290. color:#555555;
  12291. text-align:right;
  12292. }
  12293. #u1229 {
  12294. border-width:0px;
  12295. position:absolute;
  12296. left:1049px;
  12297. top:2021px;
  12298. width:72px;
  12299. height:17px;
  12300. display:flex;
  12301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12302. font-weight:400;
  12303. font-style:normal;
  12304. font-size:12px;
  12305. color:#555555;
  12306. text-align:right;
  12307. }
  12308. #u1229 .text {
  12309. position:absolute;
  12310. align-self:flex-start;
  12311. padding:0px 0px 0px 0px;
  12312. box-sizing:border-box;
  12313. width:100%;
  12314. }
  12315. #u1229_text {
  12316. border-width:0px;
  12317. white-space:nowrap;
  12318. text-transform:none;
  12319. }
  12320. #u1230_div {
  12321. border-width:0px;
  12322. position:absolute;
  12323. left:0px;
  12324. top:0px;
  12325. width:253px;
  12326. height:17px;
  12327. background:inherit;
  12328. background-color:rgba(255, 255, 255, 0);
  12329. border:none;
  12330. border-radius:0px;
  12331. -moz-box-shadow:none;
  12332. -webkit-box-shadow:none;
  12333. box-shadow:none;
  12334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12335. font-weight:400;
  12336. font-style:normal;
  12337. font-size:12px;
  12338. color:#555555;
  12339. }
  12340. #u1230 {
  12341. border-width:0px;
  12342. position:absolute;
  12343. left:210px;
  12344. top:2050px;
  12345. width:253px;
  12346. height:17px;
  12347. display:flex;
  12348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12349. font-weight:400;
  12350. font-style:normal;
  12351. font-size:12px;
  12352. color:#555555;
  12353. }
  12354. #u1230 .text {
  12355. position:absolute;
  12356. align-self:flex-start;
  12357. padding:0px 0px 0px 0px;
  12358. box-sizing:border-box;
  12359. width:100%;
  12360. }
  12361. #u1230_text {
  12362. border-width:0px;
  12363. white-space:nowrap;
  12364. text-transform:none;
  12365. }
  12366. #u1231_div {
  12367. border-width:0px;
  12368. position:absolute;
  12369. left:0px;
  12370. top:0px;
  12371. width:72px;
  12372. height:17px;
  12373. background:inherit;
  12374. background-color:rgba(255, 255, 255, 0);
  12375. border:none;
  12376. border-radius:0px;
  12377. -moz-box-shadow:none;
  12378. -webkit-box-shadow:none;
  12379. box-shadow:none;
  12380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12381. font-weight:400;
  12382. font-style:normal;
  12383. font-size:12px;
  12384. color:#555555;
  12385. text-align:right;
  12386. }
  12387. #u1231 {
  12388. border-width:0px;
  12389. position:absolute;
  12390. left:1049px;
  12391. top:2050px;
  12392. width:72px;
  12393. height:17px;
  12394. display:flex;
  12395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12396. font-weight:400;
  12397. font-style:normal;
  12398. font-size:12px;
  12399. color:#555555;
  12400. text-align:right;
  12401. }
  12402. #u1231 .text {
  12403. position:absolute;
  12404. align-self:flex-start;
  12405. padding:0px 0px 0px 0px;
  12406. box-sizing:border-box;
  12407. width:100%;
  12408. }
  12409. #u1231_text {
  12410. border-width:0px;
  12411. white-space:nowrap;
  12412. text-transform:none;
  12413. }
  12414. #u1232_div {
  12415. border-width:0px;
  12416. position:absolute;
  12417. left:0px;
  12418. top:0px;
  12419. width:241px;
  12420. height:17px;
  12421. background:inherit;
  12422. background-color:rgba(255, 255, 255, 0);
  12423. border:none;
  12424. border-radius:0px;
  12425. -moz-box-shadow:none;
  12426. -webkit-box-shadow:none;
  12427. box-shadow:none;
  12428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12429. font-weight:400;
  12430. font-style:normal;
  12431. font-size:12px;
  12432. color:#555555;
  12433. }
  12434. #u1232 {
  12435. border-width:0px;
  12436. position:absolute;
  12437. left:210px;
  12438. top:2078px;
  12439. width:241px;
  12440. height:17px;
  12441. display:flex;
  12442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12443. font-weight:400;
  12444. font-style:normal;
  12445. font-size:12px;
  12446. color:#555555;
  12447. }
  12448. #u1232 .text {
  12449. position:absolute;
  12450. align-self:flex-start;
  12451. padding:0px 0px 0px 0px;
  12452. box-sizing:border-box;
  12453. width:100%;
  12454. }
  12455. #u1232_text {
  12456. border-width:0px;
  12457. white-space:nowrap;
  12458. text-transform:none;
  12459. }
  12460. #u1233_div {
  12461. border-width:0px;
  12462. position:absolute;
  12463. left:0px;
  12464. top:0px;
  12465. width:72px;
  12466. height:17px;
  12467. background:inherit;
  12468. background-color:rgba(255, 255, 255, 0);
  12469. border:none;
  12470. border-radius:0px;
  12471. -moz-box-shadow:none;
  12472. -webkit-box-shadow:none;
  12473. box-shadow:none;
  12474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12475. font-weight:400;
  12476. font-style:normal;
  12477. font-size:12px;
  12478. color:#555555;
  12479. text-align:right;
  12480. }
  12481. #u1233 {
  12482. border-width:0px;
  12483. position:absolute;
  12484. left:1049px;
  12485. top:2078px;
  12486. width:72px;
  12487. height:17px;
  12488. display:flex;
  12489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12490. font-weight:400;
  12491. font-style:normal;
  12492. font-size:12px;
  12493. color:#555555;
  12494. text-align:right;
  12495. }
  12496. #u1233 .text {
  12497. position:absolute;
  12498. align-self:flex-start;
  12499. padding:0px 0px 0px 0px;
  12500. box-sizing:border-box;
  12501. width:100%;
  12502. }
  12503. #u1233_text {
  12504. border-width:0px;
  12505. white-space:nowrap;
  12506. text-transform:none;
  12507. }
  12508. #u1234_div {
  12509. border-width:0px;
  12510. position:absolute;
  12511. left:0px;
  12512. top:0px;
  12513. width:21px;
  12514. height:15px;
  12515. background:inherit;
  12516. background-color:rgba(217, 0, 27, 1);
  12517. border:none;
  12518. border-radius:2px;
  12519. -moz-box-shadow:none;
  12520. -webkit-box-shadow:none;
  12521. box-shadow:none;
  12522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12523. font-weight:400;
  12524. font-style:normal;
  12525. font-size:8px;
  12526. color:#FFFFFF;
  12527. }
  12528. #u1234 {
  12529. border-width:0px;
  12530. position:absolute;
  12531. left:192px;
  12532. top:1994px;
  12533. width:21px;
  12534. height:15px;
  12535. display:flex;
  12536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12537. font-weight:400;
  12538. font-style:normal;
  12539. font-size:8px;
  12540. color:#FFFFFF;
  12541. }
  12542. #u1234 .text {
  12543. position:absolute;
  12544. align-self:flex-start;
  12545. padding:2px 2px 2px 2px;
  12546. box-sizing:border-box;
  12547. width:100%;
  12548. }
  12549. #u1234_text {
  12550. border-width:0px;
  12551. white-space:nowrap;
  12552. text-transform:none;
  12553. }
  12554. #u1235_div {
  12555. border-width:0px;
  12556. position:absolute;
  12557. left:0px;
  12558. top:0px;
  12559. width:21px;
  12560. height:15px;
  12561. background:inherit;
  12562. background-color:rgba(170, 170, 170, 1);
  12563. border:none;
  12564. border-radius:2px;
  12565. -moz-box-shadow:none;
  12566. -webkit-box-shadow:none;
  12567. box-shadow:none;
  12568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12569. font-weight:400;
  12570. font-style:normal;
  12571. font-size:8px;
  12572. color:#FFFFFF;
  12573. }
  12574. #u1235 {
  12575. border-width:0px;
  12576. position:absolute;
  12577. left:192px;
  12578. top:2023px;
  12579. width:21px;
  12580. height:15px;
  12581. display:flex;
  12582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12583. font-weight:400;
  12584. font-style:normal;
  12585. font-size:8px;
  12586. color:#FFFFFF;
  12587. }
  12588. #u1235 .text {
  12589. position:absolute;
  12590. align-self:flex-start;
  12591. padding:2px 2px 2px 2px;
  12592. box-sizing:border-box;
  12593. width:100%;
  12594. }
  12595. #u1235_text {
  12596. border-width:0px;
  12597. white-space:nowrap;
  12598. text-transform:none;
  12599. }
  12600. #u1236_div {
  12601. border-width:0px;
  12602. position:absolute;
  12603. left:0px;
  12604. top:0px;
  12605. width:21px;
  12606. height:15px;
  12607. background:inherit;
  12608. background-color:rgba(217, 0, 27, 1);
  12609. border:none;
  12610. border-radius:2px;
  12611. -moz-box-shadow:none;
  12612. -webkit-box-shadow:none;
  12613. box-shadow:none;
  12614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12615. font-weight:400;
  12616. font-style:normal;
  12617. font-size:8px;
  12618. color:#FFFFFF;
  12619. }
  12620. #u1236 {
  12621. border-width:0px;
  12622. position:absolute;
  12623. left:192px;
  12624. top:2051px;
  12625. width:21px;
  12626. height:15px;
  12627. display:flex;
  12628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12629. font-weight:400;
  12630. font-style:normal;
  12631. font-size:8px;
  12632. color:#FFFFFF;
  12633. }
  12634. #u1236 .text {
  12635. position:absolute;
  12636. align-self:flex-start;
  12637. padding:2px 2px 2px 2px;
  12638. box-sizing:border-box;
  12639. width:100%;
  12640. }
  12641. #u1236_text {
  12642. border-width:0px;
  12643. white-space:nowrap;
  12644. text-transform:none;
  12645. }
  12646. #u1237_div {
  12647. border-width:0px;
  12648. position:absolute;
  12649. left:0px;
  12650. top:0px;
  12651. width:21px;
  12652. height:15px;
  12653. background:inherit;
  12654. background-color:rgba(217, 0, 27, 1);
  12655. border:none;
  12656. border-radius:2px;
  12657. -moz-box-shadow:none;
  12658. -webkit-box-shadow:none;
  12659. box-shadow:none;
  12660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12661. font-weight:400;
  12662. font-style:normal;
  12663. font-size:8px;
  12664. color:#FFFFFF;
  12665. }
  12666. #u1237 {
  12667. border-width:0px;
  12668. position:absolute;
  12669. left:192px;
  12670. top:2080px;
  12671. width:21px;
  12672. height:15px;
  12673. display:flex;
  12674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12675. font-weight:400;
  12676. font-style:normal;
  12677. font-size:8px;
  12678. color:#FFFFFF;
  12679. }
  12680. #u1237 .text {
  12681. position:absolute;
  12682. align-self:flex-start;
  12683. padding:2px 2px 2px 2px;
  12684. box-sizing:border-box;
  12685. width:100%;
  12686. }
  12687. #u1237_text {
  12688. border-width:0px;
  12689. white-space:nowrap;
  12690. text-transform:none;
  12691. }
  12692. #u1238_div {
  12693. border-width:0px;
  12694. position:absolute;
  12695. left:0px;
  12696. top:0px;
  12697. width:267px;
  12698. height:17px;
  12699. background:inherit;
  12700. background-color:rgba(255, 255, 255, 0);
  12701. border:none;
  12702. border-radius:0px;
  12703. -moz-box-shadow:none;
  12704. -webkit-box-shadow:none;
  12705. box-shadow:none;
  12706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12707. font-weight:400;
  12708. font-style:normal;
  12709. font-size:12px;
  12710. color:#555555;
  12711. }
  12712. #u1238 {
  12713. border-width:0px;
  12714. position:absolute;
  12715. left:210px;
  12716. top:2105px;
  12717. width:267px;
  12718. height:17px;
  12719. display:flex;
  12720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12721. font-weight:400;
  12722. font-style:normal;
  12723. font-size:12px;
  12724. color:#555555;
  12725. }
  12726. #u1238 .text {
  12727. position:absolute;
  12728. align-self:flex-start;
  12729. padding:0px 0px 0px 0px;
  12730. box-sizing:border-box;
  12731. width:100%;
  12732. }
  12733. #u1238_text {
  12734. border-width:0px;
  12735. white-space:nowrap;
  12736. text-transform:none;
  12737. }
  12738. #u1239_div {
  12739. border-width:0px;
  12740. position:absolute;
  12741. left:0px;
  12742. top:0px;
  12743. width:72px;
  12744. height:17px;
  12745. background:inherit;
  12746. background-color:rgba(255, 255, 255, 0);
  12747. border:none;
  12748. border-radius:0px;
  12749. -moz-box-shadow:none;
  12750. -webkit-box-shadow:none;
  12751. box-shadow:none;
  12752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12753. font-weight:400;
  12754. font-style:normal;
  12755. font-size:12px;
  12756. color:#555555;
  12757. text-align:right;
  12758. }
  12759. #u1239 {
  12760. border-width:0px;
  12761. position:absolute;
  12762. left:1049px;
  12763. top:2105px;
  12764. width:72px;
  12765. height:17px;
  12766. display:flex;
  12767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12768. font-weight:400;
  12769. font-style:normal;
  12770. font-size:12px;
  12771. color:#555555;
  12772. text-align:right;
  12773. }
  12774. #u1239 .text {
  12775. position:absolute;
  12776. align-self:flex-start;
  12777. padding:0px 0px 0px 0px;
  12778. box-sizing:border-box;
  12779. width:100%;
  12780. }
  12781. #u1239_text {
  12782. border-width:0px;
  12783. white-space:nowrap;
  12784. text-transform:none;
  12785. }
  12786. #u1240_div {
  12787. border-width:0px;
  12788. position:absolute;
  12789. left:0px;
  12790. top:0px;
  12791. width:253px;
  12792. height:17px;
  12793. background:inherit;
  12794. background-color:rgba(255, 255, 255, 0);
  12795. border:none;
  12796. border-radius:0px;
  12797. -moz-box-shadow:none;
  12798. -webkit-box-shadow:none;
  12799. box-shadow:none;
  12800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12801. font-weight:400;
  12802. font-style:normal;
  12803. font-size:12px;
  12804. color:#555555;
  12805. }
  12806. #u1240 {
  12807. border-width:0px;
  12808. position:absolute;
  12809. left:210px;
  12810. top:2133px;
  12811. width:253px;
  12812. height:17px;
  12813. display:flex;
  12814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12815. font-weight:400;
  12816. font-style:normal;
  12817. font-size:12px;
  12818. color:#555555;
  12819. }
  12820. #u1240 .text {
  12821. position:absolute;
  12822. align-self:flex-start;
  12823. padding:0px 0px 0px 0px;
  12824. box-sizing:border-box;
  12825. width:100%;
  12826. }
  12827. #u1240_text {
  12828. border-width:0px;
  12829. white-space:nowrap;
  12830. text-transform:none;
  12831. }
  12832. #u1241_div {
  12833. border-width:0px;
  12834. position:absolute;
  12835. left:0px;
  12836. top:0px;
  12837. width:72px;
  12838. height:17px;
  12839. background:inherit;
  12840. background-color:rgba(255, 255, 255, 0);
  12841. border:none;
  12842. border-radius:0px;
  12843. -moz-box-shadow:none;
  12844. -webkit-box-shadow:none;
  12845. box-shadow:none;
  12846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12847. font-weight:400;
  12848. font-style:normal;
  12849. font-size:12px;
  12850. color:#555555;
  12851. text-align:right;
  12852. }
  12853. #u1241 {
  12854. border-width:0px;
  12855. position:absolute;
  12856. left:1049px;
  12857. top:2133px;
  12858. width:72px;
  12859. height:17px;
  12860. display:flex;
  12861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12862. font-weight:400;
  12863. font-style:normal;
  12864. font-size:12px;
  12865. color:#555555;
  12866. text-align:right;
  12867. }
  12868. #u1241 .text {
  12869. position:absolute;
  12870. align-self:flex-start;
  12871. padding:0px 0px 0px 0px;
  12872. box-sizing:border-box;
  12873. width:100%;
  12874. }
  12875. #u1241_text {
  12876. border-width:0px;
  12877. white-space:nowrap;
  12878. text-transform:none;
  12879. }
  12880. #u1242_div {
  12881. border-width:0px;
  12882. position:absolute;
  12883. left:0px;
  12884. top:0px;
  12885. width:253px;
  12886. height:17px;
  12887. background:inherit;
  12888. background-color:rgba(255, 255, 255, 0);
  12889. border:none;
  12890. border-radius:0px;
  12891. -moz-box-shadow:none;
  12892. -webkit-box-shadow:none;
  12893. box-shadow:none;
  12894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12895. font-weight:400;
  12896. font-style:normal;
  12897. font-size:12px;
  12898. color:#555555;
  12899. }
  12900. #u1242 {
  12901. border-width:0px;
  12902. position:absolute;
  12903. left:210px;
  12904. top:2162px;
  12905. width:253px;
  12906. height:17px;
  12907. display:flex;
  12908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12909. font-weight:400;
  12910. font-style:normal;
  12911. font-size:12px;
  12912. color:#555555;
  12913. }
  12914. #u1242 .text {
  12915. position:absolute;
  12916. align-self:flex-start;
  12917. padding:0px 0px 0px 0px;
  12918. box-sizing:border-box;
  12919. width:100%;
  12920. }
  12921. #u1242_text {
  12922. border-width:0px;
  12923. white-space:nowrap;
  12924. text-transform:none;
  12925. }
  12926. #u1243_div {
  12927. border-width:0px;
  12928. position:absolute;
  12929. left:0px;
  12930. top:0px;
  12931. width:72px;
  12932. height:17px;
  12933. background:inherit;
  12934. background-color:rgba(255, 255, 255, 0);
  12935. border:none;
  12936. border-radius:0px;
  12937. -moz-box-shadow:none;
  12938. -webkit-box-shadow:none;
  12939. box-shadow:none;
  12940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12941. font-weight:400;
  12942. font-style:normal;
  12943. font-size:12px;
  12944. color:#555555;
  12945. text-align:right;
  12946. }
  12947. #u1243 {
  12948. border-width:0px;
  12949. position:absolute;
  12950. left:1049px;
  12951. top:2162px;
  12952. width:72px;
  12953. height:17px;
  12954. display:flex;
  12955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12956. font-weight:400;
  12957. font-style:normal;
  12958. font-size:12px;
  12959. color:#555555;
  12960. text-align:right;
  12961. }
  12962. #u1243 .text {
  12963. position:absolute;
  12964. align-self:flex-start;
  12965. padding:0px 0px 0px 0px;
  12966. box-sizing:border-box;
  12967. width:100%;
  12968. }
  12969. #u1243_text {
  12970. border-width:0px;
  12971. white-space:nowrap;
  12972. text-transform:none;
  12973. }
  12974. #u1244_div {
  12975. border-width:0px;
  12976. position:absolute;
  12977. left:0px;
  12978. top:0px;
  12979. width:241px;
  12980. height:17px;
  12981. background:inherit;
  12982. background-color:rgba(255, 255, 255, 0);
  12983. border:none;
  12984. border-radius:0px;
  12985. -moz-box-shadow:none;
  12986. -webkit-box-shadow:none;
  12987. box-shadow:none;
  12988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12989. font-weight:400;
  12990. font-style:normal;
  12991. font-size:12px;
  12992. color:#555555;
  12993. }
  12994. #u1244 {
  12995. border-width:0px;
  12996. position:absolute;
  12997. left:210px;
  12998. top:2190px;
  12999. width:241px;
  13000. height:17px;
  13001. display:flex;
  13002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13003. font-weight:400;
  13004. font-style:normal;
  13005. font-size:12px;
  13006. color:#555555;
  13007. }
  13008. #u1244 .text {
  13009. position:absolute;
  13010. align-self:flex-start;
  13011. padding:0px 0px 0px 0px;
  13012. box-sizing:border-box;
  13013. width:100%;
  13014. }
  13015. #u1244_text {
  13016. border-width:0px;
  13017. white-space:nowrap;
  13018. text-transform:none;
  13019. }
  13020. #u1245_div {
  13021. border-width:0px;
  13022. position:absolute;
  13023. left:0px;
  13024. top:0px;
  13025. width:72px;
  13026. height:17px;
  13027. background:inherit;
  13028. background-color:rgba(255, 255, 255, 0);
  13029. border:none;
  13030. border-radius:0px;
  13031. -moz-box-shadow:none;
  13032. -webkit-box-shadow:none;
  13033. box-shadow:none;
  13034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13035. font-weight:400;
  13036. font-style:normal;
  13037. font-size:12px;
  13038. color:#555555;
  13039. text-align:right;
  13040. }
  13041. #u1245 {
  13042. border-width:0px;
  13043. position:absolute;
  13044. left:1049px;
  13045. top:2190px;
  13046. width:72px;
  13047. height:17px;
  13048. display:flex;
  13049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13050. font-weight:400;
  13051. font-style:normal;
  13052. font-size:12px;
  13053. color:#555555;
  13054. text-align:right;
  13055. }
  13056. #u1245 .text {
  13057. position:absolute;
  13058. align-self:flex-start;
  13059. padding:0px 0px 0px 0px;
  13060. box-sizing:border-box;
  13061. width:100%;
  13062. }
  13063. #u1245_text {
  13064. border-width:0px;
  13065. white-space:nowrap;
  13066. text-transform:none;
  13067. }
  13068. #u1246_div {
  13069. border-width:0px;
  13070. position:absolute;
  13071. left:0px;
  13072. top:0px;
  13073. width:21px;
  13074. height:15px;
  13075. background:inherit;
  13076. background-color:rgba(217, 0, 27, 1);
  13077. border:none;
  13078. border-radius:2px;
  13079. -moz-box-shadow:none;
  13080. -webkit-box-shadow:none;
  13081. box-shadow:none;
  13082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13083. font-weight:400;
  13084. font-style:normal;
  13085. font-size:8px;
  13086. color:#FFFFFF;
  13087. }
  13088. #u1246 {
  13089. border-width:0px;
  13090. position:absolute;
  13091. left:192px;
  13092. top:2106px;
  13093. width:21px;
  13094. height:15px;
  13095. display:flex;
  13096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13097. font-weight:400;
  13098. font-style:normal;
  13099. font-size:8px;
  13100. color:#FFFFFF;
  13101. }
  13102. #u1246 .text {
  13103. position:absolute;
  13104. align-self:flex-start;
  13105. padding:2px 2px 2px 2px;
  13106. box-sizing:border-box;
  13107. width:100%;
  13108. }
  13109. #u1246_text {
  13110. border-width:0px;
  13111. white-space:nowrap;
  13112. text-transform:none;
  13113. }
  13114. #u1247_div {
  13115. border-width:0px;
  13116. position:absolute;
  13117. left:0px;
  13118. top:0px;
  13119. width:21px;
  13120. height:15px;
  13121. background:inherit;
  13122. background-color:rgba(170, 170, 170, 1);
  13123. border:none;
  13124. border-radius:2px;
  13125. -moz-box-shadow:none;
  13126. -webkit-box-shadow:none;
  13127. box-shadow:none;
  13128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13129. font-weight:400;
  13130. font-style:normal;
  13131. font-size:8px;
  13132. color:#FFFFFF;
  13133. }
  13134. #u1247 {
  13135. border-width:0px;
  13136. position:absolute;
  13137. left:192px;
  13138. top:2135px;
  13139. width:21px;
  13140. height:15px;
  13141. display:flex;
  13142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13143. font-weight:400;
  13144. font-style:normal;
  13145. font-size:8px;
  13146. color:#FFFFFF;
  13147. }
  13148. #u1247 .text {
  13149. position:absolute;
  13150. align-self:flex-start;
  13151. padding:2px 2px 2px 2px;
  13152. box-sizing:border-box;
  13153. width:100%;
  13154. }
  13155. #u1247_text {
  13156. border-width:0px;
  13157. white-space:nowrap;
  13158. text-transform:none;
  13159. }
  13160. #u1248_div {
  13161. border-width:0px;
  13162. position:absolute;
  13163. left:0px;
  13164. top:0px;
  13165. width:21px;
  13166. height:15px;
  13167. background:inherit;
  13168. background-color:rgba(217, 0, 27, 1);
  13169. border:none;
  13170. border-radius:2px;
  13171. -moz-box-shadow:none;
  13172. -webkit-box-shadow:none;
  13173. box-shadow:none;
  13174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13175. font-weight:400;
  13176. font-style:normal;
  13177. font-size:8px;
  13178. color:#FFFFFF;
  13179. }
  13180. #u1248 {
  13181. border-width:0px;
  13182. position:absolute;
  13183. left:192px;
  13184. top:2163px;
  13185. width:21px;
  13186. height:15px;
  13187. display:flex;
  13188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13189. font-weight:400;
  13190. font-style:normal;
  13191. font-size:8px;
  13192. color:#FFFFFF;
  13193. }
  13194. #u1248 .text {
  13195. position:absolute;
  13196. align-self:flex-start;
  13197. padding:2px 2px 2px 2px;
  13198. box-sizing:border-box;
  13199. width:100%;
  13200. }
  13201. #u1248_text {
  13202. border-width:0px;
  13203. white-space:nowrap;
  13204. text-transform:none;
  13205. }
  13206. #u1249_div {
  13207. border-width:0px;
  13208. position:absolute;
  13209. left:0px;
  13210. top:0px;
  13211. width:21px;
  13212. height:15px;
  13213. background:inherit;
  13214. background-color:rgba(217, 0, 27, 1);
  13215. border:none;
  13216. border-radius:2px;
  13217. -moz-box-shadow:none;
  13218. -webkit-box-shadow:none;
  13219. box-shadow:none;
  13220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13221. font-weight:400;
  13222. font-style:normal;
  13223. font-size:8px;
  13224. color:#FFFFFF;
  13225. }
  13226. #u1249 {
  13227. border-width:0px;
  13228. position:absolute;
  13229. left:192px;
  13230. top:2192px;
  13231. width:21px;
  13232. height:15px;
  13233. display:flex;
  13234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13235. font-weight:400;
  13236. font-style:normal;
  13237. font-size:8px;
  13238. color:#FFFFFF;
  13239. }
  13240. #u1249 .text {
  13241. position:absolute;
  13242. align-self:flex-start;
  13243. padding:2px 2px 2px 2px;
  13244. box-sizing:border-box;
  13245. width:100%;
  13246. }
  13247. #u1249_text {
  13248. border-width:0px;
  13249. white-space:nowrap;
  13250. text-transform:none;
  13251. }
  13252. #u1250 {
  13253. border-width:0px;
  13254. position:absolute;
  13255. left:0px;
  13256. top:0px;
  13257. width:0px;
  13258. height:0px;
  13259. }
  13260. #u1251_div {
  13261. border-width:0px;
  13262. position:absolute;
  13263. left:0px;
  13264. top:0px;
  13265. width:30px;
  13266. height:30px;
  13267. background:inherit;
  13268. background-color:rgba(255, 255, 255, 1);
  13269. box-sizing:border-box;
  13270. border-width:1px;
  13271. border-style:solid;
  13272. border-color:rgba(228, 228, 228, 1);
  13273. border-radius:4px;
  13274. -moz-box-shadow:none;
  13275. -webkit-box-shadow:none;
  13276. box-shadow:none;
  13277. font-family:'Microsoft YaHei', sans-serif;
  13278. font-weight:400;
  13279. font-style:normal;
  13280. font-size:14px;
  13281. }
  13282. #u1251 {
  13283. border-width:0px;
  13284. position:absolute;
  13285. left:682px;
  13286. top:2240px;
  13287. width:30px;
  13288. height:30px;
  13289. display:flex;
  13290. font-family:'Microsoft YaHei', sans-serif;
  13291. font-weight:400;
  13292. font-style:normal;
  13293. font-size:14px;
  13294. }
  13295. #u1251 .text {
  13296. position:absolute;
  13297. align-self:center;
  13298. padding:2px 2px 2px 2px;
  13299. box-sizing:border-box;
  13300. width:100%;
  13301. }
  13302. #u1251_text {
  13303. border-width:0px;
  13304. word-wrap:break-word;
  13305. text-transform:none;
  13306. }
  13307. #u1252_div {
  13308. border-width:0px;
  13309. position:absolute;
  13310. left:0px;
  13311. top:0px;
  13312. width:49px;
  13313. height:30px;
  13314. background:inherit;
  13315. background-color:rgba(255, 255, 255, 0);
  13316. box-sizing:border-box;
  13317. border-width:1px;
  13318. border-style:solid;
  13319. border-color:rgba(188, 188, 188, 1);
  13320. border-radius:4px;
  13321. -moz-box-shadow:none;
  13322. -webkit-box-shadow:none;
  13323. box-shadow:none;
  13324. font-family:'Microsoft YaHei', sans-serif;
  13325. font-weight:400;
  13326. font-style:normal;
  13327. font-size:14px;
  13328. color:#1E1E1E;
  13329. }
  13330. #u1252 {
  13331. border-width:0px;
  13332. position:absolute;
  13333. left:1072px;
  13334. top:2240px;
  13335. width:49px;
  13336. height:30px;
  13337. display:flex;
  13338. font-family:'Microsoft YaHei', sans-serif;
  13339. font-weight:400;
  13340. font-style:normal;
  13341. font-size:14px;
  13342. color:#1E1E1E;
  13343. }
  13344. #u1252 .text {
  13345. position:absolute;
  13346. align-self:center;
  13347. padding:5px 10px 5px 10px;
  13348. box-sizing:border-box;
  13349. width:100%;
  13350. }
  13351. #u1252_text {
  13352. border-width:0px;
  13353. white-space:nowrap;
  13354. text-transform:none;
  13355. }
  13356. #u1253 {
  13357. border-width:0px;
  13358. position:absolute;
  13359. left:0px;
  13360. top:0px;
  13361. width:0px;
  13362. height:0px;
  13363. }
  13364. #u1254_div {
  13365. border-width:0px;
  13366. position:absolute;
  13367. left:0px;
  13368. top:0px;
  13369. width:33px;
  13370. height:24px;
  13371. background:inherit;
  13372. background-color:rgba(255, 255, 255, 1);
  13373. border:none;
  13374. border-radius:0px;
  13375. -moz-box-shadow:none;
  13376. -webkit-box-shadow:none;
  13377. box-shadow:none;
  13378. font-family:'Microsoft YaHei', sans-serif;
  13379. font-weight:400;
  13380. font-style:normal;
  13381. font-size:14px;
  13382. color:#BCBCBC;
  13383. text-align:left;
  13384. }
  13385. #u1254 {
  13386. border-width:0px;
  13387. position:absolute;
  13388. left:966px;
  13389. top:2243px;
  13390. width:33px;
  13391. height:24px;
  13392. display:flex;
  13393. font-family:'Microsoft YaHei', sans-serif;
  13394. font-weight:400;
  13395. font-style:normal;
  13396. font-size:14px;
  13397. color:#BCBCBC;
  13398. text-align:left;
  13399. }
  13400. #u1254 .text {
  13401. position:absolute;
  13402. align-self:center;
  13403. padding:2px 2px 2px 2px;
  13404. box-sizing:border-box;
  13405. width:100%;
  13406. }
  13407. #u1254_text {
  13408. border-width:0px;
  13409. white-space:nowrap;
  13410. text-transform:none;
  13411. }
  13412. #u1255_div {
  13413. border-width:0px;
  13414. position:absolute;
  13415. left:0px;
  13416. top:0px;
  13417. width:40px;
  13418. height:30px;
  13419. background:inherit;
  13420. background-color:rgba(255, 255, 255, 1);
  13421. box-sizing:border-box;
  13422. border-width:1px;
  13423. border-style:solid;
  13424. border-color:rgba(228, 228, 228, 1);
  13425. border-radius:4px;
  13426. -moz-box-shadow:none;
  13427. -webkit-box-shadow:none;
  13428. box-shadow:none;
  13429. font-family:'Microsoft YaHei', sans-serif;
  13430. font-weight:400;
  13431. font-style:normal;
  13432. font-size:14px;
  13433. }
  13434. #u1255 {
  13435. border-width:0px;
  13436. position:absolute;
  13437. left:1001px;
  13438. top:2240px;
  13439. width:40px;
  13440. height:30px;
  13441. display:flex;
  13442. font-family:'Microsoft YaHei', sans-serif;
  13443. font-weight:400;
  13444. font-style:normal;
  13445. font-size:14px;
  13446. }
  13447. #u1255 .text {
  13448. position:absolute;
  13449. align-self:center;
  13450. padding:2px 2px 2px 2px;
  13451. box-sizing:border-box;
  13452. width:100%;
  13453. }
  13454. #u1255_text {
  13455. border-width:0px;
  13456. word-wrap:break-word;
  13457. text-transform:none;
  13458. visibility:hidden;
  13459. }
  13460. #u1256_div {
  13461. border-width:0px;
  13462. position:absolute;
  13463. left:0px;
  13464. top:0px;
  13465. width:19px;
  13466. height:24px;
  13467. background:inherit;
  13468. background-color:rgba(255, 255, 255, 1);
  13469. border:none;
  13470. border-radius:0px;
  13471. -moz-box-shadow:none;
  13472. -webkit-box-shadow:none;
  13473. box-shadow:none;
  13474. font-family:'Microsoft YaHei', sans-serif;
  13475. font-weight:400;
  13476. font-style:normal;
  13477. font-size:14px;
  13478. color:#BCBCBC;
  13479. text-align:left;
  13480. }
  13481. #u1256 {
  13482. border-width:0px;
  13483. position:absolute;
  13484. left:1043px;
  13485. top:2244px;
  13486. width:19px;
  13487. height:24px;
  13488. display:flex;
  13489. font-family:'Microsoft YaHei', sans-serif;
  13490. font-weight:400;
  13491. font-style:normal;
  13492. font-size:14px;
  13493. color:#BCBCBC;
  13494. text-align:left;
  13495. }
  13496. #u1256 .text {
  13497. position:absolute;
  13498. align-self:center;
  13499. padding:2px 2px 2px 2px;
  13500. box-sizing:border-box;
  13501. width:100%;
  13502. }
  13503. #u1256_text {
  13504. border-width:0px;
  13505. white-space:nowrap;
  13506. text-transform:none;
  13507. }
  13508. #u1257_input {
  13509. position:absolute;
  13510. left:0px;
  13511. top:0px;
  13512. width:34px;
  13513. height:25px;
  13514. padding:2px 2px 2px 2px;
  13515. font-family:'Microsoft YaHei', sans-serif;
  13516. font-weight:400;
  13517. font-style:normal;
  13518. font-size:13px;
  13519. letter-spacing:normal;
  13520. color:#000000;
  13521. vertical-align:none;
  13522. text-align:left;
  13523. text-transform:none;
  13524. background-color:transparent;
  13525. border-color:transparent;
  13526. }
  13527. #u1257_input.disabled {
  13528. position:absolute;
  13529. left:0px;
  13530. top:0px;
  13531. width:34px;
  13532. height:25px;
  13533. padding:2px 2px 2px 2px;
  13534. font-family:'Microsoft YaHei', sans-serif;
  13535. font-weight:400;
  13536. font-style:normal;
  13537. font-size:13px;
  13538. letter-spacing:normal;
  13539. color:#000000;
  13540. vertical-align:none;
  13541. text-align:left;
  13542. text-transform:none;
  13543. background-color:transparent;
  13544. border-color:transparent;
  13545. }
  13546. #u1257_div {
  13547. border-width:0px;
  13548. position:absolute;
  13549. left:0px;
  13550. top:0px;
  13551. width:34px;
  13552. height:25px;
  13553. background:inherit;
  13554. background-color:rgba(255, 255, 255, 1);
  13555. border:none;
  13556. border-radius:0px;
  13557. -moz-box-shadow:none;
  13558. -webkit-box-shadow:none;
  13559. box-shadow:none;
  13560. font-family:'Microsoft YaHei', sans-serif;
  13561. font-weight:400;
  13562. font-style:normal;
  13563. }
  13564. #u1257 {
  13565. border-width:0px;
  13566. position:absolute;
  13567. left:1004px;
  13568. top:2242px;
  13569. width:34px;
  13570. height:25px;
  13571. display:flex;
  13572. font-family:'Microsoft YaHei', sans-serif;
  13573. font-weight:400;
  13574. font-style:normal;
  13575. }
  13576. #u1257 .text {
  13577. position:absolute;
  13578. align-self:center;
  13579. padding:2px 2px 2px 2px;
  13580. box-sizing:border-box;
  13581. width:100%;
  13582. }
  13583. #u1257_div.disabled {
  13584. border-width:0px;
  13585. position:absolute;
  13586. left:0px;
  13587. top:0px;
  13588. width:34px;
  13589. height:25px;
  13590. background:inherit;
  13591. background-color:rgba(240, 240, 240, 1);
  13592. border:none;
  13593. border-radius:0px;
  13594. -moz-box-shadow:none;
  13595. -webkit-box-shadow:none;
  13596. box-shadow:none;
  13597. font-family:'Microsoft YaHei', sans-serif;
  13598. font-weight:400;
  13599. font-style:normal;
  13600. }
  13601. #u1257.disabled {
  13602. }
  13603. #u1258_div {
  13604. border-width:0px;
  13605. position:absolute;
  13606. left:0px;
  13607. top:0px;
  13608. width:30px;
  13609. height:30px;
  13610. background:inherit;
  13611. background-color:rgba(18, 150, 219, 1);
  13612. border:none;
  13613. border-radius:4px;
  13614. -moz-box-shadow:none;
  13615. -webkit-box-shadow:none;
  13616. box-shadow:none;
  13617. font-family:'Microsoft YaHei', sans-serif;
  13618. font-weight:400;
  13619. font-style:normal;
  13620. font-size:14px;
  13621. color:#FFFFFF;
  13622. }
  13623. #u1258 {
  13624. border-width:0px;
  13625. position:absolute;
  13626. left:716px;
  13627. top:2240px;
  13628. width:30px;
  13629. height:30px;
  13630. display:flex;
  13631. font-family:'Microsoft YaHei', sans-serif;
  13632. font-weight:400;
  13633. font-style:normal;
  13634. font-size:14px;
  13635. color:#FFFFFF;
  13636. }
  13637. #u1258 .text {
  13638. position:absolute;
  13639. align-self:center;
  13640. padding:2px 2px 2px 2px;
  13641. box-sizing:border-box;
  13642. width:100%;
  13643. }
  13644. #u1258_text {
  13645. border-width:0px;
  13646. word-wrap:break-word;
  13647. text-transform:none;
  13648. }
  13649. #u1259_div {
  13650. border-width:0px;
  13651. position:absolute;
  13652. left:0px;
  13653. top:0px;
  13654. width:30px;
  13655. height:30px;
  13656. background:inherit;
  13657. background-color:rgba(255, 255, 255, 1);
  13658. box-sizing:border-box;
  13659. border-width:1px;
  13660. border-style:solid;
  13661. border-color:rgba(228, 228, 228, 1);
  13662. border-radius:4px;
  13663. -moz-box-shadow:none;
  13664. -webkit-box-shadow:none;
  13665. box-shadow:none;
  13666. font-family:'Microsoft YaHei', sans-serif;
  13667. font-weight:400;
  13668. font-style:normal;
  13669. font-size:14px;
  13670. }
  13671. #u1259 {
  13672. border-width:0px;
  13673. position:absolute;
  13674. left:750px;
  13675. top:2240px;
  13676. width:30px;
  13677. height:30px;
  13678. display:flex;
  13679. font-family:'Microsoft YaHei', sans-serif;
  13680. font-weight:400;
  13681. font-style:normal;
  13682. font-size:14px;
  13683. }
  13684. #u1259 .text {
  13685. position:absolute;
  13686. align-self:center;
  13687. padding:2px 2px 2px 2px;
  13688. box-sizing:border-box;
  13689. width:100%;
  13690. }
  13691. #u1259_text {
  13692. border-width:0px;
  13693. word-wrap:break-word;
  13694. text-transform:none;
  13695. }
  13696. #u1260_div {
  13697. border-width:0px;
  13698. position:absolute;
  13699. left:0px;
  13700. top:0px;
  13701. width:30px;
  13702. height:30px;
  13703. background:inherit;
  13704. background-color:rgba(255, 255, 255, 1);
  13705. box-sizing:border-box;
  13706. border-width:1px;
  13707. border-style:solid;
  13708. border-color:rgba(228, 228, 228, 1);
  13709. border-radius:4px;
  13710. -moz-box-shadow:none;
  13711. -webkit-box-shadow:none;
  13712. box-shadow:none;
  13713. font-family:'Microsoft YaHei', sans-serif;
  13714. font-weight:400;
  13715. font-style:normal;
  13716. font-size:14px;
  13717. }
  13718. #u1260 {
  13719. border-width:0px;
  13720. position:absolute;
  13721. left:784px;
  13722. top:2240px;
  13723. width:30px;
  13724. height:30px;
  13725. display:flex;
  13726. font-family:'Microsoft YaHei', sans-serif;
  13727. font-weight:400;
  13728. font-style:normal;
  13729. font-size:14px;
  13730. }
  13731. #u1260 .text {
  13732. position:absolute;
  13733. align-self:center;
  13734. padding:2px 2px 2px 2px;
  13735. box-sizing:border-box;
  13736. width:100%;
  13737. }
  13738. #u1260_text {
  13739. border-width:0px;
  13740. word-wrap:break-word;
  13741. text-transform:none;
  13742. }
  13743. #u1261_div {
  13744. border-width:0px;
  13745. position:absolute;
  13746. left:0px;
  13747. top:0px;
  13748. width:30px;
  13749. height:30px;
  13750. background:inherit;
  13751. background-color:rgba(255, 255, 255, 1);
  13752. border:none;
  13753. border-radius:4px;
  13754. -moz-box-shadow:none;
  13755. -webkit-box-shadow:none;
  13756. box-shadow:none;
  13757. font-family:'Microsoft YaHei', sans-serif;
  13758. font-weight:400;
  13759. font-style:normal;
  13760. font-size:14px;
  13761. }
  13762. #u1261 {
  13763. border-width:0px;
  13764. position:absolute;
  13765. left:814px;
  13766. top:2240px;
  13767. width:30px;
  13768. height:30px;
  13769. display:flex;
  13770. font-family:'Microsoft YaHei', sans-serif;
  13771. font-weight:400;
  13772. font-style:normal;
  13773. font-size:14px;
  13774. }
  13775. #u1261 .text {
  13776. position:absolute;
  13777. align-self:center;
  13778. padding:2px 2px 2px 2px;
  13779. box-sizing:border-box;
  13780. width:100%;
  13781. }
  13782. #u1261_text {
  13783. border-width:0px;
  13784. word-wrap:break-word;
  13785. text-transform:none;
  13786. }
  13787. #u1262_div {
  13788. border-width:0px;
  13789. position:absolute;
  13790. left:0px;
  13791. top:0px;
  13792. width:30px;
  13793. height:30px;
  13794. background:inherit;
  13795. background-color:rgba(255, 255, 255, 1);
  13796. box-sizing:border-box;
  13797. border-width:1px;
  13798. border-style:solid;
  13799. border-color:rgba(228, 228, 228, 1);
  13800. border-radius:4px;
  13801. -moz-box-shadow:none;
  13802. -webkit-box-shadow:none;
  13803. box-shadow:none;
  13804. font-family:'Microsoft YaHei', sans-serif;
  13805. font-weight:400;
  13806. font-style:normal;
  13807. font-size:14px;
  13808. }
  13809. #u1262 {
  13810. border-width:0px;
  13811. position:absolute;
  13812. left:848px;
  13813. top:2240px;
  13814. width:30px;
  13815. height:30px;
  13816. display:flex;
  13817. font-family:'Microsoft YaHei', sans-serif;
  13818. font-weight:400;
  13819. font-style:normal;
  13820. font-size:14px;
  13821. }
  13822. #u1262 .text {
  13823. position:absolute;
  13824. align-self:center;
  13825. padding:2px 2px 2px 2px;
  13826. box-sizing:border-box;
  13827. width:100%;
  13828. }
  13829. #u1262_text {
  13830. border-width:0px;
  13831. word-wrap:break-word;
  13832. text-transform:none;
  13833. }
  13834. #u1263_div {
  13835. border-width:0px;
  13836. position:absolute;
  13837. left:0px;
  13838. top:0px;
  13839. width:32px;
  13840. height:21px;
  13841. background:inherit;
  13842. background-color:rgba(255, 255, 255, 1);
  13843. border:none;
  13844. border-radius:15px;
  13845. -moz-box-shadow:none;
  13846. -webkit-box-shadow:none;
  13847. box-shadow:none;
  13848. font-family:'Microsoft YaHei', sans-serif;
  13849. font-weight:400;
  13850. font-style:normal;
  13851. font-size:14px;
  13852. color:#1E1E1E;
  13853. }
  13854. #u1263 {
  13855. border-width:0px;
  13856. position:absolute;
  13857. left:922px;
  13858. top:2245px;
  13859. width:32px;
  13860. height:21px;
  13861. display:flex;
  13862. font-family:'Microsoft YaHei', sans-serif;
  13863. font-weight:400;
  13864. font-style:normal;
  13865. font-size:14px;
  13866. color:#1E1E1E;
  13867. }
  13868. #u1263 .text {
  13869. position:absolute;
  13870. align-self:center;
  13871. padding:2px 2px 2px 2px;
  13872. box-sizing:border-box;
  13873. width:100%;
  13874. }
  13875. #u1263_text {
  13876. border-width:0px;
  13877. white-space:nowrap;
  13878. text-transform:none;
  13879. }
  13880. #u1264 {
  13881. border-width:0px;
  13882. position:absolute;
  13883. left:0px;
  13884. top:0px;
  13885. width:0px;
  13886. height:0px;
  13887. }
  13888. #u1265_div {
  13889. border-width:0px;
  13890. position:absolute;
  13891. left:0px;
  13892. top:0px;
  13893. width:31px;
  13894. height:30px;
  13895. background:inherit;
  13896. background-color:rgba(255, 255, 255, 1);
  13897. box-sizing:border-box;
  13898. border-width:1px;
  13899. border-style:solid;
  13900. border-color:rgba(228, 228, 228, 1);
  13901. border-radius:4px;
  13902. -moz-box-shadow:none;
  13903. -webkit-box-shadow:none;
  13904. box-shadow:none;
  13905. font-family:'Microsoft YaHei', sans-serif;
  13906. font-weight:400;
  13907. font-style:normal;
  13908. font-size:12px;
  13909. }
  13910. #u1265 {
  13911. border-width:0px;
  13912. position:absolute;
  13913. left:647px;
  13914. top:2240px;
  13915. width:31px;
  13916. height:30px;
  13917. display:flex;
  13918. font-family:'Microsoft YaHei', sans-serif;
  13919. font-weight:400;
  13920. font-style:normal;
  13921. font-size:12px;
  13922. }
  13923. #u1265 .text {
  13924. position:absolute;
  13925. align-self:center;
  13926. padding:2px 2px 2px 2px;
  13927. box-sizing:border-box;
  13928. width:100%;
  13929. }
  13930. #u1265_text {
  13931. border-width:0px;
  13932. word-wrap:break-word;
  13933. text-transform:none;
  13934. visibility:hidden;
  13935. }
  13936. #u1266_img {
  13937. border-width:0px;
  13938. position:absolute;
  13939. left:0px;
  13940. top:0px;
  13941. width:8px;
  13942. height:14px;
  13943. }
  13944. #u1266 {
  13945. border-width:0px;
  13946. position:absolute;
  13947. left:659px;
  13948. top:2248px;
  13949. width:8px;
  13950. height:14px;
  13951. display:flex;
  13952. font-family:'Microsoft YaHei', sans-serif;
  13953. font-weight:400;
  13954. font-style:normal;
  13955. font-size:12px;
  13956. }
  13957. #u1266 .text {
  13958. position:absolute;
  13959. align-self:center;
  13960. padding:2px 2px 2px 2px;
  13961. box-sizing:border-box;
  13962. width:100%;
  13963. }
  13964. #u1266_text {
  13965. border-width:0px;
  13966. word-wrap:break-word;
  13967. text-transform:none;
  13968. visibility:hidden;
  13969. }
  13970. #u1267 {
  13971. border-width:0px;
  13972. position:absolute;
  13973. left:0px;
  13974. top:0px;
  13975. width:0px;
  13976. height:0px;
  13977. }
  13978. #u1268_div {
  13979. border-width:0px;
  13980. position:absolute;
  13981. left:0px;
  13982. top:0px;
  13983. width:31px;
  13984. height:30px;
  13985. background:inherit;
  13986. background-color:rgba(255, 255, 255, 1);
  13987. box-sizing:border-box;
  13988. border-width:1px;
  13989. border-style:solid;
  13990. border-color:rgba(228, 228, 228, 1);
  13991. border-radius:4px;
  13992. -moz-box-shadow:none;
  13993. -webkit-box-shadow:none;
  13994. box-shadow:none;
  13995. font-family:'Microsoft YaHei', sans-serif;
  13996. font-weight:400;
  13997. font-style:normal;
  13998. font-size:12px;
  13999. }
  14000. #u1268 {
  14001. border-width:0px;
  14002. position:absolute;
  14003. left:881px;
  14004. top:2240px;
  14005. width:31px;
  14006. height:30px;
  14007. display:flex;
  14008. font-family:'Microsoft YaHei', sans-serif;
  14009. font-weight:400;
  14010. font-style:normal;
  14011. font-size:12px;
  14012. }
  14013. #u1268 .text {
  14014. position:absolute;
  14015. align-self:center;
  14016. padding:2px 2px 2px 2px;
  14017. box-sizing:border-box;
  14018. width:100%;
  14019. }
  14020. #u1268_text {
  14021. border-width:0px;
  14022. word-wrap:break-word;
  14023. text-transform:none;
  14024. visibility:hidden;
  14025. }
  14026. #u1269_img {
  14027. border-width:0px;
  14028. position:absolute;
  14029. left:0px;
  14030. top:0px;
  14031. width:8px;
  14032. height:14px;
  14033. }
  14034. #u1269 {
  14035. border-width:0px;
  14036. position:absolute;
  14037. left:894px;
  14038. top:2248px;
  14039. width:8px;
  14040. height:14px;
  14041. display:flex;
  14042. font-family:'Microsoft YaHei', sans-serif;
  14043. font-weight:400;
  14044. font-style:normal;
  14045. font-size:12px;
  14046. }
  14047. #u1269 .text {
  14048. position:absolute;
  14049. align-self:center;
  14050. padding:2px 2px 2px 2px;
  14051. box-sizing:border-box;
  14052. width:100%;
  14053. }
  14054. #u1269_text {
  14055. border-width:0px;
  14056. word-wrap:break-word;
  14057. text-transform:none;
  14058. visibility:hidden;
  14059. }
  14060. #u1270_div {
  14061. border-width:0px;
  14062. position:absolute;
  14063. left:0px;
  14064. top:0px;
  14065. width:934px;
  14066. height:60px;
  14067. background:inherit;
  14068. background-color:rgba(255, 255, 255, 0);
  14069. border:none;
  14070. border-radius:0px;
  14071. -moz-box-shadow:none;
  14072. -webkit-box-shadow:none;
  14073. box-shadow:none;
  14074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14075. font-weight:400;
  14076. font-style:normal;
  14077. color:#D9001B;
  14078. }
  14079. #u1270 {
  14080. border-width:0px;
  14081. position:absolute;
  14082. left:170px;
  14083. top:1290px;
  14084. width:934px;
  14085. height:60px;
  14086. display:flex;
  14087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14088. font-weight:400;
  14089. font-style:normal;
  14090. color:#D9001B;
  14091. }
  14092. #u1270 .text {
  14093. position:absolute;
  14094. align-self:flex-start;
  14095. padding:0px 0px 0px 0px;
  14096. box-sizing:border-box;
  14097. width:100%;
  14098. }
  14099. #u1270_text {
  14100. border-width:0px;
  14101. white-space:nowrap;
  14102. text-transform:none;
  14103. }
  14104. #u1271_div {
  14105. border-width:0px;
  14106. position:absolute;
  14107. left:0px;
  14108. top:0px;
  14109. width:596px;
  14110. height:210px;
  14111. background:inherit;
  14112. background-color:rgba(255, 255, 255, 0);
  14113. border:none;
  14114. border-radius:0px;
  14115. -moz-box-shadow:none;
  14116. -webkit-box-shadow:none;
  14117. box-shadow:none;
  14118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14119. font-weight:400;
  14120. font-style:normal;
  14121. color:#D9001B;
  14122. line-height:30px;
  14123. }
  14124. #u1271 {
  14125. border-width:0px;
  14126. position:absolute;
  14127. left:574px;
  14128. top:1401px;
  14129. width:596px;
  14130. height:210px;
  14131. display:flex;
  14132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14133. font-weight:400;
  14134. font-style:normal;
  14135. color:#D9001B;
  14136. line-height:30px;
  14137. }
  14138. #u1271 .text {
  14139. position:absolute;
  14140. align-self:flex-start;
  14141. padding:0px 0px 0px 0px;
  14142. box-sizing:border-box;
  14143. width:100%;
  14144. }
  14145. #u1271_text {
  14146. border-width:0px;
  14147. word-wrap:break-word;
  14148. text-transform:none;
  14149. }
  14150. #u1272_div {
  14151. border-width:0px;
  14152. position:absolute;
  14153. left:0px;
  14154. top:0px;
  14155. width:25px;
  14156. height:27px;
  14157. background:inherit;
  14158. background-color:rgba(217, 0, 27, 1);
  14159. border:none;
  14160. border-radius:13px;
  14161. -moz-box-shadow:none;
  14162. -webkit-box-shadow:none;
  14163. box-shadow:none;
  14164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14165. font-weight:400;
  14166. font-style:normal;
  14167. font-size:18px;
  14168. color:#FFFFFF;
  14169. text-align:center;
  14170. }
  14171. #u1272 {
  14172. border-width:0px;
  14173. position:absolute;
  14174. left:83px;
  14175. top:1142px;
  14176. width:25px;
  14177. height:27px;
  14178. display:flex;
  14179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14180. font-weight:400;
  14181. font-style:normal;
  14182. font-size:18px;
  14183. color:#FFFFFF;
  14184. text-align:center;
  14185. }
  14186. #u1272 .text {
  14187. position:absolute;
  14188. align-self:center;
  14189. padding:0px 2px 0px 2px;
  14190. box-sizing:border-box;
  14191. width:100%;
  14192. }
  14193. #u1272_text {
  14194. border-width:0px;
  14195. word-wrap:break-word;
  14196. text-transform:none;
  14197. }
  14198. #u1273 {
  14199. border-width:0px;
  14200. position:absolute;
  14201. left:96px;
  14202. top:1169px;
  14203. width:0px;
  14204. height:0px;
  14205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14206. font-weight:400;
  14207. font-style:normal;
  14208. color:#0089FE;
  14209. }
  14210. #u1273_seg0 {
  14211. border-width:0px;
  14212. position:absolute;
  14213. left:-5px;
  14214. top:0px;
  14215. width:10px;
  14216. height:156px;
  14217. }
  14218. #u1273_seg1 {
  14219. border-width:0px;
  14220. position:absolute;
  14221. left:-5px;
  14222. top:146px;
  14223. width:79px;
  14224. height:10px;
  14225. }
  14226. #u1273_seg2 {
  14227. border-width:0px;
  14228. position:absolute;
  14229. left:-9px;
  14230. top:-6px;
  14231. width:18px;
  14232. height:18px;
  14233. }
  14234. #u1273_seg3 {
  14235. border-width:0px;
  14236. position:absolute;
  14237. left:57px;
  14238. top:135px;
  14239. width:32px;
  14240. height:32px;
  14241. }
  14242. #u1273_text {
  14243. border-width:0px;
  14244. position:absolute;
  14245. left:-50px;
  14246. top:104px;
  14247. width:100px;
  14248. word-wrap:break-word;
  14249. text-transform:none;
  14250. visibility:hidden;
  14251. }
  14252. #u1274 {
  14253. border-width:0px;
  14254. position:absolute;
  14255. left:0px;
  14256. top:0px;
  14257. width:0px;
  14258. height:0px;
  14259. }
  14260. #u1275_div {
  14261. border-width:0px;
  14262. position:absolute;
  14263. left:0px;
  14264. top:0px;
  14265. width:240px;
  14266. height:80px;
  14267. background:inherit;
  14268. background-color:rgba(242, 242, 242, 1);
  14269. border:none;
  14270. border-radius:0px;
  14271. -moz-box-shadow:none;
  14272. -webkit-box-shadow:none;
  14273. box-shadow:none;
  14274. }
  14275. #u1275 {
  14276. border-width:0px;
  14277. position:absolute;
  14278. left:964px;
  14279. top:1132px;
  14280. width:240px;
  14281. height:80px;
  14282. display:flex;
  14283. }
  14284. #u1275 .text {
  14285. position:absolute;
  14286. align-self:center;
  14287. padding:2px 2px 2px 2px;
  14288. box-sizing:border-box;
  14289. width:100%;
  14290. }
  14291. #u1275_text {
  14292. border-width:0px;
  14293. word-wrap:break-word;
  14294. text-transform:none;
  14295. visibility:hidden;
  14296. }
  14297. #u1276_img {
  14298. border-width:0px;
  14299. position:absolute;
  14300. left:0px;
  14301. top:0px;
  14302. width:50px;
  14303. height:53px;
  14304. }
  14305. #u1276 {
  14306. border-width:0px;
  14307. position:absolute;
  14308. left:980px;
  14309. top:1145px;
  14310. width:50px;
  14311. height:53px;
  14312. display:flex;
  14313. }
  14314. #u1276 .text {
  14315. position:absolute;
  14316. align-self:center;
  14317. padding:2px 2px 2px 2px;
  14318. box-sizing:border-box;
  14319. width:100%;
  14320. }
  14321. #u1276_text {
  14322. border-width:0px;
  14323. word-wrap:break-word;
  14324. text-transform:none;
  14325. visibility:hidden;
  14326. }
  14327. #u1277 {
  14328. border-width:0px;
  14329. position:absolute;
  14330. left:0px;
  14331. top:0px;
  14332. width:0px;
  14333. height:0px;
  14334. }
  14335. #u1278_div {
  14336. border-width:0px;
  14337. position:absolute;
  14338. left:0px;
  14339. top:0px;
  14340. width:73px;
  14341. height:25px;
  14342. background:inherit;
  14343. background-color:rgba(255, 255, 255, 0);
  14344. border:none;
  14345. border-left:0px;
  14346. border-top:0px;
  14347. border-right:0px;
  14348. border-radius:0px;
  14349. border-bottom-right-radius:0px;
  14350. border-bottom-left-radius:0px;
  14351. -moz-box-shadow:none;
  14352. -webkit-box-shadow:none;
  14353. box-shadow:none;
  14354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14355. font-weight:400;
  14356. font-style:normal;
  14357. font-size:18px;
  14358. }
  14359. #u1278 {
  14360. border-width:0px;
  14361. position:absolute;
  14362. left:1045px;
  14363. top:1148px;
  14364. width:73px;
  14365. height:25px;
  14366. display:flex;
  14367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14368. font-weight:400;
  14369. font-style:normal;
  14370. font-size:18px;
  14371. }
  14372. #u1278 .text {
  14373. position:absolute;
  14374. align-self:center;
  14375. padding:0px 0px 0px 0px;
  14376. box-sizing:border-box;
  14377. width:100%;
  14378. }
  14379. #u1278_text {
  14380. border-width:0px;
  14381. white-space:nowrap;
  14382. text-transform:none;
  14383. }
  14384. #u1279_div {
  14385. border-width:0px;
  14386. position:absolute;
  14387. left:0px;
  14388. top:0px;
  14389. width:181px;
  14390. height:17px;
  14391. background:inherit;
  14392. background-color:rgba(255, 255, 255, 0);
  14393. border:none;
  14394. border-left:0px;
  14395. border-top:0px;
  14396. border-right:0px;
  14397. border-radius:0px;
  14398. border-bottom-right-radius:0px;
  14399. border-bottom-left-radius:0px;
  14400. -moz-box-shadow:none;
  14401. -webkit-box-shadow:none;
  14402. box-shadow:none;
  14403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14404. font-weight:400;
  14405. font-style:normal;
  14406. font-size:12px;
  14407. color:#7F7F7F;
  14408. }
  14409. #u1279 {
  14410. border-width:0px;
  14411. position:absolute;
  14412. left:1045px;
  14413. top:1178px;
  14414. width:181px;
  14415. height:17px;
  14416. display:flex;
  14417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14418. font-weight:400;
  14419. font-style:normal;
  14420. font-size:12px;
  14421. color:#7F7F7F;
  14422. }
  14423. #u1279 .text {
  14424. position:absolute;
  14425. align-self:center;
  14426. padding:0px 0px 0px 0px;
  14427. box-sizing:border-box;
  14428. width:100%;
  14429. }
  14430. #u1279_text {
  14431. border-width:0px;
  14432. white-space:nowrap;
  14433. text-transform:none;
  14434. }