styles.css 170 KB

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