styles.css 175 KB

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