styles.css 178 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096
  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. #u6660 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u6661_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u6661 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u6661 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u6661_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u6662_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u6662 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u6662 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u6662_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u6663_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u6663 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u6663 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u6663_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u6664 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u6665 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u6665 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u6665_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u6665_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u6666_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u6666 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u6666 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u6666_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u6667_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u6667 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u6667 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u6667_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u6668 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u6669_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u6669 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u6669 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u6669_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u6670 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u6670 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u6670_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u6670_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u6671 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u6672_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u6672 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u6672 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u6672_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u6673 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u6673 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u6673_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u6673_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u6674 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u6675_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u6675 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u6675 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u6675_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u6676 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u6676 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u6676_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u6676_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u6677 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u6678_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u6678 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u6678 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u6678_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u6679 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u6679 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u6679_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u6679_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u6680 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u6681_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u6681 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u6681 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u6681_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u6682 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u6682 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u6682_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u6682_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u6683 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u6684_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u6684 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u6684 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u6684_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u6685 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u6685 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u6685_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u6685_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u6686 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u6687_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u6687 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u6687 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u6687_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u6688 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u6688 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u6688_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u6688_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u6689 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u6690_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  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. #u6690 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u6690 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u6690_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u6691 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u6691 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u6691_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u6691_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u6692 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u6693_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u6693 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u6693 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u6693_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u6694 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u6694 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u6694_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u6694_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u6695 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u6696_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u6696 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u6696 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u6696_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u6697 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u6697 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u6697_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u6697_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u6698 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u6699_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u6699 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u6699 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u6699_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u6700 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u6700 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u6700_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u6700_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u6701 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u6702_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u6702_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u6702_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u6702 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u6702 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u6702_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u6702.disabled {
  1294. }
  1295. .u6702_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u6703 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u6703 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u6703_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u6703_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u6704_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u6704 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u6704 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u6704_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u6705 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u6705 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u6705_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u6705_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u6706 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u6707_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u6707 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u6707 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u6707_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u6708 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u6708 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u6708_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u6708_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u6709 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u6709 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u6709_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u6709_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u6710 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u6710 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u6710_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u6710_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u6711 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u6711 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u6711_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u6711_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u6712 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u6713_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u6713 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u6713 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u6713_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u6714 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u6714 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u6714_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u6714_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u6715_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1479px;
  1673. height:1189px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1678. transition:none;
  1679. }
  1680. #u6715 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:121px;
  1684. top:51px;
  1685. width:1479px;
  1686. height:1189px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u6715 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u6715_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u6716_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:73px;
  1710. height:25px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border-radius:0px;
  1714. filter:drop-shadow(none);
  1715. transition:none;
  1716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1717. font-weight:500;
  1718. font-style:normal;
  1719. font-size:18px;
  1720. }
  1721. #u6716 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:153px;
  1725. top:71px;
  1726. width:73px;
  1727. height:25px;
  1728. display:flex;
  1729. transition:none;
  1730. transform-origin:50% 50%;
  1731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1732. font-weight:500;
  1733. font-style:normal;
  1734. font-size:18px;
  1735. }
  1736. #u6716 .text {
  1737. position:absolute;
  1738. align-self:flex-start;
  1739. padding:0px 0px 0px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u6716_text {
  1744. border-width:0px;
  1745. white-space:nowrap;
  1746. text-transform:none;
  1747. }
  1748. #u6717_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:519px;
  1754. height:20px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 0);
  1757. border-radius:0px;
  1758. filter:drop-shadow(none);
  1759. transition:none;
  1760. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1761. font-weight:500;
  1762. font-style:normal;
  1763. }
  1764. #u6717 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:153px;
  1768. top:216px;
  1769. width:519px;
  1770. height:20px;
  1771. display:flex;
  1772. transition:none;
  1773. transform-origin:50% 50%;
  1774. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1775. font-weight:500;
  1776. font-style:normal;
  1777. }
  1778. #u6717 .text {
  1779. position:absolute;
  1780. align-self:flex-start;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u6717_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u6718 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:0px;
  1796. height:0px;
  1797. }
  1798. #u6719_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:240px;
  1804. height:80px;
  1805. background:inherit;
  1806. background-color:rgba(242, 242, 242, 1);
  1807. border-radius:0px;
  1808. filter:drop-shadow(none);
  1809. transition:none;
  1810. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1811. font-weight:700;
  1812. font-style:normal;
  1813. }
  1814. #u6719 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:153px;
  1818. top:256px;
  1819. width:240px;
  1820. height:80px;
  1821. display:flex;
  1822. transition:none;
  1823. transform-origin:50% 50%;
  1824. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1825. font-weight:700;
  1826. font-style:normal;
  1827. }
  1828. #u6719 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 2px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u6719_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. visibility:hidden;
  1840. }
  1841. #u6720 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:169px;
  1845. top:269px;
  1846. width:50px;
  1847. height:53px;
  1848. display:flex;
  1849. transition:none;
  1850. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1851. font-weight:700;
  1852. font-style:normal;
  1853. }
  1854. #u6720 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u6720_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:50px;
  1867. height:53px;
  1868. }
  1869. #u6720_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. visibility:hidden;
  1874. }
  1875. #u6721 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:0px;
  1881. height:0px;
  1882. }
  1883. #u6722_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:73px;
  1889. height:25px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 0);
  1892. border-left:0px;
  1893. border-top:0px;
  1894. border-right:0px;
  1895. border-radius:0px;
  1896. border-bottom-right-radius:0px;
  1897. border-bottom-left-radius:0px;
  1898. filter:drop-shadow(none);
  1899. transition:none;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:18px;
  1904. }
  1905. #u6722 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:234px;
  1909. top:272px;
  1910. width:73px;
  1911. height:25px;
  1912. display:flex;
  1913. transition:none;
  1914. transform-origin:50% 50%;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:18px;
  1919. }
  1920. #u6722 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:0px 0px 0px 0px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u6722_text {
  1928. border-width:0px;
  1929. white-space:nowrap;
  1930. text-transform:none;
  1931. }
  1932. #u6723_div {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:181px;
  1938. height:17px;
  1939. background:inherit;
  1940. background-color:rgba(255, 255, 255, 0);
  1941. border-left:0px;
  1942. border-top:0px;
  1943. border-right:0px;
  1944. border-radius:0px;
  1945. border-bottom-right-radius:0px;
  1946. border-bottom-left-radius:0px;
  1947. filter:drop-shadow(none);
  1948. transition:none;
  1949. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1950. font-weight:650;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. color:#7F7F7F;
  1954. }
  1955. #u6723 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:234px;
  1959. top:302px;
  1960. width:181px;
  1961. height:17px;
  1962. display:flex;
  1963. transition:none;
  1964. transform-origin:50% 50%;
  1965. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1966. font-weight:650;
  1967. font-style:normal;
  1968. font-size:12px;
  1969. color:#7F7F7F;
  1970. }
  1971. #u6723 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u6723_text {
  1979. border-width:0px;
  1980. white-space:nowrap;
  1981. text-transform:none;
  1982. }
  1983. #u6724 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:377px;
  1987. top:261px;
  1988. width:11px;
  1989. height:11px;
  1990. display:flex;
  1991. transition:none;
  1992. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1993. font-weight:700;
  1994. font-style:normal;
  1995. }
  1996. #u6724 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 2px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u6724_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:11px;
  2009. height:11px;
  2010. }
  2011. #u6724_text {
  2012. border-width:0px;
  2013. word-wrap:break-word;
  2014. text-transform:none;
  2015. visibility:hidden;
  2016. }
  2017. #u6725 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:0px;
  2023. height:0px;
  2024. }
  2025. #u6726_div {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:240px;
  2031. height:80px;
  2032. background:inherit;
  2033. background-color:rgba(242, 242, 242, 1);
  2034. border-radius:0px;
  2035. filter:drop-shadow(none);
  2036. transition:none;
  2037. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2038. font-weight:700;
  2039. font-style:normal;
  2040. }
  2041. #u6726 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:423px;
  2045. top:256px;
  2046. width:240px;
  2047. height:80px;
  2048. display:flex;
  2049. transition:none;
  2050. transform-origin:50% 50%;
  2051. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2052. font-weight:700;
  2053. font-style:normal;
  2054. }
  2055. #u6726 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u6726_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u6727 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:439px;
  2072. top:269px;
  2073. width:50px;
  2074. height:53px;
  2075. display:flex;
  2076. transition:none;
  2077. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2078. font-weight:700;
  2079. font-style:normal;
  2080. }
  2081. #u6727 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u6727_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:50px;
  2094. height:53px;
  2095. }
  2096. #u6727_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u6728 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:0px;
  2108. height:0px;
  2109. }
  2110. #u6729_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:73px;
  2116. height:25px;
  2117. background:inherit;
  2118. background-color:rgba(255, 255, 255, 0);
  2119. border-left:0px;
  2120. border-top:0px;
  2121. border-right:0px;
  2122. border-radius:0px;
  2123. border-bottom-right-radius:0px;
  2124. border-bottom-left-radius:0px;
  2125. filter:drop-shadow(none);
  2126. transition:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:18px;
  2131. }
  2132. #u6729 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:504px;
  2136. top:272px;
  2137. width:73px;
  2138. height:25px;
  2139. display:flex;
  2140. transition:none;
  2141. transform-origin:50% 50%;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:18px;
  2146. }
  2147. #u6729 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:0px 0px 0px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u6729_text {
  2155. border-width:0px;
  2156. white-space:nowrap;
  2157. text-transform:none;
  2158. }
  2159. #u6730_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:193px;
  2165. height:17px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border-left:0px;
  2169. border-top:0px;
  2170. border-right:0px;
  2171. border-radius:0px;
  2172. border-bottom-right-radius:0px;
  2173. border-bottom-left-radius:0px;
  2174. filter:drop-shadow(none);
  2175. transition:none;
  2176. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2177. font-weight:650;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#7F7F7F;
  2181. }
  2182. #u6730 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:504px;
  2186. top:302px;
  2187. width:193px;
  2188. height:17px;
  2189. display:flex;
  2190. transition:none;
  2191. transform-origin:50% 50%;
  2192. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2193. font-weight:650;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#7F7F7F;
  2197. }
  2198. #u6730 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:0px 0px 0px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u6730_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u6731 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:647px;
  2214. top:261px;
  2215. width:11px;
  2216. height:11px;
  2217. display:flex;
  2218. transition:none;
  2219. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2220. font-weight:700;
  2221. font-style:normal;
  2222. }
  2223. #u6731 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 2px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u6731_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:11px;
  2236. height:11px;
  2237. }
  2238. #u6731_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u6732_div {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:238px;
  2250. height:33px;
  2251. background:inherit;
  2252. background-color:rgba(51, 51, 51, 0.8);
  2253. border-radius:26px;
  2254. filter:drop-shadow(none);
  2255. transition:none;
  2256. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2257. font-weight:650;
  2258. font-style:normal;
  2259. font-size:18px;
  2260. color:#FFFFFF;
  2261. text-align:center;
  2262. }
  2263. #u6732 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:601px;
  2267. top:223px;
  2268. width:238px;
  2269. height:33px;
  2270. display:flex;
  2271. transition:none;
  2272. transform-origin:50% 50%;
  2273. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2274. font-weight:650;
  2275. font-style:normal;
  2276. font-size:18px;
  2277. color:#FFFFFF;
  2278. text-align:center;
  2279. }
  2280. #u6732 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:0px 0px 0px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u6732_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. }
  2292. #u6733_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:964px;
  2298. height:95px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 1);
  2301. border-radius:0px;
  2302. filter:drop-shadow(none);
  2303. transition:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:18px;
  2308. color:#D9001B;
  2309. }
  2310. #u6733 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:250px;
  2314. top:1132px;
  2315. width:964px;
  2316. height:95px;
  2317. display:flex;
  2318. transition:none;
  2319. transform-origin:50% 50%;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:18px;
  2324. color:#D9001B;
  2325. }
  2326. #u6733 .text {
  2327. position:absolute;
  2328. align-self:flex-start;
  2329. padding:10px 10px 10px 10px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u6733_text {
  2334. border-width:0px;
  2335. white-space:nowrap;
  2336. text-transform:none;
  2337. }
  2338. #u6734 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:153px;
  2342. top:116px;
  2343. width:1401px;
  2344. height:80px;
  2345. display:flex;
  2346. transition:none;
  2347. }
  2348. #u6734 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 2px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u6734_img {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:1401px;
  2361. height:80px;
  2362. }
  2363. #u6734_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u6735 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:0px;
  2375. height:0px;
  2376. }
  2377. #u6736_div {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:240px;
  2383. height:80px;
  2384. background:inherit;
  2385. background-color:rgba(242, 242, 242, 1);
  2386. border-radius:0px;
  2387. filter:drop-shadow(none);
  2388. transition:none;
  2389. }
  2390. #u6736 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:157px;
  2394. top:1052px;
  2395. width:240px;
  2396. height:80px;
  2397. display:flex;
  2398. transition:none;
  2399. transform-origin:50% 50%;
  2400. }
  2401. #u6736 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u6736_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u6737 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:173px;
  2418. top:1065px;
  2419. width:50px;
  2420. height:53px;
  2421. display:flex;
  2422. transition:none;
  2423. }
  2424. #u6737 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 2px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u6737_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:50px;
  2437. height:53px;
  2438. }
  2439. #u6737_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u6738 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:0px;
  2451. height:0px;
  2452. }
  2453. #u6739_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:73px;
  2459. height:25px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0);
  2462. border-left:0px;
  2463. border-top:0px;
  2464. border-right:0px;
  2465. border-radius:0px;
  2466. border-bottom-right-radius:0px;
  2467. border-bottom-left-radius:0px;
  2468. filter:drop-shadow(none);
  2469. transition:none;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:18px;
  2474. }
  2475. #u6739 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:238px;
  2479. top:1068px;
  2480. width:73px;
  2481. height:25px;
  2482. display:flex;
  2483. transition:none;
  2484. transform-origin:50% 50%;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:18px;
  2489. }
  2490. #u6739 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u6739_text {
  2498. border-width:0px;
  2499. white-space:nowrap;
  2500. text-transform:none;
  2501. }
  2502. #u6740_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:169px;
  2508. height:17px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border-left:0px;
  2512. border-top:0px;
  2513. border-right:0px;
  2514. border-radius:0px;
  2515. border-bottom-right-radius:0px;
  2516. border-bottom-left-radius:0px;
  2517. filter:drop-shadow(none);
  2518. transition:none;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. color:#7F7F7F;
  2524. }
  2525. #u6740 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:238px;
  2529. top:1098px;
  2530. width:169px;
  2531. height:17px;
  2532. display:flex;
  2533. transition:none;
  2534. transform-origin:50% 50%;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. color:#7F7F7F;
  2540. }
  2541. #u6740 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:0px 0px 0px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u6740_text {
  2549. border-width:0px;
  2550. white-space:nowrap;
  2551. text-transform:none;
  2552. }
  2553. #u6741 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:0px;
  2559. height:0px;
  2560. }
  2561. #u6742_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:240px;
  2567. height:80px;
  2568. background:inherit;
  2569. background-color:rgba(242, 242, 242, 1);
  2570. border-radius:0px;
  2571. filter:drop-shadow(none);
  2572. transition:none;
  2573. }
  2574. #u6742 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:694px;
  2578. top:256px;
  2579. width:240px;
  2580. height:80px;
  2581. display:flex;
  2582. transition:none;
  2583. transform-origin:50% 50%;
  2584. }
  2585. #u6742 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u6742_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u6743 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:710px;
  2602. top:269px;
  2603. width:50px;
  2604. height:53px;
  2605. display:flex;
  2606. transition:none;
  2607. }
  2608. #u6743 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u6743_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:50px;
  2621. height:53px;
  2622. }
  2623. #u6743_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u6744 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:0px;
  2635. height:0px;
  2636. }
  2637. #u6745_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:73px;
  2643. height:25px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 0);
  2646. border-left:0px;
  2647. border-top:0px;
  2648. border-right:0px;
  2649. border-radius:0px;
  2650. border-bottom-right-radius:0px;
  2651. border-bottom-left-radius:0px;
  2652. filter:drop-shadow(none);
  2653. transition:none;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:18px;
  2658. }
  2659. #u6745 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:775px;
  2663. top:272px;
  2664. width:73px;
  2665. height:25px;
  2666. display:flex;
  2667. transition:none;
  2668. transform-origin:50% 50%;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:18px;
  2673. }
  2674. #u6745 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:0px 0px 0px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u6745_text {
  2682. border-width:0px;
  2683. white-space:nowrap;
  2684. text-transform:none;
  2685. }
  2686. #u6746_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:121px;
  2692. height:17px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 0);
  2695. border-left:0px;
  2696. border-top:0px;
  2697. border-right:0px;
  2698. border-radius:0px;
  2699. border-bottom-right-radius:0px;
  2700. border-bottom-left-radius:0px;
  2701. filter:drop-shadow(none);
  2702. transition:none;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. color:#7F7F7F;
  2708. }
  2709. #u6746 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:775px;
  2713. top:302px;
  2714. width:121px;
  2715. height:17px;
  2716. display:flex;
  2717. transition:none;
  2718. transform-origin:50% 50%;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:12px;
  2723. color:#7F7F7F;
  2724. }
  2725. #u6746 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:0px 0px 0px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u6746_text {
  2733. border-width:0px;
  2734. white-space:nowrap;
  2735. text-transform:none;
  2736. }
  2737. #u6747 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:0px;
  2743. height:0px;
  2744. }
  2745. #u6748_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:240px;
  2751. height:80px;
  2752. background:inherit;
  2753. background-color:rgba(242, 242, 242, 1);
  2754. border-radius:0px;
  2755. filter:drop-shadow(none);
  2756. transition:none;
  2757. }
  2758. #u6748 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:964px;
  2762. top:256px;
  2763. width:240px;
  2764. height:80px;
  2765. display:flex;
  2766. transition:none;
  2767. transform-origin:50% 50%;
  2768. }
  2769. #u6748 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u6748_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u6749 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:980px;
  2786. top:269px;
  2787. width:50px;
  2788. height:53px;
  2789. display:flex;
  2790. transition:none;
  2791. }
  2792. #u6749 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u6749_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:50px;
  2805. height:53px;
  2806. }
  2807. #u6749_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u6750 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:0px;
  2819. height:0px;
  2820. }
  2821. #u6751_div {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:73px;
  2827. height:25px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 0);
  2830. border-left:0px;
  2831. border-top:0px;
  2832. border-right:0px;
  2833. border-radius:0px;
  2834. border-bottom-right-radius:0px;
  2835. border-bottom-left-radius:0px;
  2836. filter:drop-shadow(none);
  2837. transition:none;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:18px;
  2842. }
  2843. #u6751 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:1045px;
  2847. top:272px;
  2848. width:73px;
  2849. height:25px;
  2850. display:flex;
  2851. transition:none;
  2852. transform-origin:50% 50%;
  2853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:18px;
  2857. }
  2858. #u6751 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:0px 0px 0px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u6751_text {
  2866. border-width:0px;
  2867. white-space:nowrap;
  2868. text-transform:none;
  2869. }
  2870. #u6752_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:181px;
  2876. height:17px;
  2877. background:inherit;
  2878. background-color:rgba(255, 255, 255, 0);
  2879. border-left:0px;
  2880. border-top:0px;
  2881. border-right:0px;
  2882. border-radius:0px;
  2883. border-bottom-right-radius:0px;
  2884. border-bottom-left-radius:0px;
  2885. filter:drop-shadow(none);
  2886. transition:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:12px;
  2891. color:#7F7F7F;
  2892. }
  2893. #u6752 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:1045px;
  2897. top:302px;
  2898. width:181px;
  2899. height:17px;
  2900. display:flex;
  2901. transition:none;
  2902. transform-origin:50% 50%;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:12px;
  2907. color:#7F7F7F;
  2908. }
  2909. #u6752 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:0px 0px 0px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u6752_text {
  2917. border-width:0px;
  2918. white-space:nowrap;
  2919. text-transform:none;
  2920. }
  2921. #u6753 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:0px;
  2927. height:0px;
  2928. }
  2929. #u6754_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:240px;
  2935. height:80px;
  2936. background:inherit;
  2937. background-color:rgba(242, 242, 242, 1);
  2938. border-radius:0px;
  2939. filter:drop-shadow(none);
  2940. transition:none;
  2941. }
  2942. #u6754 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:1234px;
  2946. top:256px;
  2947. width:240px;
  2948. height:80px;
  2949. display:flex;
  2950. transition:none;
  2951. transform-origin:50% 50%;
  2952. }
  2953. #u6754 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u6754_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u6755 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:1250px;
  2970. top:269px;
  2971. width:50px;
  2972. height:53px;
  2973. display:flex;
  2974. transition:none;
  2975. }
  2976. #u6755 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u6755_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:50px;
  2989. height:53px;
  2990. }
  2991. #u6755_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u6756 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:0px;
  3003. height:0px;
  3004. }
  3005. #u6757_div {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:73px;
  3011. height:25px;
  3012. background:inherit;
  3013. background-color:rgba(255, 255, 255, 0);
  3014. border-left:0px;
  3015. border-top:0px;
  3016. border-right:0px;
  3017. border-radius:0px;
  3018. border-bottom-right-radius:0px;
  3019. border-bottom-left-radius:0px;
  3020. filter:drop-shadow(none);
  3021. transition:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:18px;
  3026. }
  3027. #u6757 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:1315px;
  3031. top:272px;
  3032. width:73px;
  3033. height:25px;
  3034. display:flex;
  3035. transition:none;
  3036. transform-origin:50% 50%;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:18px;
  3041. }
  3042. #u6757 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:0px 0px 0px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u6757_text {
  3050. border-width:0px;
  3051. white-space:nowrap;
  3052. text-transform:none;
  3053. }
  3054. #u6758_div {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:205px;
  3060. height:17px;
  3061. background:inherit;
  3062. background-color:rgba(255, 255, 255, 0);
  3063. border-left:0px;
  3064. border-top:0px;
  3065. border-right:0px;
  3066. border-radius:0px;
  3067. border-bottom-right-radius:0px;
  3068. border-bottom-left-radius:0px;
  3069. filter:drop-shadow(none);
  3070. transition:none;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:12px;
  3075. color:#7F7F7F;
  3076. }
  3077. #u6758 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:1315px;
  3081. top:302px;
  3082. width:205px;
  3083. height:17px;
  3084. display:flex;
  3085. transition:none;
  3086. transform-origin:50% 50%;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:12px;
  3091. color:#7F7F7F;
  3092. }
  3093. #u6758 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:0px 0px 0px 0px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u6758_text {
  3101. border-width:0px;
  3102. white-space:nowrap;
  3103. text-transform:none;
  3104. }
  3105. #u6759 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:0px;
  3111. height:0px;
  3112. }
  3113. #u6760_div {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:240px;
  3119. height:80px;
  3120. background:inherit;
  3121. background-color:rgba(242, 242, 242, 1);
  3122. border-radius:0px;
  3123. filter:drop-shadow(none);
  3124. transition:none;
  3125. }
  3126. #u6760 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:964px;
  3130. top:356px;
  3131. width:240px;
  3132. height:80px;
  3133. display:flex;
  3134. transition:none;
  3135. transform-origin:50% 50%;
  3136. }
  3137. #u6760 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 2px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u6760_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. visibility:hidden;
  3149. }
  3150. #u6761 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:980px;
  3154. top:369px;
  3155. width:50px;
  3156. height:53px;
  3157. display:flex;
  3158. transition:none;
  3159. }
  3160. #u6761 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 2px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u6761_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:50px;
  3173. height:53px;
  3174. }
  3175. #u6761_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. visibility:hidden;
  3180. }
  3181. #u6762 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:0px;
  3187. height:0px;
  3188. }
  3189. #u6763_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:73px;
  3195. height:25px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 0);
  3198. border-left:0px;
  3199. border-top:0px;
  3200. border-right:0px;
  3201. border-radius:0px;
  3202. border-bottom-right-radius:0px;
  3203. border-bottom-left-radius:0px;
  3204. filter:drop-shadow(none);
  3205. transition:none;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:18px;
  3210. }
  3211. #u6763 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:1045px;
  3215. top:372px;
  3216. width:73px;
  3217. height:25px;
  3218. display:flex;
  3219. transition:none;
  3220. transform-origin:50% 50%;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:18px;
  3225. }
  3226. #u6763 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:0px 0px 0px 0px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u6763_text {
  3234. border-width:0px;
  3235. white-space:nowrap;
  3236. text-transform:none;
  3237. }
  3238. #u6764_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:169px;
  3244. height:17px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border-left:0px;
  3248. border-top:0px;
  3249. border-right:0px;
  3250. border-radius:0px;
  3251. border-bottom-right-radius:0px;
  3252. border-bottom-left-radius:0px;
  3253. filter:drop-shadow(none);
  3254. transition:none;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#7F7F7F;
  3260. }
  3261. #u6764 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:1045px;
  3265. top:402px;
  3266. width:169px;
  3267. height:17px;
  3268. display:flex;
  3269. transition:none;
  3270. transform-origin:50% 50%;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#7F7F7F;
  3276. }
  3277. #u6764 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:0px 0px 0px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u6764_text {
  3285. border-width:0px;
  3286. white-space:nowrap;
  3287. text-transform:none;
  3288. }
  3289. #u6765 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:0px;
  3295. height:0px;
  3296. }
  3297. #u6766_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:240px;
  3303. height:80px;
  3304. background:inherit;
  3305. background-color:rgba(242, 242, 242, 1);
  3306. border-radius:0px;
  3307. filter:drop-shadow(none);
  3308. transition:none;
  3309. }
  3310. #u6766 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:423px;
  3314. top:356px;
  3315. width:240px;
  3316. height:80px;
  3317. display:flex;
  3318. transition:none;
  3319. transform-origin:50% 50%;
  3320. }
  3321. #u6766 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u6766_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u6767 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:439px;
  3338. top:369px;
  3339. width:50px;
  3340. height:53px;
  3341. display:flex;
  3342. transition:none;
  3343. }
  3344. #u6767 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u6767_img {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:50px;
  3357. height:53px;
  3358. }
  3359. #u6767_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u6768 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:0px;
  3371. height:0px;
  3372. }
  3373. #u6769_div {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:73px;
  3379. height:25px;
  3380. background:inherit;
  3381. background-color:rgba(255, 255, 255, 0);
  3382. border-left:0px;
  3383. border-top:0px;
  3384. border-right:0px;
  3385. border-radius:0px;
  3386. border-bottom-right-radius:0px;
  3387. border-bottom-left-radius:0px;
  3388. filter:drop-shadow(none);
  3389. transition:none;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:18px;
  3394. }
  3395. #u6769 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:504px;
  3399. top:372px;
  3400. width:73px;
  3401. height:25px;
  3402. display:flex;
  3403. transition:none;
  3404. transform-origin:50% 50%;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:18px;
  3409. }
  3410. #u6769 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:0px 0px 0px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u6769_text {
  3418. border-width:0px;
  3419. white-space:nowrap;
  3420. text-transform:none;
  3421. }
  3422. #u6770_div {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:181px;
  3428. height:17px;
  3429. background:inherit;
  3430. background-color:rgba(255, 255, 255, 0);
  3431. border-left:0px;
  3432. border-top:0px;
  3433. border-right:0px;
  3434. border-radius:0px;
  3435. border-bottom-right-radius:0px;
  3436. border-bottom-left-radius:0px;
  3437. filter:drop-shadow(none);
  3438. transition:none;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#7F7F7F;
  3444. }
  3445. #u6770 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:504px;
  3449. top:402px;
  3450. width:181px;
  3451. height:17px;
  3452. display:flex;
  3453. transition:none;
  3454. transform-origin:50% 50%;
  3455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:12px;
  3459. color:#7F7F7F;
  3460. }
  3461. #u6770 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:0px 0px 0px 0px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u6770_text {
  3469. border-width:0px;
  3470. white-space:nowrap;
  3471. text-transform:none;
  3472. }
  3473. #u6771 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:0px;
  3479. height:0px;
  3480. }
  3481. #u6772_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:240px;
  3487. height:80px;
  3488. background:inherit;
  3489. background-color:rgba(242, 242, 242, 1);
  3490. border-radius:0px;
  3491. filter:drop-shadow(none);
  3492. transition:none;
  3493. }
  3494. #u6772 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:694px;
  3498. top:356px;
  3499. width:240px;
  3500. height:80px;
  3501. display:flex;
  3502. transition:none;
  3503. transform-origin:50% 50%;
  3504. }
  3505. #u6772 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u6772_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u6773 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:710px;
  3522. top:369px;
  3523. width:50px;
  3524. height:53px;
  3525. display:flex;
  3526. transition:none;
  3527. }
  3528. #u6773 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 2px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u6773_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:50px;
  3541. height:53px;
  3542. }
  3543. #u6773_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u6774 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:0px;
  3555. height:0px;
  3556. }
  3557. #u6775_div {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:73px;
  3563. height:25px;
  3564. background:inherit;
  3565. background-color:rgba(255, 255, 255, 0);
  3566. border-left:0px;
  3567. border-top:0px;
  3568. border-right:0px;
  3569. border-radius:0px;
  3570. border-bottom-right-radius:0px;
  3571. border-bottom-left-radius:0px;
  3572. filter:drop-shadow(none);
  3573. transition:none;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:18px;
  3578. }
  3579. #u6775 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:775px;
  3583. top:372px;
  3584. width:73px;
  3585. height:25px;
  3586. display:flex;
  3587. transition:none;
  3588. transform-origin:50% 50%;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:18px;
  3593. }
  3594. #u6775 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:0px 0px 0px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u6775_text {
  3602. border-width:0px;
  3603. white-space:nowrap;
  3604. text-transform:none;
  3605. }
  3606. #u6776_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:145px;
  3612. height:17px;
  3613. background:inherit;
  3614. background-color:rgba(255, 255, 255, 0);
  3615. border-left:0px;
  3616. border-top:0px;
  3617. border-right:0px;
  3618. border-radius:0px;
  3619. border-bottom-right-radius:0px;
  3620. border-bottom-left-radius:0px;
  3621. filter:drop-shadow(none);
  3622. transition:none;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. color:#7F7F7F;
  3628. }
  3629. #u6776 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:775px;
  3633. top:402px;
  3634. width:145px;
  3635. height:17px;
  3636. display:flex;
  3637. transition:none;
  3638. transform-origin:50% 50%;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#7F7F7F;
  3644. }
  3645. #u6776 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:0px 0px 0px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u6776_text {
  3653. border-width:0px;
  3654. white-space:nowrap;
  3655. text-transform:none;
  3656. }
  3657. #u6777 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:0px;
  3663. height:0px;
  3664. }
  3665. #u6778_div {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:240px;
  3671. height:80px;
  3672. background:inherit;
  3673. background-color:rgba(242, 242, 242, 1);
  3674. border-radius:0px;
  3675. filter:drop-shadow(none);
  3676. transition:none;
  3677. }
  3678. #u6778 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:694px;
  3682. top:556px;
  3683. width:240px;
  3684. height:80px;
  3685. display:flex;
  3686. transition:none;
  3687. transform-origin:50% 50%;
  3688. }
  3689. #u6778 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 2px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u6778_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u6779 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:710px;
  3706. top:569px;
  3707. width:50px;
  3708. height:53px;
  3709. display:flex;
  3710. transition:none;
  3711. }
  3712. #u6779 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u6779_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:50px;
  3725. height:53px;
  3726. }
  3727. #u6779_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u6780 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:0px;
  3739. height:0px;
  3740. }
  3741. #u6781_div {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:73px;
  3747. height:25px;
  3748. background:inherit;
  3749. background-color:rgba(255, 255, 255, 0);
  3750. border-left:0px;
  3751. border-top:0px;
  3752. border-right:0px;
  3753. border-radius:0px;
  3754. border-bottom-right-radius:0px;
  3755. border-bottom-left-radius:0px;
  3756. filter:drop-shadow(none);
  3757. transition:none;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:18px;
  3762. }
  3763. #u6781 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:775px;
  3767. top:572px;
  3768. width:73px;
  3769. height:25px;
  3770. display:flex;
  3771. transition:none;
  3772. transform-origin:50% 50%;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:18px;
  3777. }
  3778. #u6781 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:0px 0px 0px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u6781_text {
  3786. border-width:0px;
  3787. white-space:nowrap;
  3788. text-transform:none;
  3789. }
  3790. #u6782_div {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:169px;
  3796. height:17px;
  3797. background:inherit;
  3798. background-color:rgba(255, 255, 255, 0);
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. filter:drop-shadow(none);
  3806. transition:none;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:12px;
  3811. color:#7F7F7F;
  3812. }
  3813. #u6782 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:775px;
  3817. top:602px;
  3818. width:169px;
  3819. height:17px;
  3820. display:flex;
  3821. transition:none;
  3822. transform-origin:50% 50%;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#7F7F7F;
  3828. }
  3829. #u6782 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:0px 0px 0px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u6782_text {
  3837. border-width:0px;
  3838. white-space:nowrap;
  3839. text-transform:none;
  3840. }
  3841. #u6783 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:0px;
  3847. height:0px;
  3848. }
  3849. #u6784_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:240px;
  3855. height:80px;
  3856. background:inherit;
  3857. background-color:rgba(242, 242, 242, 1);
  3858. border-radius:0px;
  3859. filter:drop-shadow(none);
  3860. transition:none;
  3861. }
  3862. #u6784 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:1235px;
  3866. top:556px;
  3867. width:240px;
  3868. height:80px;
  3869. display:flex;
  3870. transition:none;
  3871. transform-origin:50% 50%;
  3872. }
  3873. #u6784 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u6784_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u6785 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:1251px;
  3890. top:569px;
  3891. width:50px;
  3892. height:53px;
  3893. display:flex;
  3894. transition:none;
  3895. }
  3896. #u6785 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u6785_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:50px;
  3909. height:53px;
  3910. }
  3911. #u6785_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u6786 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:0px;
  3923. height:0px;
  3924. }
  3925. #u6787_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:73px;
  3931. height:25px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 0);
  3934. border-left:0px;
  3935. border-top:0px;
  3936. border-right:0px;
  3937. border-radius:0px;
  3938. border-bottom-right-radius:0px;
  3939. border-bottom-left-radius:0px;
  3940. filter:drop-shadow(none);
  3941. transition:none;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:18px;
  3946. }
  3947. #u6787 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1316px;
  3951. top:572px;
  3952. width:73px;
  3953. height:25px;
  3954. display:flex;
  3955. transition:none;
  3956. transform-origin:50% 50%;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:18px;
  3961. }
  3962. #u6787 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:0px 0px 0px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u6787_text {
  3970. border-width:0px;
  3971. white-space:nowrap;
  3972. text-transform:none;
  3973. }
  3974. #u6788_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:157px;
  3980. height:17px;
  3981. background:inherit;
  3982. background-color:rgba(255, 255, 255, 0);
  3983. border-left:0px;
  3984. border-top:0px;
  3985. border-right:0px;
  3986. border-radius:0px;
  3987. border-bottom-right-radius:0px;
  3988. border-bottom-left-radius:0px;
  3989. filter:drop-shadow(none);
  3990. transition:none;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. color:#7F7F7F;
  3996. }
  3997. #u6788 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:1316px;
  4001. top:602px;
  4002. width:157px;
  4003. height:17px;
  4004. display:flex;
  4005. transition:none;
  4006. transform-origin:50% 50%;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. color:#7F7F7F;
  4012. }
  4013. #u6788 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:0px 0px 0px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u6788_text {
  4021. border-width:0px;
  4022. white-space:nowrap;
  4023. text-transform:none;
  4024. }
  4025. #u6789 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:0px;
  4031. height:0px;
  4032. }
  4033. #u6790_div {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:240px;
  4039. height:80px;
  4040. background:inherit;
  4041. background-color:rgba(242, 242, 242, 1);
  4042. border-radius:0px;
  4043. filter:drop-shadow(none);
  4044. transition:none;
  4045. }
  4046. #u6790 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:964px;
  4050. top:556px;
  4051. width:240px;
  4052. height:80px;
  4053. display:flex;
  4054. transition:none;
  4055. transform-origin:50% 50%;
  4056. }
  4057. #u6790 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u6790_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u6791 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:980px;
  4074. top:569px;
  4075. width:50px;
  4076. height:53px;
  4077. display:flex;
  4078. transition:none;
  4079. }
  4080. #u6791 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 2px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u6791_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:50px;
  4093. height:53px;
  4094. }
  4095. #u6791_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u6792 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:0px;
  4107. height:0px;
  4108. }
  4109. #u6793_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:73px;
  4115. height:25px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border-left:0px;
  4119. border-top:0px;
  4120. border-right:0px;
  4121. border-radius:0px;
  4122. border-bottom-right-radius:0px;
  4123. border-bottom-left-radius:0px;
  4124. filter:drop-shadow(none);
  4125. transition:none;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:18px;
  4130. }
  4131. #u6793 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1045px;
  4135. top:572px;
  4136. width:73px;
  4137. height:25px;
  4138. display:flex;
  4139. transition:none;
  4140. transform-origin:50% 50%;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:18px;
  4145. }
  4146. #u6793 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:0px 0px 0px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u6793_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u6794_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:85px;
  4164. height:17px;
  4165. background:inherit;
  4166. background-color:rgba(255, 255, 255, 0);
  4167. border-left:0px;
  4168. border-top:0px;
  4169. border-right:0px;
  4170. border-radius:0px;
  4171. border-bottom-right-radius:0px;
  4172. border-bottom-left-radius:0px;
  4173. filter:drop-shadow(none);
  4174. transition:none;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#7F7F7F;
  4180. }
  4181. #u6794 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:1045px;
  4185. top:602px;
  4186. width:85px;
  4187. height:17px;
  4188. display:flex;
  4189. transition:none;
  4190. transform-origin:50% 50%;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:12px;
  4195. color:#7F7F7F;
  4196. }
  4197. #u6794 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:0px 0px 0px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u6794_text {
  4205. border-width:0px;
  4206. white-space:nowrap;
  4207. text-transform:none;
  4208. }
  4209. #u6795 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u6796_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:240px;
  4223. height:80px;
  4224. background:inherit;
  4225. background-color:rgba(242, 242, 242, 1);
  4226. border-radius:0px;
  4227. filter:drop-shadow(none);
  4228. transition:none;
  4229. }
  4230. #u6796 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:153px;
  4234. top:356px;
  4235. width:240px;
  4236. height:80px;
  4237. display:flex;
  4238. transition:none;
  4239. transform-origin:50% 50%;
  4240. }
  4241. #u6796 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u6796_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u6797 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:169px;
  4258. top:369px;
  4259. width:50px;
  4260. height:53px;
  4261. display:flex;
  4262. transition:none;
  4263. }
  4264. #u6797 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:2px 2px 2px 2px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u6797_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:50px;
  4277. height:53px;
  4278. }
  4279. #u6797_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. visibility:hidden;
  4284. }
  4285. #u6798 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:0px;
  4291. height:0px;
  4292. }
  4293. #u6799_div {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:73px;
  4299. height:25px;
  4300. background:inherit;
  4301. background-color:rgba(255, 255, 255, 0);
  4302. border-left:0px;
  4303. border-top:0px;
  4304. border-right:0px;
  4305. border-radius:0px;
  4306. border-bottom-right-radius:0px;
  4307. border-bottom-left-radius:0px;
  4308. filter:drop-shadow(none);
  4309. transition:none;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:18px;
  4314. }
  4315. #u6799 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:234px;
  4319. top:372px;
  4320. width:73px;
  4321. height:25px;
  4322. display:flex;
  4323. transition:none;
  4324. transform-origin:50% 50%;
  4325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4326. font-weight:400;
  4327. font-style:normal;
  4328. font-size:18px;
  4329. }
  4330. #u6799 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:0px 0px 0px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u6799_text {
  4338. border-width:0px;
  4339. white-space:nowrap;
  4340. text-transform:none;
  4341. }
  4342. #u6800_div {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:193px;
  4348. height:17px;
  4349. background:inherit;
  4350. background-color:rgba(255, 255, 255, 0);
  4351. border-left:0px;
  4352. border-top:0px;
  4353. border-right:0px;
  4354. border-radius:0px;
  4355. border-bottom-right-radius:0px;
  4356. border-bottom-left-radius:0px;
  4357. filter:drop-shadow(none);
  4358. transition:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#7F7F7F;
  4364. }
  4365. #u6800 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:234px;
  4369. top:402px;
  4370. width:193px;
  4371. height:17px;
  4372. display:flex;
  4373. transition:none;
  4374. transform-origin:50% 50%;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#7F7F7F;
  4380. }
  4381. #u6800 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:0px 0px 0px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u6800_text {
  4389. border-width:0px;
  4390. white-space:nowrap;
  4391. text-transform:none;
  4392. }
  4393. #u6801 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:0px;
  4399. height:0px;
  4400. }
  4401. #u6802_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:240px;
  4407. height:80px;
  4408. background:inherit;
  4409. background-color:rgba(242, 242, 242, 1);
  4410. border-radius:0px;
  4411. filter:drop-shadow(none);
  4412. transition:none;
  4413. }
  4414. #u6802 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:423px;
  4418. top:556px;
  4419. width:240px;
  4420. height:80px;
  4421. display:flex;
  4422. transition:none;
  4423. transform-origin:50% 50%;
  4424. }
  4425. #u6802 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 2px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u6802_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u6803 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:439px;
  4442. top:569px;
  4443. width:50px;
  4444. height:53px;
  4445. display:flex;
  4446. transition:none;
  4447. }
  4448. #u6803 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 2px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u6803_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:50px;
  4461. height:53px;
  4462. }
  4463. #u6803_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. visibility:hidden;
  4468. }
  4469. #u6804 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:0px;
  4475. height:0px;
  4476. }
  4477. #u6805_div {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:109px;
  4483. height:25px;
  4484. background:inherit;
  4485. background-color:rgba(255, 255, 255, 0);
  4486. border-left:0px;
  4487. border-top:0px;
  4488. border-right:0px;
  4489. border-radius:0px;
  4490. border-bottom-right-radius:0px;
  4491. border-bottom-left-radius:0px;
  4492. filter:drop-shadow(none);
  4493. transition:none;
  4494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:18px;
  4498. }
  4499. #u6805 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:504px;
  4503. top:572px;
  4504. width:109px;
  4505. height:25px;
  4506. display:flex;
  4507. transition:none;
  4508. transform-origin:50% 50%;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:18px;
  4513. }
  4514. #u6805 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:0px 0px 0px 0px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u6805_text {
  4522. border-width:0px;
  4523. white-space:nowrap;
  4524. text-transform:none;
  4525. }
  4526. #u6806_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:145px;
  4532. height:17px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 0);
  4535. border-left:0px;
  4536. border-top:0px;
  4537. border-right:0px;
  4538. border-radius:0px;
  4539. border-bottom-right-radius:0px;
  4540. border-bottom-left-radius:0px;
  4541. filter:drop-shadow(none);
  4542. transition:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. color:#7F7F7F;
  4548. }
  4549. #u6806 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:504px;
  4553. top:602px;
  4554. width:145px;
  4555. height:17px;
  4556. display:flex;
  4557. transition:none;
  4558. transform-origin:50% 50%;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:12px;
  4563. color:#7F7F7F;
  4564. }
  4565. #u6806 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:0px 0px 0px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u6806_text {
  4573. border-width:0px;
  4574. white-space:nowrap;
  4575. text-transform:none;
  4576. }
  4577. #u6807 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:0px;
  4583. height:0px;
  4584. }
  4585. #u6808_div {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:240px;
  4591. height:80px;
  4592. background:inherit;
  4593. background-color:rgba(242, 242, 242, 1);
  4594. border-radius:0px;
  4595. filter:drop-shadow(none);
  4596. transition:none;
  4597. }
  4598. #u6808 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:1235px;
  4602. top:356px;
  4603. width:240px;
  4604. height:80px;
  4605. display:flex;
  4606. transition:none;
  4607. transform-origin:50% 50%;
  4608. }
  4609. #u6808 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u6808_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u6809 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:1251px;
  4626. top:369px;
  4627. width:50px;
  4628. height:53px;
  4629. display:flex;
  4630. transition:none;
  4631. }
  4632. #u6809 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 2px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u6809_img {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:50px;
  4645. height:53px;
  4646. }
  4647. #u6809_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. visibility:hidden;
  4652. }
  4653. #u6810 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:0px;
  4659. height:0px;
  4660. }
  4661. #u6811_div {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:73px;
  4667. height:25px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 0);
  4670. border-left:0px;
  4671. border-top:0px;
  4672. border-right:0px;
  4673. border-radius:0px;
  4674. border-bottom-right-radius:0px;
  4675. border-bottom-left-radius:0px;
  4676. filter:drop-shadow(none);
  4677. transition:none;
  4678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4679. font-weight:400;
  4680. font-style:normal;
  4681. font-size:18px;
  4682. }
  4683. #u6811 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:1316px;
  4687. top:372px;
  4688. width:73px;
  4689. height:25px;
  4690. display:flex;
  4691. transition:none;
  4692. transform-origin:50% 50%;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:18px;
  4697. }
  4698. #u6811 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:0px 0px 0px 0px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u6811_text {
  4706. border-width:0px;
  4707. white-space:nowrap;
  4708. text-transform:none;
  4709. }
  4710. #u6812_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:121px;
  4716. height:17px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 0);
  4719. border-left:0px;
  4720. border-top:0px;
  4721. border-right:0px;
  4722. border-radius:0px;
  4723. border-bottom-right-radius:0px;
  4724. border-bottom-left-radius:0px;
  4725. filter:drop-shadow(none);
  4726. transition:none;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. color:#7F7F7F;
  4732. }
  4733. #u6812 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:1316px;
  4737. top:402px;
  4738. width:121px;
  4739. height:17px;
  4740. display:flex;
  4741. transition:none;
  4742. transform-origin:50% 50%;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#7F7F7F;
  4748. }
  4749. #u6812 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:0px 0px 0px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u6812_text {
  4757. border-width:0px;
  4758. white-space:nowrap;
  4759. text-transform:none;
  4760. }
  4761. #u6813 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:0px;
  4767. height:0px;
  4768. }
  4769. #u6814_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:240px;
  4775. height:80px;
  4776. background:inherit;
  4777. background-color:rgba(242, 242, 242, 1);
  4778. border-radius:0px;
  4779. filter:drop-shadow(none);
  4780. transition:none;
  4781. }
  4782. #u6814 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:1236px;
  4786. top:456px;
  4787. width:240px;
  4788. height:80px;
  4789. display:flex;
  4790. transition:none;
  4791. transform-origin:50% 50%;
  4792. }
  4793. #u6814 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:2px 2px 2px 2px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u6814_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u6815 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:1252px;
  4810. top:469px;
  4811. width:50px;
  4812. height:53px;
  4813. display:flex;
  4814. transition:none;
  4815. }
  4816. #u6815 .text {
  4817. position:absolute;
  4818. align-self:center;
  4819. padding:2px 2px 2px 2px;
  4820. box-sizing:border-box;
  4821. width:100%;
  4822. }
  4823. #u6815_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:50px;
  4829. height:53px;
  4830. }
  4831. #u6815_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. visibility:hidden;
  4836. }
  4837. #u6816 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:0px;
  4843. height:0px;
  4844. }
  4845. #u6817_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:73px;
  4851. height:25px;
  4852. background:inherit;
  4853. background-color:rgba(255, 255, 255, 0);
  4854. border-left:0px;
  4855. border-top:0px;
  4856. border-right:0px;
  4857. border-radius:0px;
  4858. border-bottom-right-radius:0px;
  4859. border-bottom-left-radius:0px;
  4860. filter:drop-shadow(none);
  4861. transition:none;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:18px;
  4866. }
  4867. #u6817 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:1317px;
  4871. top:472px;
  4872. width:73px;
  4873. height:25px;
  4874. display:flex;
  4875. transition:none;
  4876. transform-origin:50% 50%;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:18px;
  4881. }
  4882. #u6817 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:0px 0px 0px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u6817_text {
  4890. border-width:0px;
  4891. white-space:nowrap;
  4892. text-transform:none;
  4893. }
  4894. #u6818_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:193px;
  4900. height:17px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 0);
  4903. border-left:0px;
  4904. border-top:0px;
  4905. border-right:0px;
  4906. border-radius:0px;
  4907. border-bottom-right-radius:0px;
  4908. border-bottom-left-radius:0px;
  4909. filter:drop-shadow(none);
  4910. transition:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:12px;
  4915. color:#7F7F7F;
  4916. }
  4917. #u6818 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1317px;
  4921. top:502px;
  4922. width:193px;
  4923. height:17px;
  4924. display:flex;
  4925. transition:none;
  4926. transform-origin:50% 50%;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:12px;
  4931. color:#7F7F7F;
  4932. }
  4933. #u6818 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:0px 0px 0px 0px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u6818_text {
  4941. border-width:0px;
  4942. white-space:nowrap;
  4943. text-transform:none;
  4944. }
  4945. #u6819 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:0px;
  4951. height:0px;
  4952. }
  4953. #u6820_div {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:240px;
  4959. height:80px;
  4960. background:inherit;
  4961. background-color:rgba(242, 242, 242, 1);
  4962. border-radius:0px;
  4963. filter:drop-shadow(none);
  4964. transition:none;
  4965. }
  4966. #u6820 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:965px;
  4970. top:456px;
  4971. width:240px;
  4972. height:80px;
  4973. display:flex;
  4974. transition:none;
  4975. transform-origin:50% 50%;
  4976. }
  4977. #u6820 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 2px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u6820_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u6821 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:981px;
  4994. top:469px;
  4995. width:50px;
  4996. height:53px;
  4997. display:flex;
  4998. transition:none;
  4999. }
  5000. #u6821 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 2px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u6821_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:50px;
  5013. height:53px;
  5014. }
  5015. #u6821_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u6822 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:0px;
  5027. height:0px;
  5028. }
  5029. #u6823_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:73px;
  5035. height:25px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 0);
  5038. border-left:0px;
  5039. border-top:0px;
  5040. border-right:0px;
  5041. border-radius:0px;
  5042. border-bottom-right-radius:0px;
  5043. border-bottom-left-radius:0px;
  5044. filter:drop-shadow(none);
  5045. transition:none;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:18px;
  5050. }
  5051. #u6823 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:1046px;
  5055. top:472px;
  5056. width:73px;
  5057. height:25px;
  5058. display:flex;
  5059. transition:none;
  5060. transform-origin:50% 50%;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:18px;
  5065. }
  5066. #u6823 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:0px 0px 0px 0px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u6823_text {
  5074. border-width:0px;
  5075. white-space:nowrap;
  5076. text-transform:none;
  5077. }
  5078. #u6824_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:73px;
  5084. height:17px;
  5085. background:inherit;
  5086. background-color:rgba(255, 255, 255, 0);
  5087. border-left:0px;
  5088. border-top:0px;
  5089. border-right:0px;
  5090. border-radius:0px;
  5091. border-bottom-right-radius:0px;
  5092. border-bottom-left-radius:0px;
  5093. filter:drop-shadow(none);
  5094. transition:none;
  5095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:12px;
  5099. color:#7F7F7F;
  5100. }
  5101. #u6824 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1046px;
  5105. top:502px;
  5106. width:73px;
  5107. height:17px;
  5108. display:flex;
  5109. transition:none;
  5110. transform-origin:50% 50%;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#7F7F7F;
  5116. }
  5117. #u6824 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:0px 0px 0px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u6824_text {
  5125. border-width:0px;
  5126. white-space:nowrap;
  5127. text-transform:none;
  5128. }
  5129. #u6825 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:0px;
  5135. height:0px;
  5136. }
  5137. #u6826_div {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:240px;
  5143. height:80px;
  5144. background:inherit;
  5145. background-color:rgba(242, 242, 242, 1);
  5146. border-radius:0px;
  5147. filter:drop-shadow(none);
  5148. transition:none;
  5149. }
  5150. #u6826 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:153px;
  5154. top:556px;
  5155. width:240px;
  5156. height:80px;
  5157. display:flex;
  5158. transition:none;
  5159. transform-origin:50% 50%;
  5160. }
  5161. #u6826 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 2px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u6826_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u6827 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:169px;
  5178. top:569px;
  5179. width:50px;
  5180. height:53px;
  5181. display:flex;
  5182. transition:none;
  5183. }
  5184. #u6827 .text {
  5185. position:absolute;
  5186. align-self:center;
  5187. padding:2px 2px 2px 2px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u6827_img {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:50px;
  5197. height:53px;
  5198. }
  5199. #u6827_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. visibility:hidden;
  5204. }
  5205. #u6828 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:0px;
  5211. height:0px;
  5212. }
  5213. #u6829_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:91px;
  5219. height:25px;
  5220. background:inherit;
  5221. background-color:rgba(255, 255, 255, 0);
  5222. border-left:0px;
  5223. border-top:0px;
  5224. border-right:0px;
  5225. border-radius:0px;
  5226. border-bottom-right-radius:0px;
  5227. border-bottom-left-radius:0px;
  5228. filter:drop-shadow(none);
  5229. transition:none;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:18px;
  5234. }
  5235. #u6829 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:234px;
  5239. top:572px;
  5240. width:91px;
  5241. height:25px;
  5242. display:flex;
  5243. transition:none;
  5244. transform-origin:50% 50%;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:18px;
  5249. }
  5250. #u6829 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:0px 0px 0px 0px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u6829_text {
  5258. border-width:0px;
  5259. white-space:nowrap;
  5260. text-transform:none;
  5261. }
  5262. #u6830_div {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:121px;
  5268. height:17px;
  5269. background:inherit;
  5270. background-color:rgba(255, 255, 255, 0);
  5271. border-left:0px;
  5272. border-top:0px;
  5273. border-right:0px;
  5274. border-radius:0px;
  5275. border-bottom-right-radius:0px;
  5276. border-bottom-left-radius:0px;
  5277. filter:drop-shadow(none);
  5278. transition:none;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:12px;
  5283. color:#7F7F7F;
  5284. }
  5285. #u6830 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:234px;
  5289. top:602px;
  5290. width:121px;
  5291. height:17px;
  5292. display:flex;
  5293. transition:none;
  5294. transform-origin:50% 50%;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. color:#7F7F7F;
  5300. }
  5301. #u6830 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:0px 0px 0px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u6830_text {
  5309. border-width:0px;
  5310. white-space:nowrap;
  5311. text-transform:none;
  5312. }
  5313. #u6831 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:0px;
  5319. height:0px;
  5320. }
  5321. #u6832_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:240px;
  5327. height:80px;
  5328. background:inherit;
  5329. background-color:rgba(242, 242, 242, 1);
  5330. border-radius:0px;
  5331. filter:drop-shadow(none);
  5332. transition:none;
  5333. }
  5334. #u6832 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:694px;
  5338. top:456px;
  5339. width:240px;
  5340. height:80px;
  5341. display:flex;
  5342. transition:none;
  5343. transform-origin:50% 50%;
  5344. }
  5345. #u6832 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 2px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u6832_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u6833 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:710px;
  5362. top:469px;
  5363. width:50px;
  5364. height:53px;
  5365. display:flex;
  5366. transition:none;
  5367. }
  5368. #u6833 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 2px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u6833_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:50px;
  5381. height:53px;
  5382. }
  5383. #u6833_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. #u6834 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:0px;
  5395. height:0px;
  5396. }
  5397. #u6835_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:73px;
  5403. height:25px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. border-left:0px;
  5407. border-top:0px;
  5408. border-right:0px;
  5409. border-radius:0px;
  5410. border-bottom-right-radius:0px;
  5411. border-bottom-left-radius:0px;
  5412. filter:drop-shadow(none);
  5413. transition:none;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:18px;
  5418. }
  5419. #u6835 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:775px;
  5423. top:472px;
  5424. width:73px;
  5425. height:25px;
  5426. display:flex;
  5427. transition:none;
  5428. transform-origin:50% 50%;
  5429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:18px;
  5433. }
  5434. #u6835 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:0px 0px 0px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u6835_text {
  5442. border-width:0px;
  5443. white-space:nowrap;
  5444. text-transform:none;
  5445. }
  5446. #u6836_div {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:157px;
  5452. height:17px;
  5453. background:inherit;
  5454. background-color:rgba(255, 255, 255, 0);
  5455. border-left:0px;
  5456. border-top:0px;
  5457. border-right:0px;
  5458. border-radius:0px;
  5459. border-bottom-right-radius:0px;
  5460. border-bottom-left-radius:0px;
  5461. filter:drop-shadow(none);
  5462. transition:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:12px;
  5467. color:#7F7F7F;
  5468. }
  5469. #u6836 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:775px;
  5473. top:502px;
  5474. width:157px;
  5475. height:17px;
  5476. display:flex;
  5477. transition:none;
  5478. transform-origin:50% 50%;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#7F7F7F;
  5484. }
  5485. #u6836 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:0px 0px 0px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u6836_text {
  5493. border-width:0px;
  5494. white-space:nowrap;
  5495. text-transform:none;
  5496. }
  5497. #u6837 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:0px;
  5503. height:0px;
  5504. }
  5505. #u6838_div {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:240px;
  5511. height:80px;
  5512. background:inherit;
  5513. background-color:rgba(242, 242, 242, 1);
  5514. border-radius:0px;
  5515. filter:drop-shadow(none);
  5516. transition:none;
  5517. }
  5518. #u6838 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:423px;
  5522. top:456px;
  5523. width:240px;
  5524. height:80px;
  5525. display:flex;
  5526. transition:none;
  5527. transform-origin:50% 50%;
  5528. }
  5529. #u6838 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u6838_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. visibility:hidden;
  5541. }
  5542. #u6839 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:439px;
  5546. top:469px;
  5547. width:50px;
  5548. height:53px;
  5549. display:flex;
  5550. transition:none;
  5551. }
  5552. #u6839 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 2px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u6839_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:50px;
  5565. height:53px;
  5566. }
  5567. #u6839_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u6840 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:0px;
  5579. height:0px;
  5580. }
  5581. #u6841_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:73px;
  5587. height:25px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 0);
  5590. border-left:0px;
  5591. border-top:0px;
  5592. border-right:0px;
  5593. border-radius:0px;
  5594. border-bottom-right-radius:0px;
  5595. border-bottom-left-radius:0px;
  5596. filter:drop-shadow(none);
  5597. transition:none;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:18px;
  5602. }
  5603. #u6841 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:504px;
  5607. top:472px;
  5608. width:73px;
  5609. height:25px;
  5610. display:flex;
  5611. transition:none;
  5612. transform-origin:50% 50%;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:18px;
  5617. }
  5618. #u6841 .text {
  5619. position:absolute;
  5620. align-self:center;
  5621. padding:0px 0px 0px 0px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u6841_text {
  5626. border-width:0px;
  5627. white-space:nowrap;
  5628. text-transform:none;
  5629. }
  5630. #u6842_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:229px;
  5636. height:17px;
  5637. background:inherit;
  5638. background-color:rgba(255, 255, 255, 0);
  5639. border-left:0px;
  5640. border-top:0px;
  5641. border-right:0px;
  5642. border-radius:0px;
  5643. border-bottom-right-radius:0px;
  5644. border-bottom-left-radius:0px;
  5645. filter:drop-shadow(none);
  5646. transition:none;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:12px;
  5651. color:#7F7F7F;
  5652. }
  5653. #u6842 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:504px;
  5657. top:502px;
  5658. width:229px;
  5659. height:17px;
  5660. display:flex;
  5661. transition:none;
  5662. transform-origin:50% 50%;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:12px;
  5667. color:#7F7F7F;
  5668. }
  5669. #u6842 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u6842_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u6843 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:0px;
  5687. height:0px;
  5688. }
  5689. #u6844_div {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:240px;
  5695. height:80px;
  5696. background:inherit;
  5697. background-color:rgba(242, 242, 242, 1);
  5698. border-radius:0px;
  5699. filter:drop-shadow(none);
  5700. transition:none;
  5701. }
  5702. #u6844 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:153px;
  5706. top:456px;
  5707. width:240px;
  5708. height:80px;
  5709. display:flex;
  5710. transition:none;
  5711. transform-origin:50% 50%;
  5712. }
  5713. #u6844 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u6844_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u6845 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:169px;
  5730. top:469px;
  5731. width:50px;
  5732. height:53px;
  5733. display:flex;
  5734. transition:none;
  5735. }
  5736. #u6845 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u6845_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:50px;
  5749. height:53px;
  5750. }
  5751. #u6845_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. visibility:hidden;
  5756. }
  5757. #u6846 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:0px;
  5763. height:0px;
  5764. }
  5765. #u6847_div {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:73px;
  5771. height:25px;
  5772. background:inherit;
  5773. background-color:rgba(255, 255, 255, 0);
  5774. border-left:0px;
  5775. border-top:0px;
  5776. border-right:0px;
  5777. border-radius:0px;
  5778. border-bottom-right-radius:0px;
  5779. border-bottom-left-radius:0px;
  5780. filter:drop-shadow(none);
  5781. transition:none;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:18px;
  5786. }
  5787. #u6847 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:234px;
  5791. top:472px;
  5792. width:73px;
  5793. height:25px;
  5794. display:flex;
  5795. transition:none;
  5796. transform-origin:50% 50%;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:18px;
  5801. }
  5802. #u6847 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:0px 0px 0px 0px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u6847_text {
  5810. border-width:0px;
  5811. white-space:nowrap;
  5812. text-transform:none;
  5813. }
  5814. #u6848_div {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:205px;
  5820. height:17px;
  5821. background:inherit;
  5822. background-color:rgba(255, 255, 255, 0);
  5823. border-left:0px;
  5824. border-top:0px;
  5825. border-right:0px;
  5826. border-radius:0px;
  5827. border-bottom-right-radius:0px;
  5828. border-bottom-left-radius:0px;
  5829. filter:drop-shadow(none);
  5830. transition:none;
  5831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:12px;
  5835. color:#7F7F7F;
  5836. }
  5837. #u6848 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:234px;
  5841. top:502px;
  5842. width:205px;
  5843. height:17px;
  5844. display:flex;
  5845. transition:none;
  5846. transform-origin:50% 50%;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:12px;
  5851. color:#7F7F7F;
  5852. }
  5853. #u6848 .text {
  5854. position:absolute;
  5855. align-self:center;
  5856. padding:0px 0px 0px 0px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u6848_text {
  5861. border-width:0px;
  5862. white-space:nowrap;
  5863. text-transform:none;
  5864. }
  5865. #u6849 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:0px;
  5871. height:0px;
  5872. }
  5873. #u6850_div {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:240px;
  5879. height:80px;
  5880. background:inherit;
  5881. background-color:rgba(242, 242, 242, 1);
  5882. border-radius:0px;
  5883. filter:drop-shadow(none);
  5884. transition:none;
  5885. }
  5886. #u6850 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:153px;
  5890. top:756px;
  5891. width:240px;
  5892. height:80px;
  5893. display:flex;
  5894. transition:none;
  5895. transform-origin:50% 50%;
  5896. }
  5897. #u6850 .text {
  5898. position:absolute;
  5899. align-self:center;
  5900. padding:2px 2px 2px 2px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u6850_text {
  5905. border-width:0px;
  5906. word-wrap:break-word;
  5907. text-transform:none;
  5908. visibility:hidden;
  5909. }
  5910. #u6851 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:169px;
  5914. top:769px;
  5915. width:50px;
  5916. height:53px;
  5917. display:flex;
  5918. transition:none;
  5919. }
  5920. #u6851 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 2px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u6851_img {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:50px;
  5933. height:53px;
  5934. }
  5935. #u6851_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u6852 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:0px;
  5947. height:0px;
  5948. }
  5949. #u6853_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:73px;
  5955. height:25px;
  5956. background:inherit;
  5957. background-color:rgba(255, 255, 255, 0);
  5958. border-left:0px;
  5959. border-top:0px;
  5960. border-right:0px;
  5961. border-radius:0px;
  5962. border-bottom-right-radius:0px;
  5963. border-bottom-left-radius:0px;
  5964. filter:drop-shadow(none);
  5965. transition:none;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:18px;
  5970. }
  5971. #u6853 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:234px;
  5975. top:772px;
  5976. width:73px;
  5977. height:25px;
  5978. display:flex;
  5979. transition:none;
  5980. transform-origin:50% 50%;
  5981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:18px;
  5985. }
  5986. #u6853 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:0px 0px 0px 0px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u6853_text {
  5994. border-width:0px;
  5995. white-space:nowrap;
  5996. text-transform:none;
  5997. }
  5998. #u6854_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:97px;
  6004. height:17px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 0);
  6007. border-left:0px;
  6008. border-top:0px;
  6009. border-right:0px;
  6010. border-radius:0px;
  6011. border-bottom-right-radius:0px;
  6012. border-bottom-left-radius:0px;
  6013. filter:drop-shadow(none);
  6014. transition:none;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:12px;
  6019. color:#7F7F7F;
  6020. }
  6021. #u6854 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:234px;
  6025. top:802px;
  6026. width:97px;
  6027. height:17px;
  6028. display:flex;
  6029. transition:none;
  6030. transform-origin:50% 50%;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:12px;
  6035. color:#7F7F7F;
  6036. }
  6037. #u6854 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:0px 0px 0px 0px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u6854_text {
  6045. border-width:0px;
  6046. white-space:nowrap;
  6047. text-transform:none;
  6048. }
  6049. #u6855 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:0px;
  6055. height:0px;
  6056. }
  6057. #u6856_div {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:240px;
  6063. height:80px;
  6064. background:inherit;
  6065. background-color:rgba(242, 242, 242, 1);
  6066. border-radius:0px;
  6067. filter:drop-shadow(none);
  6068. transition:none;
  6069. }
  6070. #u6856 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:424px;
  6074. top:756px;
  6075. width:240px;
  6076. height:80px;
  6077. display:flex;
  6078. transition:none;
  6079. transform-origin:50% 50%;
  6080. }
  6081. #u6856 .text {
  6082. position:absolute;
  6083. align-self:center;
  6084. padding:2px 2px 2px 2px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u6856_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. visibility:hidden;
  6093. }
  6094. #u6857 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:440px;
  6098. top:769px;
  6099. width:50px;
  6100. height:53px;
  6101. display:flex;
  6102. transition:none;
  6103. }
  6104. #u6857 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 2px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u6857_img {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:50px;
  6117. height:53px;
  6118. }
  6119. #u6857_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u6858 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:0px;
  6131. height:0px;
  6132. }
  6133. #u6859_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:73px;
  6139. height:25px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border-left:0px;
  6143. border-top:0px;
  6144. border-right:0px;
  6145. border-radius:0px;
  6146. border-bottom-right-radius:0px;
  6147. border-bottom-left-radius:0px;
  6148. filter:drop-shadow(none);
  6149. transition:none;
  6150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:18px;
  6154. }
  6155. #u6859 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:505px;
  6159. top:772px;
  6160. width:73px;
  6161. height:25px;
  6162. display:flex;
  6163. transition:none;
  6164. transform-origin:50% 50%;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:18px;
  6169. }
  6170. #u6859 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:0px 0px 0px 0px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u6859_text {
  6178. border-width:0px;
  6179. white-space:nowrap;
  6180. text-transform:none;
  6181. }
  6182. #u6860_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:97px;
  6188. height:17px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 0);
  6191. border-left:0px;
  6192. border-top:0px;
  6193. border-right:0px;
  6194. border-radius:0px;
  6195. border-bottom-right-radius:0px;
  6196. border-bottom-left-radius:0px;
  6197. filter:drop-shadow(none);
  6198. transition:none;
  6199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. font-size:12px;
  6203. color:#7F7F7F;
  6204. }
  6205. #u6860 {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:505px;
  6209. top:802px;
  6210. width:97px;
  6211. height:17px;
  6212. display:flex;
  6213. transition:none;
  6214. transform-origin:50% 50%;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. color:#7F7F7F;
  6220. }
  6221. #u6860 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:0px 0px 0px 0px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u6860_text {
  6229. border-width:0px;
  6230. white-space:nowrap;
  6231. text-transform:none;
  6232. }
  6233. #u6861 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:0px;
  6239. height:0px;
  6240. }
  6241. #u6862_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:240px;
  6247. height:80px;
  6248. background:inherit;
  6249. background-color:rgba(242, 242, 242, 1);
  6250. border-radius:0px;
  6251. filter:drop-shadow(none);
  6252. transition:none;
  6253. }
  6254. #u6862 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:964px;
  6258. top:656px;
  6259. width:240px;
  6260. height:80px;
  6261. display:flex;
  6262. transition:none;
  6263. transform-origin:50% 50%;
  6264. }
  6265. #u6862 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:2px 2px 2px 2px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u6862_text {
  6273. border-width:0px;
  6274. word-wrap:break-word;
  6275. text-transform:none;
  6276. visibility:hidden;
  6277. }
  6278. #u6863 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:980px;
  6282. top:669px;
  6283. width:50px;
  6284. height:53px;
  6285. display:flex;
  6286. transition:none;
  6287. }
  6288. #u6863 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u6863_img {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:50px;
  6301. height:53px;
  6302. }
  6303. #u6863_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u6864 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:0px;
  6315. height:0px;
  6316. }
  6317. #u6865_div {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:73px;
  6323. height:25px;
  6324. background:inherit;
  6325. background-color:rgba(255, 255, 255, 0);
  6326. border-left:0px;
  6327. border-top:0px;
  6328. border-right:0px;
  6329. border-radius:0px;
  6330. border-bottom-right-radius:0px;
  6331. border-bottom-left-radius:0px;
  6332. filter:drop-shadow(none);
  6333. transition:none;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:18px;
  6338. }
  6339. #u6865 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:1045px;
  6343. top:672px;
  6344. width:73px;
  6345. height:25px;
  6346. display:flex;
  6347. transition:none;
  6348. transform-origin:50% 50%;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:18px;
  6353. }
  6354. #u6865 .text {
  6355. position:absolute;
  6356. align-self:center;
  6357. padding:0px 0px 0px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u6865_text {
  6362. border-width:0px;
  6363. white-space:nowrap;
  6364. text-transform:none;
  6365. }
  6366. #u6866_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:133px;
  6372. height:17px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 0);
  6375. border-left:0px;
  6376. border-top:0px;
  6377. border-right:0px;
  6378. border-radius:0px;
  6379. border-bottom-right-radius:0px;
  6380. border-bottom-left-radius:0px;
  6381. filter:drop-shadow(none);
  6382. transition:none;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:12px;
  6387. color:#7F7F7F;
  6388. }
  6389. #u6866 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:1045px;
  6393. top:702px;
  6394. width:133px;
  6395. height:17px;
  6396. display:flex;
  6397. transition:none;
  6398. transform-origin:50% 50%;
  6399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:12px;
  6403. color:#7F7F7F;
  6404. }
  6405. #u6866 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:0px 0px 0px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u6866_text {
  6413. border-width:0px;
  6414. white-space:nowrap;
  6415. text-transform:none;
  6416. }
  6417. #u6867 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:0px;
  6423. height:0px;
  6424. }
  6425. #u6868_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:240px;
  6431. height:80px;
  6432. background:inherit;
  6433. background-color:rgba(242, 242, 242, 1);
  6434. border-radius:0px;
  6435. filter:drop-shadow(none);
  6436. transition:none;
  6437. }
  6438. #u6868 {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:694px;
  6442. top:759px;
  6443. width:240px;
  6444. height:80px;
  6445. display:flex;
  6446. transition:none;
  6447. transform-origin:50% 50%;
  6448. }
  6449. #u6868 .text {
  6450. position:absolute;
  6451. align-self:center;
  6452. padding:2px 2px 2px 2px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u6868_text {
  6457. border-width:0px;
  6458. word-wrap:break-word;
  6459. text-transform:none;
  6460. visibility:hidden;
  6461. }
  6462. #u6869 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:710px;
  6466. top:772px;
  6467. width:50px;
  6468. height:53px;
  6469. display:flex;
  6470. transition:none;
  6471. }
  6472. #u6869 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:2px 2px 2px 2px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u6869_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:50px;
  6485. height:53px;
  6486. }
  6487. #u6869_text {
  6488. border-width:0px;
  6489. word-wrap:break-word;
  6490. text-transform:none;
  6491. visibility:hidden;
  6492. }
  6493. #u6870 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:0px;
  6499. height:0px;
  6500. }
  6501. #u6871_div {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:73px;
  6507. height:25px;
  6508. background:inherit;
  6509. background-color:rgba(255, 255, 255, 0);
  6510. border-left:0px;
  6511. border-top:0px;
  6512. border-right:0px;
  6513. border-radius:0px;
  6514. border-bottom-right-radius:0px;
  6515. border-bottom-left-radius:0px;
  6516. filter:drop-shadow(none);
  6517. transition:none;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:18px;
  6522. }
  6523. #u6871 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:775px;
  6527. top:775px;
  6528. width:73px;
  6529. height:25px;
  6530. display:flex;
  6531. transition:none;
  6532. transform-origin:50% 50%;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:18px;
  6537. }
  6538. #u6871 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:0px 0px 0px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u6871_text {
  6546. border-width:0px;
  6547. white-space:nowrap;
  6548. text-transform:none;
  6549. }
  6550. #u6872_div {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:133px;
  6556. height:17px;
  6557. background:inherit;
  6558. background-color:rgba(255, 255, 255, 0);
  6559. border-left:0px;
  6560. border-top:0px;
  6561. border-right:0px;
  6562. border-radius:0px;
  6563. border-bottom-right-radius:0px;
  6564. border-bottom-left-radius:0px;
  6565. filter:drop-shadow(none);
  6566. transition:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#7F7F7F;
  6572. }
  6573. #u6872 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:775px;
  6577. top:805px;
  6578. width:133px;
  6579. height:17px;
  6580. display:flex;
  6581. transition:none;
  6582. transform-origin:50% 50%;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:12px;
  6587. color:#7F7F7F;
  6588. }
  6589. #u6872 .text {
  6590. position:absolute;
  6591. align-self:center;
  6592. padding:0px 0px 0px 0px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u6872_text {
  6597. border-width:0px;
  6598. white-space:nowrap;
  6599. text-transform:none;
  6600. }
  6601. #u6873 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:0px;
  6607. height:0px;
  6608. }
  6609. #u6874_div {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:240px;
  6615. height:80px;
  6616. background:inherit;
  6617. background-color:rgba(242, 242, 242, 1);
  6618. border-radius:0px;
  6619. filter:drop-shadow(none);
  6620. transition:none;
  6621. }
  6622. #u6874 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:965px;
  6626. top:748px;
  6627. width:240px;
  6628. height:80px;
  6629. display:flex;
  6630. transition:none;
  6631. transform-origin:50% 50%;
  6632. }
  6633. #u6874 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 2px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u6874_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. visibility:hidden;
  6645. }
  6646. #u6875 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:981px;
  6650. top:761px;
  6651. width:50px;
  6652. height:53px;
  6653. display:flex;
  6654. transition:none;
  6655. }
  6656. #u6875 .text {
  6657. position:absolute;
  6658. align-self:center;
  6659. padding:2px 2px 2px 2px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u6875_img {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:50px;
  6669. height:53px;
  6670. }
  6671. #u6875_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u6876 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:0px;
  6683. height:0px;
  6684. }
  6685. #u6877_div {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:73px;
  6691. height:25px;
  6692. background:inherit;
  6693. background-color:rgba(255, 255, 255, 0);
  6694. border-left:0px;
  6695. border-top:0px;
  6696. border-right:0px;
  6697. border-radius:0px;
  6698. border-bottom-right-radius:0px;
  6699. border-bottom-left-radius:0px;
  6700. filter:drop-shadow(none);
  6701. transition:none;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:18px;
  6706. }
  6707. #u6877 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1046px;
  6711. top:764px;
  6712. width:73px;
  6713. height:25px;
  6714. display:flex;
  6715. transition:none;
  6716. transform-origin:50% 50%;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:18px;
  6721. }
  6722. #u6877 .text {
  6723. position:absolute;
  6724. align-self:center;
  6725. padding:0px 0px 0px 0px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u6877_text {
  6730. border-width:0px;
  6731. white-space:nowrap;
  6732. text-transform:none;
  6733. }
  6734. #u6878_div {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:97px;
  6740. height:17px;
  6741. background:inherit;
  6742. background-color:rgba(255, 255, 255, 0);
  6743. border-left:0px;
  6744. border-top:0px;
  6745. border-right:0px;
  6746. border-radius:0px;
  6747. border-bottom-right-radius:0px;
  6748. border-bottom-left-radius:0px;
  6749. filter:drop-shadow(none);
  6750. transition:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:12px;
  6755. color:#7F7F7F;
  6756. }
  6757. #u6878 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:1046px;
  6761. top:794px;
  6762. width:97px;
  6763. height:17px;
  6764. display:flex;
  6765. transition:none;
  6766. transform-origin:50% 50%;
  6767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:12px;
  6771. color:#7F7F7F;
  6772. }
  6773. #u6878 .text {
  6774. position:absolute;
  6775. align-self:center;
  6776. padding:0px 0px 0px 0px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u6878_text {
  6781. border-width:0px;
  6782. white-space:nowrap;
  6783. text-transform:none;
  6784. }
  6785. #u6879 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:0px;
  6791. height:0px;
  6792. }
  6793. #u6880_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:240px;
  6799. height:80px;
  6800. background:inherit;
  6801. background-color:rgba(242, 242, 242, 1);
  6802. border-radius:0px;
  6803. filter:drop-shadow(none);
  6804. transition:none;
  6805. }
  6806. #u6880 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:1236px;
  6810. top:656px;
  6811. width:240px;
  6812. height:80px;
  6813. display:flex;
  6814. transition:none;
  6815. transform-origin:50% 50%;
  6816. }
  6817. #u6880 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 2px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u6880_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. visibility:hidden;
  6829. }
  6830. #u6881 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1252px;
  6834. top:669px;
  6835. width:50px;
  6836. height:53px;
  6837. display:flex;
  6838. transition:none;
  6839. }
  6840. #u6881 .text {
  6841. position:absolute;
  6842. align-self:center;
  6843. padding:2px 2px 2px 2px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u6881_img {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:50px;
  6853. height:53px;
  6854. }
  6855. #u6881_text {
  6856. border-width:0px;
  6857. word-wrap:break-word;
  6858. text-transform:none;
  6859. visibility:hidden;
  6860. }
  6861. #u6882 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:0px;
  6867. height:0px;
  6868. }
  6869. #u6883_div {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:73px;
  6875. height:25px;
  6876. background:inherit;
  6877. background-color:rgba(255, 255, 255, 0);
  6878. border-left:0px;
  6879. border-top:0px;
  6880. border-right:0px;
  6881. border-radius:0px;
  6882. border-bottom-right-radius:0px;
  6883. border-bottom-left-radius:0px;
  6884. filter:drop-shadow(none);
  6885. transition:none;
  6886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:18px;
  6890. }
  6891. #u6883 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:1317px;
  6895. top:672px;
  6896. width:73px;
  6897. height:25px;
  6898. display:flex;
  6899. transition:none;
  6900. transform-origin:50% 50%;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:18px;
  6905. }
  6906. #u6883 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:0px 0px 0px 0px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u6883_text {
  6914. border-width:0px;
  6915. white-space:nowrap;
  6916. text-transform:none;
  6917. }
  6918. #u6884_div {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:109px;
  6924. height:17px;
  6925. background:inherit;
  6926. background-color:rgba(255, 255, 255, 0);
  6927. border-left:0px;
  6928. border-top:0px;
  6929. border-right:0px;
  6930. border-radius:0px;
  6931. border-bottom-right-radius:0px;
  6932. border-bottom-left-radius:0px;
  6933. filter:drop-shadow(none);
  6934. transition:none;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:12px;
  6939. color:#7F7F7F;
  6940. }
  6941. #u6884 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:1317px;
  6945. top:702px;
  6946. width:109px;
  6947. height:17px;
  6948. display:flex;
  6949. transition:none;
  6950. transform-origin:50% 50%;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. color:#7F7F7F;
  6956. }
  6957. #u6884 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:0px 0px 0px 0px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u6884_text {
  6965. border-width:0px;
  6966. white-space:nowrap;
  6967. text-transform:none;
  6968. }
  6969. #u6885 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:0px;
  6975. height:0px;
  6976. }
  6977. #u6886_div {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:240px;
  6983. height:80px;
  6984. background:inherit;
  6985. background-color:rgba(242, 242, 242, 1);
  6986. border-radius:0px;
  6987. filter:drop-shadow(none);
  6988. transition:none;
  6989. }
  6990. #u6886 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:1235px;
  6994. top:748px;
  6995. width:240px;
  6996. height:80px;
  6997. display:flex;
  6998. transition:none;
  6999. transform-origin:50% 50%;
  7000. }
  7001. #u6886 .text {
  7002. position:absolute;
  7003. align-self:center;
  7004. padding:2px 2px 2px 2px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u6886_text {
  7009. border-width:0px;
  7010. word-wrap:break-word;
  7011. text-transform:none;
  7012. visibility:hidden;
  7013. }
  7014. #u6887 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:1251px;
  7018. top:761px;
  7019. width:50px;
  7020. height:53px;
  7021. display:flex;
  7022. transition:none;
  7023. }
  7024. #u6887 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 2px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u6887_img {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:50px;
  7037. height:53px;
  7038. }
  7039. #u6887_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. visibility:hidden;
  7044. }
  7045. #u6888 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:0px;
  7051. height:0px;
  7052. }
  7053. #u6889_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:73px;
  7059. height:25px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border-left:0px;
  7063. border-top:0px;
  7064. border-right:0px;
  7065. border-radius:0px;
  7066. border-bottom-right-radius:0px;
  7067. border-bottom-left-radius:0px;
  7068. filter:drop-shadow(none);
  7069. transition:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:18px;
  7074. }
  7075. #u6889 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:1316px;
  7079. top:764px;
  7080. width:73px;
  7081. height:25px;
  7082. display:flex;
  7083. transition:none;
  7084. transform-origin:50% 50%;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:18px;
  7089. }
  7090. #u6889 .text {
  7091. position:absolute;
  7092. align-self:center;
  7093. padding:0px 0px 0px 0px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u6889_text {
  7098. border-width:0px;
  7099. white-space:nowrap;
  7100. text-transform:none;
  7101. }
  7102. #u6890_div {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:217px;
  7108. height:17px;
  7109. background:inherit;
  7110. background-color:rgba(255, 255, 255, 0);
  7111. border-left:0px;
  7112. border-top:0px;
  7113. border-right:0px;
  7114. border-radius:0px;
  7115. border-bottom-right-radius:0px;
  7116. border-bottom-left-radius:0px;
  7117. filter:drop-shadow(none);
  7118. transition:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:12px;
  7123. color:#7F7F7F;
  7124. }
  7125. #u6890 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1316px;
  7129. top:794px;
  7130. width:217px;
  7131. height:17px;
  7132. display:flex;
  7133. transition:none;
  7134. transform-origin:50% 50%;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:12px;
  7139. color:#7F7F7F;
  7140. }
  7141. #u6890 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:0px 0px 0px 0px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u6890_text {
  7149. border-width:0px;
  7150. white-space:nowrap;
  7151. text-transform:none;
  7152. }
  7153. #u6891 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:0px;
  7159. height:0px;
  7160. }
  7161. #u6892_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:240px;
  7167. height:80px;
  7168. background:inherit;
  7169. background-color:rgba(242, 242, 242, 1);
  7170. border-radius:0px;
  7171. filter:drop-shadow(none);
  7172. transition:none;
  7173. }
  7174. #u6892 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:153px;
  7178. top:956px;
  7179. width:240px;
  7180. height:80px;
  7181. display:flex;
  7182. transition:none;
  7183. transform-origin:50% 50%;
  7184. }
  7185. #u6892 .text {
  7186. position:absolute;
  7187. align-self:center;
  7188. padding:2px 2px 2px 2px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u6892_text {
  7193. border-width:0px;
  7194. word-wrap:break-word;
  7195. text-transform:none;
  7196. visibility:hidden;
  7197. }
  7198. #u6893 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:169px;
  7202. top:969px;
  7203. width:50px;
  7204. height:53px;
  7205. display:flex;
  7206. transition:none;
  7207. }
  7208. #u6893 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 2px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u6893_img {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:50px;
  7221. height:53px;
  7222. }
  7223. #u6893_text {
  7224. border-width:0px;
  7225. word-wrap:break-word;
  7226. text-transform:none;
  7227. visibility:hidden;
  7228. }
  7229. #u6894 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:0px;
  7235. height:0px;
  7236. }
  7237. #u6895_div {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:0px;
  7241. top:0px;
  7242. width:73px;
  7243. height:25px;
  7244. background:inherit;
  7245. background-color:rgba(255, 255, 255, 0);
  7246. border-left:0px;
  7247. border-top:0px;
  7248. border-right:0px;
  7249. border-radius:0px;
  7250. border-bottom-right-radius:0px;
  7251. border-bottom-left-radius:0px;
  7252. filter:drop-shadow(none);
  7253. transition:none;
  7254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:18px;
  7258. }
  7259. #u6895 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:234px;
  7263. top:972px;
  7264. width:73px;
  7265. height:25px;
  7266. display:flex;
  7267. transition:none;
  7268. transform-origin:50% 50%;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:18px;
  7273. }
  7274. #u6895 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:0px 0px 0px 0px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u6895_text {
  7282. border-width:0px;
  7283. white-space:nowrap;
  7284. text-transform:none;
  7285. }
  7286. #u6896_div {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:121px;
  7292. height:17px;
  7293. background:inherit;
  7294. background-color:rgba(255, 255, 255, 0);
  7295. border-left:0px;
  7296. border-top:0px;
  7297. border-right:0px;
  7298. border-radius:0px;
  7299. border-bottom-right-radius:0px;
  7300. border-bottom-left-radius:0px;
  7301. filter:drop-shadow(none);
  7302. transition:none;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:12px;
  7307. color:#7F7F7F;
  7308. }
  7309. #u6896 {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:234px;
  7313. top:1002px;
  7314. width:121px;
  7315. height:17px;
  7316. display:flex;
  7317. transition:none;
  7318. transform-origin:50% 50%;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:12px;
  7323. color:#7F7F7F;
  7324. }
  7325. #u6896 .text {
  7326. position:absolute;
  7327. align-self:center;
  7328. padding:0px 0px 0px 0px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u6896_text {
  7333. border-width:0px;
  7334. white-space:nowrap;
  7335. text-transform:none;
  7336. }
  7337. #u6897 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:0px;
  7343. height:0px;
  7344. }
  7345. #u6898_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:240px;
  7351. height:80px;
  7352. background:inherit;
  7353. background-color:rgba(242, 242, 242, 1);
  7354. border-radius:0px;
  7355. filter:drop-shadow(none);
  7356. transition:none;
  7357. }
  7358. #u6898 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:423px;
  7362. top:856px;
  7363. width:240px;
  7364. height:80px;
  7365. display:flex;
  7366. transition:none;
  7367. transform-origin:50% 50%;
  7368. }
  7369. #u6898 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u6898_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u6899 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:439px;
  7386. top:869px;
  7387. width:50px;
  7388. height:53px;
  7389. display:flex;
  7390. transition:none;
  7391. }
  7392. #u6899 .text {
  7393. position:absolute;
  7394. align-self:center;
  7395. padding:2px 2px 2px 2px;
  7396. box-sizing:border-box;
  7397. width:100%;
  7398. }
  7399. #u6899_img {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:50px;
  7405. height:53px;
  7406. }
  7407. #u6899_text {
  7408. border-width:0px;
  7409. word-wrap:break-word;
  7410. text-transform:none;
  7411. visibility:hidden;
  7412. }
  7413. #u6900 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:0px;
  7419. height:0px;
  7420. }
  7421. #u6901_div {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:73px;
  7427. height:25px;
  7428. background:inherit;
  7429. background-color:rgba(255, 255, 255, 0);
  7430. border-left:0px;
  7431. border-top:0px;
  7432. border-right:0px;
  7433. border-radius:0px;
  7434. border-bottom-right-radius:0px;
  7435. border-bottom-left-radius:0px;
  7436. filter:drop-shadow(none);
  7437. transition:none;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:18px;
  7442. }
  7443. #u6901 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:504px;
  7447. top:872px;
  7448. width:73px;
  7449. height:25px;
  7450. display:flex;
  7451. transition:none;
  7452. transform-origin:50% 50%;
  7453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:18px;
  7457. }
  7458. #u6901 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:0px 0px 0px 0px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u6901_text {
  7466. border-width:0px;
  7467. white-space:nowrap;
  7468. text-transform:none;
  7469. }
  7470. #u6902_div {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:109px;
  7476. height:17px;
  7477. background:inherit;
  7478. background-color:rgba(255, 255, 255, 0);
  7479. border-left:0px;
  7480. border-top:0px;
  7481. border-right:0px;
  7482. border-radius:0px;
  7483. border-bottom-right-radius:0px;
  7484. border-bottom-left-radius:0px;
  7485. filter:drop-shadow(none);
  7486. transition:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:12px;
  7491. color:#7F7F7F;
  7492. }
  7493. #u6902 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:504px;
  7497. top:902px;
  7498. width:109px;
  7499. height:17px;
  7500. display:flex;
  7501. transition:none;
  7502. transform-origin:50% 50%;
  7503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:12px;
  7507. color:#7F7F7F;
  7508. }
  7509. #u6902 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:0px 0px 0px 0px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u6902_text {
  7517. border-width:0px;
  7518. white-space:nowrap;
  7519. text-transform:none;
  7520. }
  7521. #u6903 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:0px;
  7527. height:0px;
  7528. }
  7529. #u6904_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:240px;
  7535. height:80px;
  7536. background:inherit;
  7537. background-color:rgba(242, 242, 242, 1);
  7538. border-radius:0px;
  7539. filter:drop-shadow(none);
  7540. transition:none;
  7541. }
  7542. #u6904 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:423px;
  7546. top:956px;
  7547. width:240px;
  7548. height:80px;
  7549. display:flex;
  7550. transition:none;
  7551. transform-origin:50% 50%;
  7552. }
  7553. #u6904 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u6904_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u6905 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:439px;
  7570. top:969px;
  7571. width:50px;
  7572. height:53px;
  7573. display:flex;
  7574. transition:none;
  7575. }
  7576. #u6905 .text {
  7577. position:absolute;
  7578. align-self:center;
  7579. padding:2px 2px 2px 2px;
  7580. box-sizing:border-box;
  7581. width:100%;
  7582. }
  7583. #u6905_img {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:50px;
  7589. height:53px;
  7590. }
  7591. #u6905_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. visibility:hidden;
  7596. }
  7597. #u6906 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:0px;
  7603. height:0px;
  7604. }
  7605. #u6907_div {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:73px;
  7611. height:25px;
  7612. background:inherit;
  7613. background-color:rgba(255, 255, 255, 0);
  7614. border-left:0px;
  7615. border-top:0px;
  7616. border-right:0px;
  7617. border-radius:0px;
  7618. border-bottom-right-radius:0px;
  7619. border-bottom-left-radius:0px;
  7620. filter:drop-shadow(none);
  7621. transition:none;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:18px;
  7626. }
  7627. #u6907 {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:504px;
  7631. top:972px;
  7632. width:73px;
  7633. height:25px;
  7634. display:flex;
  7635. transition:none;
  7636. transform-origin:50% 50%;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:18px;
  7641. }
  7642. #u6907 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:0px 0px 0px 0px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u6907_text {
  7650. border-width:0px;
  7651. white-space:nowrap;
  7652. text-transform:none;
  7653. }
  7654. #u6908_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:169px;
  7660. height:17px;
  7661. background:inherit;
  7662. background-color:rgba(255, 255, 255, 0);
  7663. border-left:0px;
  7664. border-top:0px;
  7665. border-right:0px;
  7666. border-radius:0px;
  7667. border-bottom-right-radius:0px;
  7668. border-bottom-left-radius:0px;
  7669. filter:drop-shadow(none);
  7670. transition:none;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:12px;
  7675. color:#7F7F7F;
  7676. }
  7677. #u6908 {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:504px;
  7681. top:1002px;
  7682. width:169px;
  7683. height:17px;
  7684. display:flex;
  7685. transition:none;
  7686. transform-origin:50% 50%;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#7F7F7F;
  7692. }
  7693. #u6908 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:0px 0px 0px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u6908_text {
  7701. border-width:0px;
  7702. white-space:nowrap;
  7703. text-transform:none;
  7704. }
  7705. #u6909 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:0px;
  7711. height:0px;
  7712. }
  7713. #u6910_div {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:240px;
  7719. height:80px;
  7720. background:inherit;
  7721. background-color:rgba(242, 242, 242, 1);
  7722. border-radius:0px;
  7723. filter:drop-shadow(none);
  7724. transition:none;
  7725. }
  7726. #u6910 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:694px;
  7730. top:956px;
  7731. width:240px;
  7732. height:80px;
  7733. display:flex;
  7734. transition:none;
  7735. transform-origin:50% 50%;
  7736. }
  7737. #u6910 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 2px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u6910_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. visibility:hidden;
  7749. }
  7750. #u6911 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:710px;
  7754. top:969px;
  7755. width:50px;
  7756. height:53px;
  7757. display:flex;
  7758. transition:none;
  7759. }
  7760. #u6911 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u6911_img {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:50px;
  7773. height:53px;
  7774. }
  7775. #u6911_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. visibility:hidden;
  7780. }
  7781. #u6912 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:0px;
  7787. height:0px;
  7788. }
  7789. #u6913_div {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:73px;
  7795. height:25px;
  7796. background:inherit;
  7797. background-color:rgba(255, 255, 255, 0);
  7798. border-left:0px;
  7799. border-top:0px;
  7800. border-right:0px;
  7801. border-radius:0px;
  7802. border-bottom-right-radius:0px;
  7803. border-bottom-left-radius:0px;
  7804. filter:drop-shadow(none);
  7805. transition:none;
  7806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7807. font-weight:400;
  7808. font-style:normal;
  7809. font-size:18px;
  7810. }
  7811. #u6913 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:775px;
  7815. top:972px;
  7816. width:73px;
  7817. height:25px;
  7818. display:flex;
  7819. transition:none;
  7820. transform-origin:50% 50%;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:18px;
  7825. }
  7826. #u6913 .text {
  7827. position:absolute;
  7828. align-self:center;
  7829. padding:0px 0px 0px 0px;
  7830. box-sizing:border-box;
  7831. width:100%;
  7832. }
  7833. #u6913_text {
  7834. border-width:0px;
  7835. white-space:nowrap;
  7836. text-transform:none;
  7837. }
  7838. #u6914_div {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:169px;
  7844. height:17px;
  7845. background:inherit;
  7846. background-color:rgba(255, 255, 255, 0);
  7847. border-left:0px;
  7848. border-top:0px;
  7849. border-right:0px;
  7850. border-radius:0px;
  7851. border-bottom-right-radius:0px;
  7852. border-bottom-left-radius:0px;
  7853. filter:drop-shadow(none);
  7854. transition:none;
  7855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:12px;
  7859. color:#7F7F7F;
  7860. }
  7861. #u6914 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:775px;
  7865. top:1002px;
  7866. width:169px;
  7867. height:17px;
  7868. display:flex;
  7869. transition:none;
  7870. transform-origin:50% 50%;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:12px;
  7875. color:#7F7F7F;
  7876. }
  7877. #u6914 .text {
  7878. position:absolute;
  7879. align-self:center;
  7880. padding:0px 0px 0px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u6914_text {
  7885. border-width:0px;
  7886. white-space:nowrap;
  7887. text-transform:none;
  7888. }
  7889. #u6915 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:0px;
  7895. height:0px;
  7896. }
  7897. #u6916_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:240px;
  7903. height:80px;
  7904. background:inherit;
  7905. background-color:rgba(242, 242, 242, 1);
  7906. border-radius:0px;
  7907. filter:drop-shadow(none);
  7908. transition:none;
  7909. }
  7910. #u6916 {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:964px;
  7914. top:856px;
  7915. width:240px;
  7916. height:80px;
  7917. display:flex;
  7918. transition:none;
  7919. transform-origin:50% 50%;
  7920. }
  7921. #u6916 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:2px 2px 2px 2px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u6916_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. visibility:hidden;
  7933. }
  7934. #u6917 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:980px;
  7938. top:869px;
  7939. width:50px;
  7940. height:53px;
  7941. display:flex;
  7942. transition:none;
  7943. }
  7944. #u6917 .text {
  7945. position:absolute;
  7946. align-self:center;
  7947. padding:2px 2px 2px 2px;
  7948. box-sizing:border-box;
  7949. width:100%;
  7950. }
  7951. #u6917_img {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:50px;
  7957. height:53px;
  7958. }
  7959. #u6917_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. visibility:hidden;
  7964. }
  7965. #u6918 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:0px;
  7971. height:0px;
  7972. }
  7973. #u6919_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:73px;
  7979. height:25px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 0);
  7982. border-left:0px;
  7983. border-top:0px;
  7984. border-right:0px;
  7985. border-radius:0px;
  7986. border-bottom-right-radius:0px;
  7987. border-bottom-left-radius:0px;
  7988. filter:drop-shadow(none);
  7989. transition:none;
  7990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:18px;
  7994. }
  7995. #u6919 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1045px;
  7999. top:872px;
  8000. width:73px;
  8001. height:25px;
  8002. display:flex;
  8003. transition:none;
  8004. transform-origin:50% 50%;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:18px;
  8009. }
  8010. #u6919 .text {
  8011. position:absolute;
  8012. align-self:center;
  8013. padding:0px 0px 0px 0px;
  8014. box-sizing:border-box;
  8015. width:100%;
  8016. }
  8017. #u6919_text {
  8018. border-width:0px;
  8019. white-space:nowrap;
  8020. text-transform:none;
  8021. }
  8022. #u6920_div {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:0px;
  8026. top:0px;
  8027. width:205px;
  8028. height:17px;
  8029. background:inherit;
  8030. background-color:rgba(255, 255, 255, 0);
  8031. border-left:0px;
  8032. border-top:0px;
  8033. border-right:0px;
  8034. border-radius:0px;
  8035. border-bottom-right-radius:0px;
  8036. border-bottom-left-radius:0px;
  8037. filter:drop-shadow(none);
  8038. transition:none;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:12px;
  8043. color:#7F7F7F;
  8044. }
  8045. #u6920 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:1045px;
  8049. top:902px;
  8050. width:205px;
  8051. height:17px;
  8052. display:flex;
  8053. transition:none;
  8054. transform-origin:50% 50%;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:12px;
  8059. color:#7F7F7F;
  8060. }
  8061. #u6920 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:0px 0px 0px 0px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u6920_text {
  8069. border-width:0px;
  8070. white-space:nowrap;
  8071. text-transform:none;
  8072. }
  8073. #u6921 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:0px;
  8079. height:0px;
  8080. }
  8081. #u6922_div {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:240px;
  8087. height:80px;
  8088. background:inherit;
  8089. background-color:rgba(242, 242, 242, 1);
  8090. border-radius:0px;
  8091. filter:drop-shadow(none);
  8092. transition:none;
  8093. }
  8094. #u6922 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:423px;
  8098. top:656px;
  8099. width:240px;
  8100. height:80px;
  8101. display:flex;
  8102. transition:none;
  8103. transform-origin:50% 50%;
  8104. }
  8105. #u6922 .text {
  8106. position:absolute;
  8107. align-self:center;
  8108. padding:2px 2px 2px 2px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u6922_text {
  8113. border-width:0px;
  8114. word-wrap:break-word;
  8115. text-transform:none;
  8116. visibility:hidden;
  8117. }
  8118. #u6923 {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:439px;
  8122. top:669px;
  8123. width:50px;
  8124. height:53px;
  8125. display:flex;
  8126. transition:none;
  8127. }
  8128. #u6923 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:2px 2px 2px 2px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u6923_img {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:50px;
  8141. height:53px;
  8142. }
  8143. #u6923_text {
  8144. border-width:0px;
  8145. word-wrap:break-word;
  8146. text-transform:none;
  8147. visibility:hidden;
  8148. }
  8149. #u6924 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:0px;
  8155. height:0px;
  8156. }
  8157. #u6925_div {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:73px;
  8163. height:25px;
  8164. background:inherit;
  8165. background-color:rgba(255, 255, 255, 0);
  8166. border-left:0px;
  8167. border-top:0px;
  8168. border-right:0px;
  8169. border-radius:0px;
  8170. border-bottom-right-radius:0px;
  8171. border-bottom-left-radius:0px;
  8172. filter:drop-shadow(none);
  8173. transition:none;
  8174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:18px;
  8178. }
  8179. #u6925 {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:504px;
  8183. top:672px;
  8184. width:73px;
  8185. height:25px;
  8186. display:flex;
  8187. transition:none;
  8188. transform-origin:50% 50%;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:18px;
  8193. }
  8194. #u6925 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:0px 0px 0px 0px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u6925_text {
  8202. border-width:0px;
  8203. white-space:nowrap;
  8204. text-transform:none;
  8205. }
  8206. #u6926_div {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:145px;
  8212. height:17px;
  8213. background:inherit;
  8214. background-color:rgba(255, 255, 255, 0);
  8215. border-left:0px;
  8216. border-top:0px;
  8217. border-right:0px;
  8218. border-radius:0px;
  8219. border-bottom-right-radius:0px;
  8220. border-bottom-left-radius:0px;
  8221. filter:drop-shadow(none);
  8222. transition:none;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:12px;
  8227. color:#7F7F7F;
  8228. }
  8229. #u6926 {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:504px;
  8233. top:702px;
  8234. width:145px;
  8235. height:17px;
  8236. display:flex;
  8237. transition:none;
  8238. transform-origin:50% 50%;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:12px;
  8243. color:#7F7F7F;
  8244. }
  8245. #u6926 .text {
  8246. position:absolute;
  8247. align-self:center;
  8248. padding:0px 0px 0px 0px;
  8249. box-sizing:border-box;
  8250. width:100%;
  8251. }
  8252. #u6926_text {
  8253. border-width:0px;
  8254. white-space:nowrap;
  8255. text-transform:none;
  8256. }
  8257. #u6927 {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:0px;
  8261. top:0px;
  8262. width:0px;
  8263. height:0px;
  8264. }
  8265. #u6928_div {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:240px;
  8271. height:80px;
  8272. background:inherit;
  8273. background-color:rgba(242, 242, 242, 1);
  8274. border-radius:0px;
  8275. filter:drop-shadow(none);
  8276. transition:none;
  8277. }
  8278. #u6928 {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:693px;
  8282. top:656px;
  8283. width:240px;
  8284. height:80px;
  8285. display:flex;
  8286. transition:none;
  8287. transform-origin:50% 50%;
  8288. }
  8289. #u6928 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:2px 2px 2px 2px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u6928_text {
  8297. border-width:0px;
  8298. word-wrap:break-word;
  8299. text-transform:none;
  8300. visibility:hidden;
  8301. }
  8302. #u6929 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:709px;
  8306. top:669px;
  8307. width:50px;
  8308. height:53px;
  8309. display:flex;
  8310. transition:none;
  8311. }
  8312. #u6929 .text {
  8313. position:absolute;
  8314. align-self:center;
  8315. padding:2px 2px 2px 2px;
  8316. box-sizing:border-box;
  8317. width:100%;
  8318. }
  8319. #u6929_img {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:50px;
  8325. height:53px;
  8326. }
  8327. #u6929_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u6930 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:0px;
  8339. height:0px;
  8340. }
  8341. #u6931_div {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:73px;
  8347. height:25px;
  8348. background:inherit;
  8349. background-color:rgba(255, 255, 255, 0);
  8350. border-left:0px;
  8351. border-top:0px;
  8352. border-right:0px;
  8353. border-radius:0px;
  8354. border-bottom-right-radius:0px;
  8355. border-bottom-left-radius:0px;
  8356. filter:drop-shadow(none);
  8357. transition:none;
  8358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:18px;
  8362. }
  8363. #u6931 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:774px;
  8367. top:672px;
  8368. width:73px;
  8369. height:25px;
  8370. display:flex;
  8371. transition:none;
  8372. transform-origin:50% 50%;
  8373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. font-size:18px;
  8377. }
  8378. #u6931 .text {
  8379. position:absolute;
  8380. align-self:center;
  8381. padding:0px 0px 0px 0px;
  8382. box-sizing:border-box;
  8383. width:100%;
  8384. }
  8385. #u6931_text {
  8386. border-width:0px;
  8387. white-space:nowrap;
  8388. text-transform:none;
  8389. }
  8390. #u6932_div {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:241px;
  8396. height:17px;
  8397. background:inherit;
  8398. background-color:rgba(255, 255, 255, 0);
  8399. border-left:0px;
  8400. border-top:0px;
  8401. border-right:0px;
  8402. border-radius:0px;
  8403. border-bottom-right-radius:0px;
  8404. border-bottom-left-radius:0px;
  8405. filter:drop-shadow(none);
  8406. transition:none;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:12px;
  8411. color:#7F7F7F;
  8412. }
  8413. #u6932 {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:774px;
  8417. top:702px;
  8418. width:241px;
  8419. height:17px;
  8420. display:flex;
  8421. transition:none;
  8422. transform-origin:50% 50%;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:12px;
  8427. color:#7F7F7F;
  8428. }
  8429. #u6932 .text {
  8430. position:absolute;
  8431. align-self:center;
  8432. padding:0px 0px 0px 0px;
  8433. box-sizing:border-box;
  8434. width:100%;
  8435. }
  8436. #u6932_text {
  8437. border-width:0px;
  8438. white-space:nowrap;
  8439. text-transform:none;
  8440. }
  8441. #u6933 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:0px;
  8447. height:0px;
  8448. }
  8449. #u6934_div {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:240px;
  8455. height:80px;
  8456. background:inherit;
  8457. background-color:rgba(242, 242, 242, 1);
  8458. border-radius:0px;
  8459. filter:drop-shadow(none);
  8460. transition:none;
  8461. }
  8462. #u6934 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:153px;
  8466. top:656px;
  8467. width:240px;
  8468. height:80px;
  8469. display:flex;
  8470. transition:none;
  8471. transform-origin:50% 50%;
  8472. }
  8473. #u6934 .text {
  8474. position:absolute;
  8475. align-self:center;
  8476. padding:2px 2px 2px 2px;
  8477. box-sizing:border-box;
  8478. width:100%;
  8479. }
  8480. #u6934_text {
  8481. border-width:0px;
  8482. word-wrap:break-word;
  8483. text-transform:none;
  8484. visibility:hidden;
  8485. }
  8486. #u6935 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:169px;
  8490. top:669px;
  8491. width:50px;
  8492. height:53px;
  8493. display:flex;
  8494. transition:none;
  8495. }
  8496. #u6935 .text {
  8497. position:absolute;
  8498. align-self:center;
  8499. padding:2px 2px 2px 2px;
  8500. box-sizing:border-box;
  8501. width:100%;
  8502. }
  8503. #u6935_img {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:50px;
  8509. height:53px;
  8510. }
  8511. #u6935_text {
  8512. border-width:0px;
  8513. word-wrap:break-word;
  8514. text-transform:none;
  8515. visibility:hidden;
  8516. }
  8517. #u6936 {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:0px;
  8521. top:0px;
  8522. width:0px;
  8523. height:0px;
  8524. }
  8525. #u6937_div {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:91px;
  8531. height:25px;
  8532. background:inherit;
  8533. background-color:rgba(255, 255, 255, 0);
  8534. border-left:0px;
  8535. border-top:0px;
  8536. border-right:0px;
  8537. border-radius:0px;
  8538. border-bottom-right-radius:0px;
  8539. border-bottom-left-radius:0px;
  8540. filter:drop-shadow(none);
  8541. transition:none;
  8542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8543. font-weight:400;
  8544. font-style:normal;
  8545. font-size:18px;
  8546. }
  8547. #u6937 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:234px;
  8551. top:672px;
  8552. width:91px;
  8553. height:25px;
  8554. display:flex;
  8555. transition:none;
  8556. transform-origin:50% 50%;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:18px;
  8561. }
  8562. #u6937 .text {
  8563. position:absolute;
  8564. align-self:center;
  8565. padding:0px 0px 0px 0px;
  8566. box-sizing:border-box;
  8567. width:100%;
  8568. }
  8569. #u6937_text {
  8570. border-width:0px;
  8571. white-space:nowrap;
  8572. text-transform:none;
  8573. }
  8574. #u6938_div {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:0px;
  8578. top:0px;
  8579. width:145px;
  8580. height:17px;
  8581. background:inherit;
  8582. background-color:rgba(255, 255, 255, 0);
  8583. border-left:0px;
  8584. border-top:0px;
  8585. border-right:0px;
  8586. border-radius:0px;
  8587. border-bottom-right-radius:0px;
  8588. border-bottom-left-radius:0px;
  8589. filter:drop-shadow(none);
  8590. transition:none;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:12px;
  8595. color:#7F7F7F;
  8596. }
  8597. #u6938 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:234px;
  8601. top:702px;
  8602. width:145px;
  8603. height:17px;
  8604. display:flex;
  8605. transition:none;
  8606. transform-origin:50% 50%;
  8607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8608. font-weight:400;
  8609. font-style:normal;
  8610. font-size:12px;
  8611. color:#7F7F7F;
  8612. }
  8613. #u6938 .text {
  8614. position:absolute;
  8615. align-self:center;
  8616. padding:0px 0px 0px 0px;
  8617. box-sizing:border-box;
  8618. width:100%;
  8619. }
  8620. #u6938_text {
  8621. border-width:0px;
  8622. white-space:nowrap;
  8623. text-transform:none;
  8624. }
  8625. #u6939 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:0px;
  8630. width:0px;
  8631. height:0px;
  8632. }
  8633. #u6940_div {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:0px;
  8637. top:0px;
  8638. width:240px;
  8639. height:80px;
  8640. background:inherit;
  8641. background-color:rgba(242, 242, 242, 1);
  8642. border-radius:0px;
  8643. filter:drop-shadow(none);
  8644. transition:none;
  8645. }
  8646. #u6940 {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:153px;
  8650. top:856px;
  8651. width:240px;
  8652. height:80px;
  8653. display:flex;
  8654. transition:none;
  8655. transform-origin:50% 50%;
  8656. }
  8657. #u6940 .text {
  8658. position:absolute;
  8659. align-self:center;
  8660. padding:2px 2px 2px 2px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u6940_text {
  8665. border-width:0px;
  8666. word-wrap:break-word;
  8667. text-transform:none;
  8668. visibility:hidden;
  8669. }
  8670. #u6941 {
  8671. border-width:0px;
  8672. position:absolute;
  8673. left:169px;
  8674. top:869px;
  8675. width:50px;
  8676. height:53px;
  8677. display:flex;
  8678. transition:none;
  8679. }
  8680. #u6941 .text {
  8681. position:absolute;
  8682. align-self:center;
  8683. padding:2px 2px 2px 2px;
  8684. box-sizing:border-box;
  8685. width:100%;
  8686. }
  8687. #u6941_img {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:0px;
  8691. top:0px;
  8692. width:50px;
  8693. height:53px;
  8694. }
  8695. #u6941_text {
  8696. border-width:0px;
  8697. word-wrap:break-word;
  8698. text-transform:none;
  8699. visibility:hidden;
  8700. }
  8701. #u6942 {
  8702. border-width:0px;
  8703. position:absolute;
  8704. left:0px;
  8705. top:0px;
  8706. width:0px;
  8707. height:0px;
  8708. }
  8709. #u6943_div {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:73px;
  8715. height:25px;
  8716. background:inherit;
  8717. background-color:rgba(255, 255, 255, 0);
  8718. border-left:0px;
  8719. border-top:0px;
  8720. border-right:0px;
  8721. border-radius:0px;
  8722. border-bottom-right-radius:0px;
  8723. border-bottom-left-radius:0px;
  8724. filter:drop-shadow(none);
  8725. transition:none;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:18px;
  8730. }
  8731. #u6943 {
  8732. border-width:0px;
  8733. position:absolute;
  8734. left:234px;
  8735. top:872px;
  8736. width:73px;
  8737. height:25px;
  8738. display:flex;
  8739. transition:none;
  8740. transform-origin:50% 50%;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:18px;
  8745. }
  8746. #u6943 .text {
  8747. position:absolute;
  8748. align-self:center;
  8749. padding:0px 0px 0px 0px;
  8750. box-sizing:border-box;
  8751. width:100%;
  8752. }
  8753. #u6943_text {
  8754. border-width:0px;
  8755. white-space:nowrap;
  8756. text-transform:none;
  8757. }
  8758. #u6944_div {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:0px;
  8762. top:0px;
  8763. width:181px;
  8764. height:17px;
  8765. background:inherit;
  8766. background-color:rgba(255, 255, 255, 0);
  8767. border-left:0px;
  8768. border-top:0px;
  8769. border-right:0px;
  8770. border-radius:0px;
  8771. border-bottom-right-radius:0px;
  8772. border-bottom-left-radius:0px;
  8773. filter:drop-shadow(none);
  8774. transition:none;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:12px;
  8779. color:#7F7F7F;
  8780. }
  8781. #u6944 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:234px;
  8785. top:902px;
  8786. width:181px;
  8787. height:17px;
  8788. display:flex;
  8789. transition:none;
  8790. transform-origin:50% 50%;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:12px;
  8795. color:#7F7F7F;
  8796. }
  8797. #u6944 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:0px 0px 0px 0px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u6944_text {
  8805. border-width:0px;
  8806. white-space:nowrap;
  8807. text-transform:none;
  8808. }
  8809. #u6945 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:0px;
  8815. height:0px;
  8816. }
  8817. #u6946_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:240px;
  8823. height:80px;
  8824. background:inherit;
  8825. background-color:rgba(242, 242, 242, 1);
  8826. border-radius:0px;
  8827. filter:drop-shadow(none);
  8828. transition:none;
  8829. }
  8830. #u6946 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:964px;
  8834. top:956px;
  8835. width:240px;
  8836. height:80px;
  8837. display:flex;
  8838. transition:none;
  8839. transform-origin:50% 50%;
  8840. }
  8841. #u6946 .text {
  8842. position:absolute;
  8843. align-self:center;
  8844. padding:2px 2px 2px 2px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u6946_text {
  8849. border-width:0px;
  8850. word-wrap:break-word;
  8851. text-transform:none;
  8852. visibility:hidden;
  8853. }
  8854. #u6947 {
  8855. border-width:0px;
  8856. position:absolute;
  8857. left:980px;
  8858. top:969px;
  8859. width:50px;
  8860. height:53px;
  8861. display:flex;
  8862. transition:none;
  8863. }
  8864. #u6947 .text {
  8865. position:absolute;
  8866. align-self:center;
  8867. padding:2px 2px 2px 2px;
  8868. box-sizing:border-box;
  8869. width:100%;
  8870. }
  8871. #u6947_img {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:50px;
  8877. height:53px;
  8878. }
  8879. #u6947_text {
  8880. border-width:0px;
  8881. word-wrap:break-word;
  8882. text-transform:none;
  8883. visibility:hidden;
  8884. }
  8885. #u6948 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:0px;
  8891. height:0px;
  8892. }
  8893. #u6949_div {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:109px;
  8899. height:25px;
  8900. background:inherit;
  8901. background-color:rgba(255, 255, 255, 0);
  8902. border-left:0px;
  8903. border-top:0px;
  8904. border-right:0px;
  8905. border-radius:0px;
  8906. border-bottom-right-radius:0px;
  8907. border-bottom-left-radius:0px;
  8908. filter:drop-shadow(none);
  8909. transition:none;
  8910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8911. font-weight:400;
  8912. font-style:normal;
  8913. font-size:18px;
  8914. }
  8915. #u6949 {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:1045px;
  8919. top:972px;
  8920. width:109px;
  8921. height:25px;
  8922. display:flex;
  8923. transition:none;
  8924. transform-origin:50% 50%;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:18px;
  8929. }
  8930. #u6949 .text {
  8931. position:absolute;
  8932. align-self:center;
  8933. padding:0px 0px 0px 0px;
  8934. box-sizing:border-box;
  8935. width:100%;
  8936. }
  8937. #u6949_text {
  8938. border-width:0px;
  8939. white-space:nowrap;
  8940. text-transform:none;
  8941. }
  8942. #u6950_div {
  8943. border-width:0px;
  8944. position:absolute;
  8945. left:0px;
  8946. top:0px;
  8947. width:211px;
  8948. height:17px;
  8949. background:inherit;
  8950. background-color:rgba(255, 255, 255, 0);
  8951. border-left:0px;
  8952. border-top:0px;
  8953. border-right:0px;
  8954. border-radius:0px;
  8955. border-bottom-right-radius:0px;
  8956. border-bottom-left-radius:0px;
  8957. filter:drop-shadow(none);
  8958. transition:none;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:12px;
  8963. color:#7F7F7F;
  8964. }
  8965. #u6950 {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:1045px;
  8969. top:1002px;
  8970. width:211px;
  8971. height:17px;
  8972. display:flex;
  8973. transition:none;
  8974. transform-origin:50% 50%;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:12px;
  8979. color:#7F7F7F;
  8980. }
  8981. #u6950 .text {
  8982. position:absolute;
  8983. align-self:center;
  8984. padding:0px 0px 0px 0px;
  8985. box-sizing:border-box;
  8986. width:100%;
  8987. }
  8988. #u6950_text {
  8989. border-width:0px;
  8990. white-space:nowrap;
  8991. text-transform:none;
  8992. }
  8993. #u6951 {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:0px;
  8999. height:0px;
  9000. }
  9001. #u6952_div {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:240px;
  9007. height:80px;
  9008. background:inherit;
  9009. background-color:rgba(242, 242, 242, 1);
  9010. border-radius:0px;
  9011. filter:drop-shadow(none);
  9012. transition:none;
  9013. }
  9014. #u6952 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:1235px;
  9018. top:956px;
  9019. width:240px;
  9020. height:80px;
  9021. display:flex;
  9022. transition:none;
  9023. transform-origin:50% 50%;
  9024. }
  9025. #u6952 .text {
  9026. position:absolute;
  9027. align-self:center;
  9028. padding:2px 2px 2px 2px;
  9029. box-sizing:border-box;
  9030. width:100%;
  9031. }
  9032. #u6952_text {
  9033. border-width:0px;
  9034. word-wrap:break-word;
  9035. text-transform:none;
  9036. visibility:hidden;
  9037. }
  9038. #u6953 {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:1251px;
  9042. top:969px;
  9043. width:50px;
  9044. height:53px;
  9045. display:flex;
  9046. transition:none;
  9047. }
  9048. #u6953 .text {
  9049. position:absolute;
  9050. align-self:center;
  9051. padding:2px 2px 2px 2px;
  9052. box-sizing:border-box;
  9053. width:100%;
  9054. }
  9055. #u6953_img {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:50px;
  9061. height:53px;
  9062. }
  9063. #u6953_text {
  9064. border-width:0px;
  9065. word-wrap:break-word;
  9066. text-transform:none;
  9067. visibility:hidden;
  9068. }
  9069. #u6954 {
  9070. border-width:0px;
  9071. position:absolute;
  9072. left:0px;
  9073. top:0px;
  9074. width:0px;
  9075. height:0px;
  9076. }
  9077. #u6955_div {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:0px;
  9081. top:0px;
  9082. width:145px;
  9083. height:25px;
  9084. background:inherit;
  9085. background-color:rgba(255, 255, 255, 0);
  9086. border-left:0px;
  9087. border-top:0px;
  9088. border-right:0px;
  9089. border-radius:0px;
  9090. border-bottom-right-radius:0px;
  9091. border-bottom-left-radius:0px;
  9092. filter:drop-shadow(none);
  9093. transition:none;
  9094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9095. font-weight:400;
  9096. font-style:normal;
  9097. font-size:18px;
  9098. }
  9099. #u6955 {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:1316px;
  9103. top:972px;
  9104. width:145px;
  9105. height:25px;
  9106. display:flex;
  9107. transition:none;
  9108. transform-origin:50% 50%;
  9109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. font-size:18px;
  9113. }
  9114. #u6955 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:0px 0px 0px 0px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u6955_text {
  9122. border-width:0px;
  9123. white-space:nowrap;
  9124. text-transform:none;
  9125. }
  9126. #u6956_div {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:0px;
  9130. top:0px;
  9131. width:205px;
  9132. height:17px;
  9133. background:inherit;
  9134. background-color:rgba(255, 255, 255, 0);
  9135. border-left:0px;
  9136. border-top:0px;
  9137. border-right:0px;
  9138. border-radius:0px;
  9139. border-bottom-right-radius:0px;
  9140. border-bottom-left-radius:0px;
  9141. filter:drop-shadow(none);
  9142. transition:none;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:12px;
  9147. color:#7F7F7F;
  9148. }
  9149. #u6956 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:1316px;
  9153. top:1002px;
  9154. width:205px;
  9155. height:17px;
  9156. display:flex;
  9157. transition:none;
  9158. transform-origin:50% 50%;
  9159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9160. font-weight:400;
  9161. font-style:normal;
  9162. font-size:12px;
  9163. color:#7F7F7F;
  9164. }
  9165. #u6956 .text {
  9166. position:absolute;
  9167. align-self:center;
  9168. padding:0px 0px 0px 0px;
  9169. box-sizing:border-box;
  9170. width:100%;
  9171. }
  9172. #u6956_text {
  9173. border-width:0px;
  9174. white-space:nowrap;
  9175. text-transform:none;
  9176. }
  9177. #u6957 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:0px;
  9183. height:0px;
  9184. }
  9185. #u6958_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:240px;
  9191. height:80px;
  9192. background:inherit;
  9193. background-color:rgba(242, 242, 242, 1);
  9194. border-radius:0px;
  9195. filter:drop-shadow(none);
  9196. transition:none;
  9197. }
  9198. #u6958 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:694px;
  9202. top:856px;
  9203. width:240px;
  9204. height:80px;
  9205. display:flex;
  9206. transition:none;
  9207. transform-origin:50% 50%;
  9208. }
  9209. #u6958 .text {
  9210. position:absolute;
  9211. align-self:center;
  9212. padding:2px 2px 2px 2px;
  9213. box-sizing:border-box;
  9214. width:100%;
  9215. }
  9216. #u6958_text {
  9217. border-width:0px;
  9218. word-wrap:break-word;
  9219. text-transform:none;
  9220. visibility:hidden;
  9221. }
  9222. #u6959 {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:710px;
  9226. top:869px;
  9227. width:50px;
  9228. height:53px;
  9229. display:flex;
  9230. transition:none;
  9231. }
  9232. #u6959 .text {
  9233. position:absolute;
  9234. align-self:center;
  9235. padding:2px 2px 2px 2px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u6959_img {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:0px;
  9243. top:0px;
  9244. width:50px;
  9245. height:53px;
  9246. }
  9247. #u6959_text {
  9248. border-width:0px;
  9249. word-wrap:break-word;
  9250. text-transform:none;
  9251. visibility:hidden;
  9252. }
  9253. #u6960 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:0px;
  9257. top:0px;
  9258. width:0px;
  9259. height:0px;
  9260. }
  9261. #u6961_div {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:73px;
  9267. height:25px;
  9268. background:inherit;
  9269. background-color:rgba(255, 255, 255, 0);
  9270. border-left:0px;
  9271. border-top:0px;
  9272. border-right:0px;
  9273. border-radius:0px;
  9274. border-bottom-right-radius:0px;
  9275. border-bottom-left-radius:0px;
  9276. filter:drop-shadow(none);
  9277. transition:none;
  9278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9279. font-weight:400;
  9280. font-style:normal;
  9281. font-size:18px;
  9282. }
  9283. #u6961 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:775px;
  9287. top:872px;
  9288. width:73px;
  9289. height:25px;
  9290. display:flex;
  9291. transition:none;
  9292. transform-origin:50% 50%;
  9293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9294. font-weight:400;
  9295. font-style:normal;
  9296. font-size:18px;
  9297. }
  9298. #u6961 .text {
  9299. position:absolute;
  9300. align-self:center;
  9301. padding:0px 0px 0px 0px;
  9302. box-sizing:border-box;
  9303. width:100%;
  9304. }
  9305. #u6961_text {
  9306. border-width:0px;
  9307. white-space:nowrap;
  9308. text-transform:none;
  9309. }
  9310. #u6962_div {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:145px;
  9316. height:17px;
  9317. background:inherit;
  9318. background-color:rgba(255, 255, 255, 0);
  9319. border-left:0px;
  9320. border-top:0px;
  9321. border-right:0px;
  9322. border-radius:0px;
  9323. border-bottom-right-radius:0px;
  9324. border-bottom-left-radius:0px;
  9325. filter:drop-shadow(none);
  9326. transition:none;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:12px;
  9331. color:#7F7F7F;
  9332. }
  9333. #u6962 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:775px;
  9337. top:902px;
  9338. width:145px;
  9339. height:17px;
  9340. display:flex;
  9341. transition:none;
  9342. transform-origin:50% 50%;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:12px;
  9347. color:#7F7F7F;
  9348. }
  9349. #u6962 .text {
  9350. position:absolute;
  9351. align-self:center;
  9352. padding:0px 0px 0px 0px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u6962_text {
  9357. border-width:0px;
  9358. white-space:nowrap;
  9359. text-transform:none;
  9360. }
  9361. #u6963 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:0px;
  9367. height:0px;
  9368. }
  9369. #u6964_div {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:240px;
  9375. height:80px;
  9376. background:inherit;
  9377. background-color:rgba(242, 242, 242, 1);
  9378. border-radius:0px;
  9379. filter:drop-shadow(none);
  9380. transition:none;
  9381. }
  9382. #u6964 {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:1234px;
  9386. top:856px;
  9387. width:240px;
  9388. height:80px;
  9389. display:flex;
  9390. transition:none;
  9391. transform-origin:50% 50%;
  9392. }
  9393. #u6964 .text {
  9394. position:absolute;
  9395. align-self:center;
  9396. padding:2px 2px 2px 2px;
  9397. box-sizing:border-box;
  9398. width:100%;
  9399. }
  9400. #u6964_text {
  9401. border-width:0px;
  9402. word-wrap:break-word;
  9403. text-transform:none;
  9404. visibility:hidden;
  9405. }
  9406. #u6965 {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:1250px;
  9410. top:869px;
  9411. width:50px;
  9412. height:53px;
  9413. display:flex;
  9414. transition:none;
  9415. }
  9416. #u6965 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 2px 2px 2px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u6965_img {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:50px;
  9429. height:53px;
  9430. }
  9431. #u6965_text {
  9432. border-width:0px;
  9433. word-wrap:break-word;
  9434. text-transform:none;
  9435. visibility:hidden;
  9436. }
  9437. #u6966 {
  9438. border-width:0px;
  9439. position:absolute;
  9440. left:0px;
  9441. top:0px;
  9442. width:0px;
  9443. height:0px;
  9444. }
  9445. #u6967_div {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:0px;
  9449. top:0px;
  9450. width:73px;
  9451. height:25px;
  9452. background:inherit;
  9453. background-color:rgba(255, 255, 255, 0);
  9454. border-left:0px;
  9455. border-top:0px;
  9456. border-right:0px;
  9457. border-radius:0px;
  9458. border-bottom-right-radius:0px;
  9459. border-bottom-left-radius:0px;
  9460. filter:drop-shadow(none);
  9461. transition:none;
  9462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9463. font-weight:400;
  9464. font-style:normal;
  9465. font-size:18px;
  9466. }
  9467. #u6967 {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:1315px;
  9471. top:872px;
  9472. width:73px;
  9473. height:25px;
  9474. display:flex;
  9475. transition:none;
  9476. transform-origin:50% 50%;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:18px;
  9481. }
  9482. #u6967 .text {
  9483. position:absolute;
  9484. align-self:center;
  9485. padding:0px 0px 0px 0px;
  9486. box-sizing:border-box;
  9487. width:100%;
  9488. }
  9489. #u6967_text {
  9490. border-width:0px;
  9491. white-space:nowrap;
  9492. text-transform:none;
  9493. }
  9494. #u6968_div {
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:0px;
  9498. top:0px;
  9499. width:193px;
  9500. height:17px;
  9501. background:inherit;
  9502. background-color:rgba(255, 255, 255, 0);
  9503. border-left:0px;
  9504. border-top:0px;
  9505. border-right:0px;
  9506. border-radius:0px;
  9507. border-bottom-right-radius:0px;
  9508. border-bottom-left-radius:0px;
  9509. filter:drop-shadow(none);
  9510. transition:none;
  9511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:12px;
  9515. color:#7F7F7F;
  9516. }
  9517. #u6968 {
  9518. border-width:0px;
  9519. position:absolute;
  9520. left:1315px;
  9521. top:902px;
  9522. width:193px;
  9523. height:17px;
  9524. display:flex;
  9525. transition:none;
  9526. transform-origin:50% 50%;
  9527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9528. font-weight:400;
  9529. font-style:normal;
  9530. font-size:12px;
  9531. color:#7F7F7F;
  9532. }
  9533. #u6968 .text {
  9534. position:absolute;
  9535. align-self:center;
  9536. padding:0px 0px 0px 0px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u6968_text {
  9541. border-width:0px;
  9542. white-space:nowrap;
  9543. text-transform:none;
  9544. }
  9545. #u6969 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:0px;
  9551. height:0px;
  9552. }
  9553. #u6970_div {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:0px;
  9558. width:240px;
  9559. height:80px;
  9560. background:inherit;
  9561. background-color:rgba(242, 242, 242, 1);
  9562. border-radius:0px;
  9563. filter:drop-shadow(none);
  9564. transition:none;
  9565. }
  9566. #u6970 {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:423px;
  9570. top:1052px;
  9571. width:240px;
  9572. height:80px;
  9573. display:flex;
  9574. transition:none;
  9575. transform-origin:50% 50%;
  9576. }
  9577. #u6970 .text {
  9578. position:absolute;
  9579. align-self:center;
  9580. padding:2px 2px 2px 2px;
  9581. box-sizing:border-box;
  9582. width:100%;
  9583. }
  9584. #u6970_text {
  9585. border-width:0px;
  9586. word-wrap:break-word;
  9587. text-transform:none;
  9588. visibility:hidden;
  9589. }
  9590. #u6971 {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:439px;
  9594. top:1065px;
  9595. width:50px;
  9596. height:53px;
  9597. display:flex;
  9598. transition:none;
  9599. }
  9600. #u6971 .text {
  9601. position:absolute;
  9602. align-self:center;
  9603. padding:2px 2px 2px 2px;
  9604. box-sizing:border-box;
  9605. width:100%;
  9606. }
  9607. #u6971_img {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:0px;
  9611. top:0px;
  9612. width:50px;
  9613. height:53px;
  9614. }
  9615. #u6971_text {
  9616. border-width:0px;
  9617. word-wrap:break-word;
  9618. text-transform:none;
  9619. visibility:hidden;
  9620. }
  9621. #u6972 {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:0px;
  9625. top:0px;
  9626. width:0px;
  9627. height:0px;
  9628. }
  9629. #u6973_div {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:91px;
  9635. height:25px;
  9636. background:inherit;
  9637. background-color:rgba(255, 255, 255, 0);
  9638. border-left:0px;
  9639. border-top:0px;
  9640. border-right:0px;
  9641. border-radius:0px;
  9642. border-bottom-right-radius:0px;
  9643. border-bottom-left-radius:0px;
  9644. filter:drop-shadow(none);
  9645. transition:none;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:18px;
  9650. }
  9651. #u6973 {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:504px;
  9655. top:1068px;
  9656. width:91px;
  9657. height:25px;
  9658. display:flex;
  9659. transition:none;
  9660. transform-origin:50% 50%;
  9661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:18px;
  9665. }
  9666. #u6973 .text {
  9667. position:absolute;
  9668. align-self:center;
  9669. padding:0px 0px 0px 0px;
  9670. box-sizing:border-box;
  9671. width:100%;
  9672. }
  9673. #u6973_text {
  9674. border-width:0px;
  9675. white-space:nowrap;
  9676. text-transform:none;
  9677. }
  9678. #u6974_div {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:0px;
  9682. top:0px;
  9683. width:109px;
  9684. height:17px;
  9685. background:inherit;
  9686. background-color:rgba(255, 255, 255, 0);
  9687. border-left:0px;
  9688. border-top:0px;
  9689. border-right:0px;
  9690. border-radius:0px;
  9691. border-bottom-right-radius:0px;
  9692. border-bottom-left-radius:0px;
  9693. filter:drop-shadow(none);
  9694. transition:none;
  9695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9696. font-weight:400;
  9697. font-style:normal;
  9698. font-size:12px;
  9699. color:#7F7F7F;
  9700. }
  9701. #u6974 {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:504px;
  9705. top:1098px;
  9706. width:109px;
  9707. height:17px;
  9708. display:flex;
  9709. transition:none;
  9710. transform-origin:50% 50%;
  9711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9712. font-weight:400;
  9713. font-style:normal;
  9714. font-size:12px;
  9715. color:#7F7F7F;
  9716. }
  9717. #u6974 .text {
  9718. position:absolute;
  9719. align-self:center;
  9720. padding:0px 0px 0px 0px;
  9721. box-sizing:border-box;
  9722. width:100%;
  9723. }
  9724. #u6974_text {
  9725. border-width:0px;
  9726. white-space:nowrap;
  9727. text-transform:none;
  9728. }
  9729. #u6975 {
  9730. border-width:0px;
  9731. position:absolute;
  9732. left:0px;
  9733. top:0px;
  9734. width:0px;
  9735. height:0px;
  9736. }
  9737. #u6976_div {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:240px;
  9743. height:80px;
  9744. background:inherit;
  9745. background-color:rgba(242, 242, 242, 1);
  9746. border-radius:0px;
  9747. filter:drop-shadow(none);
  9748. transition:none;
  9749. }
  9750. #u6976 {
  9751. border-width:0px;
  9752. position:absolute;
  9753. left:694px;
  9754. top:1052px;
  9755. width:240px;
  9756. height:80px;
  9757. display:flex;
  9758. transition:none;
  9759. transform-origin:50% 50%;
  9760. }
  9761. #u6976 .text {
  9762. position:absolute;
  9763. align-self:center;
  9764. padding:2px 2px 2px 2px;
  9765. box-sizing:border-box;
  9766. width:100%;
  9767. }
  9768. #u6976_text {
  9769. border-width:0px;
  9770. word-wrap:break-word;
  9771. text-transform:none;
  9772. visibility:hidden;
  9773. }
  9774. #u6977 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:710px;
  9778. top:1065px;
  9779. width:50px;
  9780. height:53px;
  9781. display:flex;
  9782. transition:none;
  9783. }
  9784. #u6977 .text {
  9785. position:absolute;
  9786. align-self:center;
  9787. padding:2px 2px 2px 2px;
  9788. box-sizing:border-box;
  9789. width:100%;
  9790. }
  9791. #u6977_img {
  9792. border-width:0px;
  9793. position:absolute;
  9794. left:0px;
  9795. top:0px;
  9796. width:50px;
  9797. height:53px;
  9798. }
  9799. #u6977_text {
  9800. border-width:0px;
  9801. word-wrap:break-word;
  9802. text-transform:none;
  9803. visibility:hidden;
  9804. }
  9805. #u6978 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:0px;
  9809. top:0px;
  9810. width:0px;
  9811. height:0px;
  9812. }
  9813. #u6979_div {
  9814. border-width:0px;
  9815. position:absolute;
  9816. left:0px;
  9817. top:0px;
  9818. width:73px;
  9819. height:25px;
  9820. background:inherit;
  9821. background-color:rgba(255, 255, 255, 0);
  9822. border-left:0px;
  9823. border-top:0px;
  9824. border-right:0px;
  9825. border-radius:0px;
  9826. border-bottom-right-radius:0px;
  9827. border-bottom-left-radius:0px;
  9828. filter:drop-shadow(none);
  9829. transition:none;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. font-size:18px;
  9834. }
  9835. #u6979 {
  9836. border-width:0px;
  9837. position:absolute;
  9838. left:775px;
  9839. top:1068px;
  9840. width:73px;
  9841. height:25px;
  9842. display:flex;
  9843. transition:none;
  9844. transform-origin:50% 50%;
  9845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9846. font-weight:400;
  9847. font-style:normal;
  9848. font-size:18px;
  9849. }
  9850. #u6979 .text {
  9851. position:absolute;
  9852. align-self:center;
  9853. padding:0px 0px 0px 0px;
  9854. box-sizing:border-box;
  9855. width:100%;
  9856. }
  9857. #u6979_text {
  9858. border-width:0px;
  9859. white-space:nowrap;
  9860. text-transform:none;
  9861. }
  9862. #u6980_div {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:97px;
  9868. height:17px;
  9869. background:inherit;
  9870. background-color:rgba(255, 255, 255, 0);
  9871. border-left:0px;
  9872. border-top:0px;
  9873. border-right:0px;
  9874. border-radius:0px;
  9875. border-bottom-right-radius:0px;
  9876. border-bottom-left-radius:0px;
  9877. filter:drop-shadow(none);
  9878. transition:none;
  9879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9880. font-weight:400;
  9881. font-style:normal;
  9882. font-size:12px;
  9883. color:#7F7F7F;
  9884. }
  9885. #u6980 {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:775px;
  9889. top:1098px;
  9890. width:97px;
  9891. height:17px;
  9892. display:flex;
  9893. transition:none;
  9894. transform-origin:50% 50%;
  9895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. font-size:12px;
  9899. color:#7F7F7F;
  9900. }
  9901. #u6980 .text {
  9902. position:absolute;
  9903. align-self:center;
  9904. padding:0px 0px 0px 0px;
  9905. box-sizing:border-box;
  9906. width:100%;
  9907. }
  9908. #u6980_text {
  9909. border-width:0px;
  9910. white-space:nowrap;
  9911. text-transform:none;
  9912. }
  9913. #u6981 {
  9914. border-width:0px;
  9915. position:absolute;
  9916. left:0px;
  9917. top:0px;
  9918. width:0px;
  9919. height:0px;
  9920. }
  9921. #u6982_div {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:0px;
  9925. top:0px;
  9926. width:240px;
  9927. height:80px;
  9928. background:inherit;
  9929. background-color:rgba(242, 242, 242, 1);
  9930. border-radius:0px;
  9931. filter:drop-shadow(none);
  9932. transition:none;
  9933. }
  9934. #u6982 {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:964px;
  9938. top:1052px;
  9939. width:240px;
  9940. height:80px;
  9941. display:flex;
  9942. transition:none;
  9943. transform-origin:50% 50%;
  9944. }
  9945. #u6982 .text {
  9946. position:absolute;
  9947. align-self:center;
  9948. padding:2px 2px 2px 2px;
  9949. box-sizing:border-box;
  9950. width:100%;
  9951. }
  9952. #u6982_text {
  9953. border-width:0px;
  9954. word-wrap:break-word;
  9955. text-transform:none;
  9956. visibility:hidden;
  9957. }
  9958. #u6983 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:980px;
  9962. top:1065px;
  9963. width:50px;
  9964. height:53px;
  9965. display:flex;
  9966. transition:none;
  9967. }
  9968. #u6983 .text {
  9969. position:absolute;
  9970. align-self:center;
  9971. padding:2px 2px 2px 2px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u6983_img {
  9976. border-width:0px;
  9977. position:absolute;
  9978. left:0px;
  9979. top:0px;
  9980. width:50px;
  9981. height:53px;
  9982. }
  9983. #u6983_text {
  9984. border-width:0px;
  9985. word-wrap:break-word;
  9986. text-transform:none;
  9987. visibility:hidden;
  9988. }
  9989. #u6984 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:0px;
  9993. top:0px;
  9994. width:0px;
  9995. height:0px;
  9996. }
  9997. #u6985_div {
  9998. border-width:0px;
  9999. position:absolute;
  10000. left:0px;
  10001. top:0px;
  10002. width:73px;
  10003. height:25px;
  10004. background:inherit;
  10005. background-color:rgba(255, 255, 255, 0);
  10006. border-left:0px;
  10007. border-top:0px;
  10008. border-right:0px;
  10009. border-radius:0px;
  10010. border-bottom-right-radius:0px;
  10011. border-bottom-left-radius:0px;
  10012. filter:drop-shadow(none);
  10013. transition:none;
  10014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10015. font-weight:400;
  10016. font-style:normal;
  10017. font-size:18px;
  10018. }
  10019. #u6985 {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:1045px;
  10023. top:1068px;
  10024. width:73px;
  10025. height:25px;
  10026. display:flex;
  10027. transition:none;
  10028. transform-origin:50% 50%;
  10029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10030. font-weight:400;
  10031. font-style:normal;
  10032. font-size:18px;
  10033. }
  10034. #u6985 .text {
  10035. position:absolute;
  10036. align-self:center;
  10037. padding:0px 0px 0px 0px;
  10038. box-sizing:border-box;
  10039. width:100%;
  10040. }
  10041. #u6985_text {
  10042. border-width:0px;
  10043. white-space:nowrap;
  10044. text-transform:none;
  10045. }
  10046. #u6986_div {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:0px;
  10050. top:0px;
  10051. width:181px;
  10052. height:17px;
  10053. background:inherit;
  10054. background-color:rgba(255, 255, 255, 0);
  10055. border-left:0px;
  10056. border-top:0px;
  10057. border-right:0px;
  10058. border-radius:0px;
  10059. border-bottom-right-radius:0px;
  10060. border-bottom-left-radius:0px;
  10061. filter:drop-shadow(none);
  10062. transition:none;
  10063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10064. font-weight:400;
  10065. font-style:normal;
  10066. font-size:12px;
  10067. color:#7F7F7F;
  10068. }
  10069. #u6986 {
  10070. border-width:0px;
  10071. position:absolute;
  10072. left:1045px;
  10073. top:1098px;
  10074. width:181px;
  10075. height:17px;
  10076. display:flex;
  10077. transition:none;
  10078. transform-origin:50% 50%;
  10079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10080. font-weight:400;
  10081. font-style:normal;
  10082. font-size:12px;
  10083. color:#7F7F7F;
  10084. }
  10085. #u6986 .text {
  10086. position:absolute;
  10087. align-self:center;
  10088. padding:0px 0px 0px 0px;
  10089. box-sizing:border-box;
  10090. width:100%;
  10091. }
  10092. #u6986_text {
  10093. border-width:0px;
  10094. white-space:nowrap;
  10095. text-transform:none;
  10096. }