styles.css 159 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981
  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. #u49927 {
  20. border-width:0px;
  21. position:absolute;
  22. left:1364px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u49928 {
  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. #u49928 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u49928_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u49928_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u49929_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. #u49929 {
  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. #u49929 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u49929_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u49930 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u49931_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. #u49931 {
  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. #u49931 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u49931_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u49932 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u49933 {
  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. #u49933 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u49933_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u49933_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u49934 {
  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. #u49934 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u49934_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u49934_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u49935 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u49936 {
  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. #u49936 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u49936_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u49936_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u49937 {
  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. #u49937 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u49937_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u49937_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u49938 {
  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. #u49938 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u49938_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u49938_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u49939 {
  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. #u49939 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u49939_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u49939_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u49940 {
  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. #u49940 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u49940_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u49940_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u49941_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. #u49941 {
  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. #u49941 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u49941_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u49942 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u49943 {
  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. #u49943 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u49943_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u49943_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u49944_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. #u49944 {
  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. #u49944 .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. #u49944_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u49945 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u49946 {
  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. #u49946 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u49946_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u49946_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u49947_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. #u49947 {
  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. #u49947 .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. #u49947_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u49948_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. #u49948 {
  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. #u49948 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u49948_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u49949 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u49950 {
  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. #u49950 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u49950_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u49950_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u49951_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. #u49951 {
  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. #u49951 .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. #u49951_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u49952 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u49953 {
  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. #u49953 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u49953_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u49953_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u49954_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. #u49954 {
  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. #u49954 .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. #u49954_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u49955_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. #u49955 {
  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. #u49955 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u49955_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u49956_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. #u49956 {
  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. #u49956 .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. #u49956_text {
  889. border-width:0px;
  890. white-space:nowrap;
  891. text-transform:none;
  892. }
  893. #u49957 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u49958 {
  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. #u49958 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u49958_img {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:11px;
  924. height:18px;
  925. }
  926. #u49958_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u49959_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. #u49959 {
  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. #u49959 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 2px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u49959_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u49960 {
  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. #u49960 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:2px 2px 2px 2px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u49960_img {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:40px;
  1000. height:40px;
  1001. }
  1002. #u49960_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. }
  1007. #u49961_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. #u49961 {
  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. #u49961 .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. #u49961_text {
  1054. border-width:0px;
  1055. white-space:nowrap;
  1056. text-transform:none;
  1057. }
  1058. #u49962_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. #u49962 {
  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. #u49962 .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. #u49962_text {
  1107. border-width:0px;
  1108. white-space:nowrap;
  1109. text-transform:none;
  1110. }
  1111. #u49963_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. #u49963 {
  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. #u49963 .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. #u49963_text {
  1160. border-width:0px;
  1161. white-space:nowrap;
  1162. text-transform:none;
  1163. }
  1164. #u49964 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:0px;
  1170. height:0px;
  1171. }
  1172. #u49965_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. #u49965 {
  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. #u49965 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u49965_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u49966_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. #u49966 {
  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. #u49966 .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. #u49966_text {
  1261. border-width:0px;
  1262. white-space:nowrap;
  1263. text-transform:none;
  1264. }
  1265. #u49967_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. #u49967 {
  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. #u49967 .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. #u49967_text {
  1314. border-width:0px;
  1315. white-space:nowrap;
  1316. text-transform:none;
  1317. }
  1318. #u49968 {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:0px;
  1324. height:0px;
  1325. }
  1326. #u49969_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. #u49969 {
  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. #u49969 .text {
  1356. position:absolute;
  1357. align-self:center;
  1358. padding:2px 2px 2px 2px;
  1359. box-sizing:border-box;
  1360. width:100%;
  1361. }
  1362. #u49969_text {
  1363. border-width:0px;
  1364. word-wrap:break-word;
  1365. text-transform:none;
  1366. visibility:hidden;
  1367. }
  1368. #u49970_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. #u49970 {
  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. #u49970 .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. #u49970_text {
  1415. border-width:0px;
  1416. white-space:nowrap;
  1417. text-transform:none;
  1418. }
  1419. #u49971_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. #u49971 {
  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. #u49971 .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. #u49971_text {
  1468. border-width:0px;
  1469. white-space:nowrap;
  1470. text-transform:none;
  1471. }
  1472. #u49972 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:0px;
  1478. height:0px;
  1479. }
  1480. #u49973_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. #u49973 {
  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. #u49973 .text {
  1510. position:absolute;
  1511. align-self:center;
  1512. padding:2px 2px 2px 2px;
  1513. box-sizing:border-box;
  1514. width:100%;
  1515. }
  1516. #u49973_text {
  1517. border-width:0px;
  1518. word-wrap:break-word;
  1519. text-transform:none;
  1520. visibility:hidden;
  1521. }
  1522. #u49974_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. #u49974 {
  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. #u49974 .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. #u49974_text {
  1569. border-width:0px;
  1570. white-space:nowrap;
  1571. text-transform:none;
  1572. }
  1573. #u49975_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. #u49975 {
  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. #u49975 .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. #u49975_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u49976_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:375px;
  1632. height:90px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. border-left:0px;
  1636. border-top:0px;
  1637. border-right:0px;
  1638. border-radius:0px;
  1639. border-bottom-right-radius:0px;
  1640. border-bottom-left-radius:0px;
  1641. filter:drop-shadow(none);
  1642. transition:none;
  1643. }
  1644. #u49976 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:1393px;
  1648. top:636px;
  1649. width:375px;
  1650. height:90px;
  1651. display:flex;
  1652. transition:none;
  1653. transform-origin:50% 50%;
  1654. }
  1655. #u49976 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:2px 2px 2px 2px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u49976_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u49977_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:129px;
  1674. height:60px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 0);
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. filter:drop-shadow(none);
  1684. transition:none;
  1685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:16px;
  1689. line-height:30px;
  1690. }
  1691. #u49977 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:1470px;
  1695. top:651px;
  1696. width:129px;
  1697. height:60px;
  1698. display:flex;
  1699. transition:none;
  1700. transform-origin:50% 50%;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:16px;
  1705. line-height:30px;
  1706. }
  1707. #u49977 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u49977_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u49978_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:68px;
  1725. height:30px;
  1726. background:inherit;
  1727. background-color:rgba(242, 242, 242, 1);
  1728. border-radius:40px;
  1729. filter:drop-shadow(none);
  1730. transition:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. color:#7F7F7F;
  1736. }
  1737. #u49978 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:1678px;
  1741. top:136px;
  1742. width:68px;
  1743. height:30px;
  1744. display:flex;
  1745. transition:none;
  1746. transform-origin:50% 50%;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#7F7F7F;
  1752. }
  1753. #u49978 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u49978_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u49979 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:1822px;
  1769. top:0px;
  1770. width:433px;
  1771. height:865px;
  1772. }
  1773. #u49980 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:433px;
  1779. height:865px;
  1780. display:flex;
  1781. transition:none;
  1782. }
  1783. #u49980 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 2px 2px 2px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u49980_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:433px;
  1796. height:865px;
  1797. }
  1798. #u49980_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u49981_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:375px;
  1810. height:40px;
  1811. background:inherit;
  1812. background-color:rgba(255, 255, 255, 1);
  1813. box-sizing:border-box;
  1814. border-width:1px;
  1815. border-style:solid;
  1816. border-color:rgba(215, 215, 215, 1);
  1817. border-left:0px;
  1818. border-top:0px;
  1819. border-right:0px;
  1820. border-radius:0px;
  1821. border-bottom-right-radius:0px;
  1822. border-bottom-left-radius:0px;
  1823. filter:drop-shadow(none);
  1824. transition:none;
  1825. }
  1826. #u49981 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:29px;
  1830. top:67px;
  1831. width:375px;
  1832. height:40px;
  1833. display:flex;
  1834. transition:none;
  1835. transform-origin:50% 50%;
  1836. }
  1837. #u49981 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u49981_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u49982 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:0px;
  1856. height:0px;
  1857. }
  1858. #u49983_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:88px;
  1864. height:32px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 1);
  1867. box-sizing:border-box;
  1868. border-width:1px;
  1869. border-style:solid;
  1870. border-color:rgba(242, 242, 242, 1);
  1871. border-radius:33px;
  1872. filter:drop-shadow(none);
  1873. transition:none;
  1874. }
  1875. #u49983 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:309px;
  1879. top:71px;
  1880. width:88px;
  1881. height:32px;
  1882. display:flex;
  1883. transition:none;
  1884. transform-origin:50% 50%;
  1885. }
  1886. #u49983 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u49983_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. visibility:hidden;
  1898. }
  1899. #u49984 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:0px;
  1905. height:0px;
  1906. }
  1907. #u49985 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:372px;
  1911. top:78px;
  1912. width:18px;
  1913. height:18px;
  1914. display:flex;
  1915. transition:none;
  1916. }
  1917. #u49985 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u49985_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:18px;
  1930. height:18px;
  1931. }
  1932. #u49985_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u49986 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:378px;
  1942. top:84px;
  1943. width:6px;
  1944. height:6px;
  1945. display:flex;
  1946. transition:none;
  1947. }
  1948. #u49986 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 2px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u49986_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:6px;
  1961. height:6px;
  1962. }
  1963. #u49986_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. visibility:hidden;
  1968. }
  1969. #u49987 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:0px;
  1975. height:0px;
  1976. }
  1977. #u49988 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:323px;
  1981. top:85px;
  1982. width:5px;
  1983. height:5px;
  1984. display:flex;
  1985. transition:none;
  1986. }
  1987. #u49988 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 2px 2px 2px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u49988_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:5px;
  2000. height:5px;
  2001. }
  2002. #u49988_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. visibility:hidden;
  2007. }
  2008. #u49989 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:339px;
  2012. top:85px;
  2013. width:5px;
  2014. height:5px;
  2015. display:flex;
  2016. transition:none;
  2017. }
  2018. #u49989 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u49989_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:5px;
  2031. height:5px;
  2032. }
  2033. #u49989_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u49990 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:330px;
  2043. top:84px;
  2044. width:7px;
  2045. height:7px;
  2046. display:flex;
  2047. transition:none;
  2048. }
  2049. #u49990 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u49990_img {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:7px;
  2062. height:7px;
  2063. }
  2064. #u49990_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u49991 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:347px;
  2074. top:87px;
  2075. width:18px;
  2076. height:1px;
  2077. display:flex;
  2078. -webkit-transform:rotate(90deg);
  2079. -moz-transform:rotate(90deg);
  2080. -ms-transform:rotate(90deg);
  2081. transform:rotate(90deg);
  2082. transition:none;
  2083. }
  2084. #u49991 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u49991_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:19px;
  2097. height:2px;
  2098. }
  2099. #u49991_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. visibility:hidden;
  2104. }
  2105. #u49992 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:29px;
  2109. top:24px;
  2110. width:375px;
  2111. height:44px;
  2112. display:flex;
  2113. transition:none;
  2114. }
  2115. #u49992 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u49992_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:375px;
  2128. height:44px;
  2129. }
  2130. #u49992_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u49993_div {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:375px;
  2142. height:50px;
  2143. background:inherit;
  2144. background-color:rgba(255, 255, 255, 1);
  2145. box-sizing:border-box;
  2146. border-width:1px;
  2147. border-style:solid;
  2148. border-color:rgba(242, 242, 242, 1);
  2149. border-radius:26px;
  2150. border-top-left-radius:0px;
  2151. border-top-right-radius:0px;
  2152. filter:drop-shadow(none);
  2153. transition:none;
  2154. }
  2155. #u49993 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:29px;
  2159. top:788px;
  2160. width:375px;
  2161. height:50px;
  2162. display:flex;
  2163. transition:none;
  2164. transform-origin:50% 50%;
  2165. }
  2166. #u49993 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u49993_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. visibility:hidden;
  2178. }
  2179. #u49994 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:0px;
  2185. height:0px;
  2186. }
  2187. #u49995 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:69px;
  2191. top:792px;
  2192. width:24px;
  2193. height:24px;
  2194. display:flex;
  2195. transition:none;
  2196. font-size:8px;
  2197. }
  2198. #u49995 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u49995_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:24px;
  2211. height:24px;
  2212. }
  2213. #u49995_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. }
  2218. #u49996_div {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:25px;
  2224. height:17px;
  2225. background:inherit;
  2226. background-color:rgba(255, 255, 255, 0);
  2227. border-radius:0px;
  2228. filter:drop-shadow(none);
  2229. transition:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:12px;
  2234. }
  2235. #u49996 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:69px;
  2239. top:817px;
  2240. width:25px;
  2241. height:17px;
  2242. display:flex;
  2243. transition:none;
  2244. transform-origin:50% 50%;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. }
  2250. #u49996 .text {
  2251. position:absolute;
  2252. align-self:flex-start;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u49996_text {
  2258. border-width:0px;
  2259. white-space:nowrap;
  2260. text-transform:none;
  2261. }
  2262. #u49997 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:0px;
  2268. height:0px;
  2269. }
  2270. #u49998 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:339px;
  2274. top:794px;
  2275. width:24px;
  2276. height:24px;
  2277. display:flex;
  2278. transition:none;
  2279. font-size:8px;
  2280. }
  2281. #u49998 .text {
  2282. position:absolute;
  2283. align-self:center;
  2284. padding:2px 2px 2px 2px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u49998_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:24px;
  2294. height:24px;
  2295. }
  2296. #u49998_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. }
  2301. #u49999_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:25px;
  2307. height:17px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 0);
  2310. border-radius:0px;
  2311. filter:drop-shadow(none);
  2312. transition:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:12px;
  2317. }
  2318. #u49999 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:339px;
  2322. top:819px;
  2323. width:25px;
  2324. height:17px;
  2325. display:flex;
  2326. transition:none;
  2327. transform-origin:50% 50%;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:12px;
  2332. }
  2333. #u49999 .text {
  2334. position:absolute;
  2335. align-self:flex-start;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u49999_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u50000_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:375px;
  2351. height:681px;
  2352. background:inherit;
  2353. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2354. border-radius:0px;
  2355. filter:drop-shadow(none);
  2356. transition:none;
  2357. }
  2358. #u50000 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:29px;
  2362. top:107px;
  2363. width:375px;
  2364. height:681px;
  2365. display:flex;
  2366. transition:none;
  2367. transform-origin:50% 50%;
  2368. }
  2369. #u50000 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u50000_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u50001 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:0px;
  2388. height:0px;
  2389. }
  2390. #u50002 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:251px;
  2394. top:792px;
  2395. width:24px;
  2396. height:24px;
  2397. display:flex;
  2398. transition:none;
  2399. font-size:8px;
  2400. }
  2401. #u50002 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u50002_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:24px;
  2414. height:24px;
  2415. }
  2416. #u50002_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. }
  2421. #u50003_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:37px;
  2427. height:17px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 0);
  2430. border-radius:0px;
  2431. filter:drop-shadow(none);
  2432. transition:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u50003 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:245px;
  2442. top:817px;
  2443. width:37px;
  2444. height:17px;
  2445. display:flex;
  2446. transition:none;
  2447. transform-origin:50% 50%;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. }
  2453. #u50003 .text {
  2454. position:absolute;
  2455. align-self:flex-start;
  2456. padding:0px 0px 0px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u50003_text {
  2461. border-width:0px;
  2462. white-space:nowrap;
  2463. text-transform:none;
  2464. }
  2465. #u50004 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:0px;
  2471. height:0px;
  2472. }
  2473. #u50005 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:157px;
  2477. top:792px;
  2478. width:24px;
  2479. height:24px;
  2480. display:flex;
  2481. transition:none;
  2482. font-size:8px;
  2483. }
  2484. #u50005 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u50005_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:24px;
  2497. height:24px;
  2498. }
  2499. #u50005_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. }
  2504. #u50006_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:37px;
  2510. height:17px;
  2511. background:inherit;
  2512. background-color:rgba(255, 255, 255, 0);
  2513. border-radius:0px;
  2514. filter:drop-shadow(none);
  2515. transition:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:12px;
  2520. }
  2521. #u50006 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:151px;
  2525. top:817px;
  2526. width:37px;
  2527. height:17px;
  2528. display:flex;
  2529. transition:none;
  2530. transform-origin:50% 50%;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. }
  2536. #u50006 .text {
  2537. position:absolute;
  2538. align-self:flex-start;
  2539. padding:0px 0px 0px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u50006_text {
  2544. border-width:0px;
  2545. white-space:nowrap;
  2546. text-transform:none;
  2547. }
  2548. #u50007_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:375px;
  2554. height:735px;
  2555. background:inherit;
  2556. background-color:rgba(242, 242, 242, 1);
  2557. border-top:0px;
  2558. border-radius:25px;
  2559. border-top-left-radius:0px;
  2560. border-top-right-radius:0px;
  2561. filter:drop-shadow(none);
  2562. transition:none;
  2563. }
  2564. #u50007 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:1851px;
  2568. top:105px;
  2569. width:375px;
  2570. height:735px;
  2571. display:flex;
  2572. transition:none;
  2573. transform-origin:50% 50%;
  2574. }
  2575. #u50007 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u50007_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u50008_div {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:57px;
  2594. height:30px;
  2595. background:inherit;
  2596. background-color:rgba(255, 255, 255, 0);
  2597. border-left:0px;
  2598. border-top:0px;
  2599. border-right:0px;
  2600. border-radius:0px;
  2601. border-bottom-right-radius:0px;
  2602. border-bottom-left-radius:0px;
  2603. filter:drop-shadow(none);
  2604. transition:none;
  2605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2606. font-weight:500;
  2607. font-style:normal;
  2608. font-size:14px;
  2609. line-height:30px;
  2610. }
  2611. #u50008 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:2003px;
  2615. top:73px;
  2616. width:57px;
  2617. height:30px;
  2618. display:flex;
  2619. transition:none;
  2620. transform-origin:50% 50%;
  2621. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2622. font-weight:500;
  2623. font-style:normal;
  2624. font-size:14px;
  2625. line-height:30px;
  2626. }
  2627. #u50008 .text {
  2628. position:absolute;
  2629. align-self:flex-start;
  2630. padding:0px 0px 0px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u50008_text {
  2635. border-width:0px;
  2636. white-space:nowrap;
  2637. text-transform:none;
  2638. }
  2639. #u50009 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:0px;
  2645. height:0px;
  2646. }
  2647. #u50010 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:1864px;
  2651. top:79px;
  2652. width:11px;
  2653. height:18px;
  2654. display:flex;
  2655. transition:none;
  2656. }
  2657. #u50010 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u50010_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:11px;
  2670. height:18px;
  2671. }
  2672. #u50010_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u50011_div {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:375px;
  2684. height:115px;
  2685. background:inherit;
  2686. background-color:rgba(255, 255, 255, 1);
  2687. border-left:0px;
  2688. border-top:0px;
  2689. border-right:0px;
  2690. border-radius:0px;
  2691. border-bottom-right-radius:0px;
  2692. border-bottom-left-radius:0px;
  2693. filter:drop-shadow(none);
  2694. transition:none;
  2695. }
  2696. #u50011 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1851px;
  2700. top:115px;
  2701. width:375px;
  2702. height:115px;
  2703. display:flex;
  2704. transition:none;
  2705. transform-origin:50% 50%;
  2706. }
  2707. #u50011 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u50011_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u50012 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:1868px;
  2724. top:141px;
  2725. width:40px;
  2726. height:40px;
  2727. display:flex;
  2728. transition:none;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. }
  2733. #u50012 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u50012_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:40px;
  2746. height:40px;
  2747. }
  2748. #u50012_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u50013_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:33px;
  2759. height:30px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 0);
  2762. border-left:0px;
  2763. border-top:0px;
  2764. border-right:0px;
  2765. border-radius:0px;
  2766. border-bottom-right-radius:0px;
  2767. border-bottom-left-radius:0px;
  2768. filter:drop-shadow(none);
  2769. transition:none;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:16px;
  2774. line-height:30px;
  2775. }
  2776. #u50013 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:1928px;
  2780. top:136px;
  2781. width:33px;
  2782. height:30px;
  2783. display:flex;
  2784. transition:none;
  2785. transform-origin:50% 50%;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:16px;
  2790. line-height:30px;
  2791. }
  2792. #u50013 .text {
  2793. position:absolute;
  2794. align-self:flex-start;
  2795. padding:0px 0px 0px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u50013_text {
  2800. border-width:0px;
  2801. white-space:nowrap;
  2802. text-transform:none;
  2803. }
  2804. #u50014_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:65px;
  2810. height:25px;
  2811. background:inherit;
  2812. background-color:rgba(255, 255, 255, 0);
  2813. border-left:0px;
  2814. border-top:0px;
  2815. border-right:0px;
  2816. border-radius:0px;
  2817. border-bottom-right-radius:0px;
  2818. border-bottom-left-radius:0px;
  2819. filter:drop-shadow(none);
  2820. transition:none;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:10px;
  2825. color:#7F7F7F;
  2826. line-height:25px;
  2827. }
  2828. #u50014 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:1928px;
  2832. top:166px;
  2833. width:65px;
  2834. height:25px;
  2835. display:flex;
  2836. transition:none;
  2837. transform-origin:50% 50%;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:10px;
  2842. color:#7F7F7F;
  2843. line-height:25px;
  2844. }
  2845. #u50014 .text {
  2846. position:absolute;
  2847. align-self:flex-start;
  2848. padding:0px 0px 0px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u50014_text {
  2853. border-width:0px;
  2854. white-space:nowrap;
  2855. text-transform:none;
  2856. }
  2857. #u50015_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:161px;
  2863. height:25px;
  2864. background:inherit;
  2865. background-color:rgba(255, 255, 255, 0);
  2866. border-left:0px;
  2867. border-top:0px;
  2868. border-right:0px;
  2869. border-radius:0px;
  2870. border-bottom-right-radius:0px;
  2871. border-bottom-left-radius:0px;
  2872. filter:drop-shadow(none);
  2873. transition:none;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:10px;
  2878. color:#F59A23;
  2879. line-height:25px;
  2880. }
  2881. #u50015 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:1928px;
  2885. top:191px;
  2886. width:161px;
  2887. height:25px;
  2888. display:flex;
  2889. transition:none;
  2890. transform-origin:50% 50%;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:10px;
  2895. color:#F59A23;
  2896. line-height:25px;
  2897. }
  2898. #u50015 .text {
  2899. position:absolute;
  2900. align-self:flex-start;
  2901. padding:0px 0px 0px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u50015_text {
  2906. border-width:0px;
  2907. white-space:nowrap;
  2908. text-transform:none;
  2909. }
  2910. #u50016_div {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:144px;
  2916. height:40px;
  2917. background:inherit;
  2918. background-color:rgba(24, 144, 255, 1);
  2919. border-radius:40px;
  2920. filter:drop-shadow(none);
  2921. transition:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. color:#FFFFFF;
  2927. }
  2928. #u50016 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:2049px;
  2932. top:726px;
  2933. width:144px;
  2934. height:40px;
  2935. display:flex;
  2936. transition:none;
  2937. transform-origin:50% 50%;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. color:#FFFFFF;
  2943. }
  2944. #u50016 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u50016_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. }
  2956. #u50017_div {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:144px;
  2962. height:40px;
  2963. background:inherit;
  2964. background-color:rgba(255, 255, 255, 1);
  2965. box-sizing:border-box;
  2966. border-width:1px;
  2967. border-style:solid;
  2968. border-color:rgba(127, 127, 127, 1);
  2969. border-radius:40px;
  2970. filter:drop-shadow(none);
  2971. transition:none;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:14px;
  2976. }
  2977. #u50017 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:1885px;
  2981. top:726px;
  2982. width:144px;
  2983. height:40px;
  2984. display:flex;
  2985. transition:none;
  2986. transform-origin:50% 50%;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. }
  2992. #u50017 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u50017_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. }
  3004. #u50018 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:433px;
  3010. height:865px;
  3011. }
  3012. #u50019 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:433px;
  3018. height:865px;
  3019. display:flex;
  3020. transition:none;
  3021. }
  3022. #u50019 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u50019_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:433px;
  3035. height:865px;
  3036. }
  3037. #u50019_text {
  3038. border-width:0px;
  3039. word-wrap:break-word;
  3040. text-transform:none;
  3041. visibility:hidden;
  3042. }
  3043. #u50020_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:375px;
  3049. height:40px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 1);
  3052. box-sizing:border-box;
  3053. border-width:1px;
  3054. border-style:solid;
  3055. border-color:rgba(215, 215, 215, 1);
  3056. border-left:0px;
  3057. border-top:0px;
  3058. border-right:0px;
  3059. border-radius:0px;
  3060. border-bottom-right-radius:0px;
  3061. border-bottom-left-radius:0px;
  3062. filter:drop-shadow(none);
  3063. transition:none;
  3064. }
  3065. #u50020 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:29px;
  3069. top:67px;
  3070. width:375px;
  3071. height:40px;
  3072. display:flex;
  3073. transition:none;
  3074. transform-origin:50% 50%;
  3075. }
  3076. #u50020 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u50020_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u50021 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:0px;
  3095. height:0px;
  3096. }
  3097. #u50022_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:88px;
  3103. height:32px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 1);
  3106. box-sizing:border-box;
  3107. border-width:1px;
  3108. border-style:solid;
  3109. border-color:rgba(242, 242, 242, 1);
  3110. border-radius:33px;
  3111. filter:drop-shadow(none);
  3112. transition:none;
  3113. }
  3114. #u50022 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:309px;
  3118. top:71px;
  3119. width:88px;
  3120. height:32px;
  3121. display:flex;
  3122. transition:none;
  3123. transform-origin:50% 50%;
  3124. }
  3125. #u50022 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 2px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u50022_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u50023 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:0px;
  3144. height:0px;
  3145. }
  3146. #u50024 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:372px;
  3150. top:78px;
  3151. width:18px;
  3152. height:18px;
  3153. display:flex;
  3154. transition:none;
  3155. }
  3156. #u50024 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u50024_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:18px;
  3169. height:18px;
  3170. }
  3171. #u50024_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. visibility:hidden;
  3176. }
  3177. #u50025 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:378px;
  3181. top:84px;
  3182. width:6px;
  3183. height:6px;
  3184. display:flex;
  3185. transition:none;
  3186. }
  3187. #u50025 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 2px 2px 2px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u50025_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:6px;
  3200. height:6px;
  3201. }
  3202. #u50025_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u50026 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:0px;
  3214. height:0px;
  3215. }
  3216. #u50027 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:323px;
  3220. top:85px;
  3221. width:5px;
  3222. height:5px;
  3223. display:flex;
  3224. transition:none;
  3225. }
  3226. #u50027 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u50027_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:5px;
  3239. height:5px;
  3240. }
  3241. #u50027_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u50028 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:339px;
  3251. top:85px;
  3252. width:5px;
  3253. height:5px;
  3254. display:flex;
  3255. transition:none;
  3256. }
  3257. #u50028 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u50028_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:5px;
  3270. height:5px;
  3271. }
  3272. #u50028_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u50029 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:330px;
  3282. top:84px;
  3283. width:7px;
  3284. height:7px;
  3285. display:flex;
  3286. transition:none;
  3287. }
  3288. #u50029 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 2px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u50029_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:7px;
  3301. height:7px;
  3302. }
  3303. #u50029_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u50030 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:347px;
  3313. top:87px;
  3314. width:18px;
  3315. height:1px;
  3316. display:flex;
  3317. -webkit-transform:rotate(90deg);
  3318. -moz-transform:rotate(90deg);
  3319. -ms-transform:rotate(90deg);
  3320. transform:rotate(90deg);
  3321. transition:none;
  3322. }
  3323. #u50030 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u50030_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:19px;
  3336. height:2px;
  3337. }
  3338. #u50030_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u50031 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:29px;
  3348. top:24px;
  3349. width:375px;
  3350. height:44px;
  3351. display:flex;
  3352. transition:none;
  3353. }
  3354. #u50031 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u50031_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:375px;
  3367. height:44px;
  3368. }
  3369. #u50031_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u50032_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:375px;
  3381. height:50px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 1);
  3384. box-sizing:border-box;
  3385. border-width:1px;
  3386. border-style:solid;
  3387. border-color:rgba(242, 242, 242, 1);
  3388. border-radius:26px;
  3389. border-top-left-radius:0px;
  3390. border-top-right-radius:0px;
  3391. filter:drop-shadow(none);
  3392. transition:none;
  3393. }
  3394. #u50032 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:29px;
  3398. top:788px;
  3399. width:375px;
  3400. height:50px;
  3401. display:flex;
  3402. transition:none;
  3403. transform-origin:50% 50%;
  3404. }
  3405. #u50032 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u50032_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u50033 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:0px;
  3424. height:0px;
  3425. }
  3426. #u50034 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:69px;
  3430. top:792px;
  3431. width:24px;
  3432. height:24px;
  3433. display:flex;
  3434. transition:none;
  3435. font-size:8px;
  3436. }
  3437. #u50034 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 2px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u50034_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:24px;
  3450. height:24px;
  3451. }
  3452. #u50034_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. }
  3457. #u50035_div {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:25px;
  3463. height:17px;
  3464. background:inherit;
  3465. background-color:rgba(255, 255, 255, 0);
  3466. border-radius:0px;
  3467. filter:drop-shadow(none);
  3468. transition:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. }
  3474. #u50035 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:69px;
  3478. top:817px;
  3479. width:25px;
  3480. height:17px;
  3481. display:flex;
  3482. transition:none;
  3483. transform-origin:50% 50%;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. }
  3489. #u50035 .text {
  3490. position:absolute;
  3491. align-self:flex-start;
  3492. padding:0px 0px 0px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u50035_text {
  3497. border-width:0px;
  3498. white-space:nowrap;
  3499. text-transform:none;
  3500. }
  3501. #u50036 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:0px;
  3507. height:0px;
  3508. }
  3509. #u50037 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:339px;
  3513. top:794px;
  3514. width:24px;
  3515. height:24px;
  3516. display:flex;
  3517. transition:none;
  3518. font-size:8px;
  3519. }
  3520. #u50037 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u50037_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:24px;
  3533. height:24px;
  3534. }
  3535. #u50037_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. }
  3540. #u50038_div {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:25px;
  3546. height:17px;
  3547. background:inherit;
  3548. background-color:rgba(255, 255, 255, 0);
  3549. border-radius:0px;
  3550. filter:drop-shadow(none);
  3551. transition:none;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. }
  3557. #u50038 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:339px;
  3561. top:819px;
  3562. width:25px;
  3563. height:17px;
  3564. display:flex;
  3565. transition:none;
  3566. transform-origin:50% 50%;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:12px;
  3571. }
  3572. #u50038 .text {
  3573. position:absolute;
  3574. align-self:flex-start;
  3575. padding:0px 0px 0px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u50038_text {
  3580. border-width:0px;
  3581. white-space:nowrap;
  3582. text-transform:none;
  3583. }
  3584. #u50039_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:375px;
  3590. height:681px;
  3591. background:inherit;
  3592. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3593. border-radius:0px;
  3594. filter:drop-shadow(none);
  3595. transition:none;
  3596. }
  3597. #u50039 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:29px;
  3601. top:107px;
  3602. width:375px;
  3603. height:681px;
  3604. display:flex;
  3605. transition:none;
  3606. transform-origin:50% 50%;
  3607. }
  3608. #u50039 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 2px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u50039_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u50040 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:0px;
  3627. height:0px;
  3628. }
  3629. #u50041 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:251px;
  3633. top:792px;
  3634. width:24px;
  3635. height:24px;
  3636. display:flex;
  3637. transition:none;
  3638. font-size:8px;
  3639. }
  3640. #u50041 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u50041_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:24px;
  3653. height:24px;
  3654. }
  3655. #u50041_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. }
  3660. #u50042_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:37px;
  3666. height:17px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 0);
  3669. border-radius:0px;
  3670. filter:drop-shadow(none);
  3671. transition:none;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. }
  3677. #u50042 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:245px;
  3681. top:817px;
  3682. width:37px;
  3683. height:17px;
  3684. display:flex;
  3685. transition:none;
  3686. transform-origin:50% 50%;
  3687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:12px;
  3691. }
  3692. #u50042 .text {
  3693. position:absolute;
  3694. align-self:flex-start;
  3695. padding:0px 0px 0px 0px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u50042_text {
  3700. border-width:0px;
  3701. white-space:nowrap;
  3702. text-transform:none;
  3703. }
  3704. #u50043 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:0px;
  3710. height:0px;
  3711. }
  3712. #u50044 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:157px;
  3716. top:792px;
  3717. width:24px;
  3718. height:24px;
  3719. display:flex;
  3720. transition:none;
  3721. font-size:8px;
  3722. }
  3723. #u50044 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u50044_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:24px;
  3736. height:24px;
  3737. }
  3738. #u50044_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. }
  3743. #u50045_div {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:37px;
  3749. height:17px;
  3750. background:inherit;
  3751. background-color:rgba(255, 255, 255, 0);
  3752. border-radius:0px;
  3753. filter:drop-shadow(none);
  3754. transition:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. }
  3760. #u50045 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:151px;
  3764. top:817px;
  3765. width:37px;
  3766. height:17px;
  3767. display:flex;
  3768. transition:none;
  3769. transform-origin:50% 50%;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. }
  3775. #u50045 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u50045_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u50046_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:375px;
  3793. height:735px;
  3794. background:inherit;
  3795. background-color:rgba(242, 242, 242, 1);
  3796. border-top:0px;
  3797. border-radius:25px;
  3798. border-top-left-radius:0px;
  3799. border-top-right-radius:0px;
  3800. filter:drop-shadow(none);
  3801. transition:none;
  3802. }
  3803. #u50046 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:29px;
  3807. top:105px;
  3808. width:375px;
  3809. height:735px;
  3810. display:flex;
  3811. transition:none;
  3812. transform-origin:50% 50%;
  3813. }
  3814. #u50046 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u50046_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u50047_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:71px;
  3833. height:30px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border-left:0px;
  3837. border-top:0px;
  3838. border-right:0px;
  3839. border-radius:0px;
  3840. border-bottom-right-radius:0px;
  3841. border-bottom-left-radius:0px;
  3842. filter:drop-shadow(none);
  3843. transition:none;
  3844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3845. font-weight:500;
  3846. font-style:normal;
  3847. font-size:14px;
  3848. line-height:30px;
  3849. }
  3850. #u50047 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:174px;
  3854. top:73px;
  3855. width:71px;
  3856. height:30px;
  3857. display:flex;
  3858. transition:none;
  3859. transform-origin:50% 50%;
  3860. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3861. font-weight:500;
  3862. font-style:normal;
  3863. font-size:14px;
  3864. line-height:30px;
  3865. }
  3866. #u50047 .text {
  3867. position:absolute;
  3868. align-self:flex-start;
  3869. padding:0px 0px 0px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u50047_text {
  3874. border-width:0px;
  3875. white-space:nowrap;
  3876. text-transform:none;
  3877. }
  3878. #u50048 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:0px;
  3884. height:0px;
  3885. }
  3886. #u50049 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:42px;
  3890. top:79px;
  3891. width:11px;
  3892. height:18px;
  3893. display:flex;
  3894. transition:none;
  3895. }
  3896. #u50049 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u50049_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:11px;
  3909. height:18px;
  3910. }
  3911. #u50049_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u50050 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:0px;
  3923. height:0px;
  3924. }
  3925. #u50051_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:375px;
  3931. height:40px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 1);
  3934. border-radius:0px;
  3935. filter:drop-shadow(none);
  3936. transition:none;
  3937. }
  3938. #u50051 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:29px;
  3942. top:105px;
  3943. width:375px;
  3944. height:40px;
  3945. display:flex;
  3946. transition:none;
  3947. transform-origin:50% 50%;
  3948. }
  3949. #u50051 .text {
  3950. position:absolute;
  3951. align-self:center;
  3952. padding:2px 2px 2px 2px;
  3953. box-sizing:border-box;
  3954. width:100%;
  3955. }
  3956. #u50051_text {
  3957. border-width:0px;
  3958. word-wrap:break-word;
  3959. text-transform:none;
  3960. visibility:hidden;
  3961. }
  3962. #u50052_div {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:43px;
  3968. height:40px;
  3969. background:inherit;
  3970. background-color:rgba(255, 255, 255, 0);
  3971. border-left:0px;
  3972. border-top:0px;
  3973. border-right:0px;
  3974. border-radius:0px;
  3975. border-bottom-right-radius:0px;
  3976. border-bottom-left-radius:0px;
  3977. filter:drop-shadow(none);
  3978. transition:none;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. line-height:30px;
  3984. }
  3985. #u50052 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:305px;
  3989. top:105px;
  3990. width:43px;
  3991. height:40px;
  3992. display:flex;
  3993. transition:none;
  3994. transform-origin:50% 50%;
  3995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:14px;
  3999. line-height:30px;
  4000. }
  4001. #u50052 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:0px 0px 0px 0px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u50052_text {
  4009. border-width:0px;
  4010. white-space:nowrap;
  4011. text-transform:none;
  4012. }
  4013. #u50053_div {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:43px;
  4019. height:40px;
  4020. background:inherit;
  4021. background-color:rgba(255, 255, 255, 0);
  4022. border-left:0px;
  4023. border-top:0px;
  4024. border-right:0px;
  4025. border-radius:0px;
  4026. border-bottom-right-radius:0px;
  4027. border-bottom-left-radius:0px;
  4028. filter:drop-shadow(none);
  4029. transition:none;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:14px;
  4034. line-height:30px;
  4035. }
  4036. #u50053 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:200px;
  4040. top:105px;
  4041. width:43px;
  4042. height:40px;
  4043. display:flex;
  4044. transition:none;
  4045. transform-origin:50% 50%;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. line-height:30px;
  4051. }
  4052. #u50053 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:0px 0px 0px 0px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u50053_text {
  4060. border-width:0px;
  4061. white-space:nowrap;
  4062. text-transform:none;
  4063. }
  4064. #u50054_div {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:43px;
  4070. height:40px;
  4071. background:inherit;
  4072. background-color:rgba(255, 255, 255, 0);
  4073. box-sizing:border-box;
  4074. border-width:2px;
  4075. border-style:solid;
  4076. border-color:rgba(51, 51, 51, 1);
  4077. border-left:0px;
  4078. border-top:0px;
  4079. border-right:0px;
  4080. border-radius:0px;
  4081. border-bottom-right-radius:0px;
  4082. border-bottom-left-radius:0px;
  4083. filter:drop-shadow(none);
  4084. transition:none;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:14px;
  4089. line-height:40px;
  4090. }
  4091. #u50054 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:85px;
  4095. top:105px;
  4096. width:43px;
  4097. height:40px;
  4098. display:flex;
  4099. transition:none;
  4100. transform-origin:50% 50%;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:14px;
  4105. line-height:40px;
  4106. }
  4107. #u50054 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:0px 0px 0px 0px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u50054_text {
  4115. border-width:0px;
  4116. white-space:nowrap;
  4117. text-transform:none;
  4118. }
  4119. #u50055 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:453px;
  4123. top:0px;
  4124. width:433px;
  4125. height:865px;
  4126. }
  4127. #u50056 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:433px;
  4133. height:865px;
  4134. display:flex;
  4135. transition:none;
  4136. }
  4137. #u50056 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u50056_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:433px;
  4150. height:865px;
  4151. }
  4152. #u50056_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u50057_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:375px;
  4164. height:40px;
  4165. background:inherit;
  4166. background-color:rgba(255, 255, 255, 1);
  4167. box-sizing:border-box;
  4168. border-width:1px;
  4169. border-style:solid;
  4170. border-color:rgba(215, 215, 215, 1);
  4171. border-left:0px;
  4172. border-top:0px;
  4173. border-right:0px;
  4174. border-radius:0px;
  4175. border-bottom-right-radius:0px;
  4176. border-bottom-left-radius:0px;
  4177. filter:drop-shadow(none);
  4178. transition:none;
  4179. }
  4180. #u50057 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:29px;
  4184. top:67px;
  4185. width:375px;
  4186. height:40px;
  4187. display:flex;
  4188. transition:none;
  4189. transform-origin:50% 50%;
  4190. }
  4191. #u50057 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u50057_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u50058 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u50059_div {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:88px;
  4218. height:32px;
  4219. background:inherit;
  4220. background-color:rgba(255, 255, 255, 1);
  4221. box-sizing:border-box;
  4222. border-width:1px;
  4223. border-style:solid;
  4224. border-color:rgba(242, 242, 242, 1);
  4225. border-radius:33px;
  4226. filter:drop-shadow(none);
  4227. transition:none;
  4228. }
  4229. #u50059 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:309px;
  4233. top:71px;
  4234. width:88px;
  4235. height:32px;
  4236. display:flex;
  4237. transition:none;
  4238. transform-origin:50% 50%;
  4239. }
  4240. #u50059 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 2px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u50059_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u50060 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:0px;
  4259. height:0px;
  4260. }
  4261. #u50061 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:372px;
  4265. top:78px;
  4266. width:18px;
  4267. height:18px;
  4268. display:flex;
  4269. transition:none;
  4270. }
  4271. #u50061 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 2px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u50061_img {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:18px;
  4284. height:18px;
  4285. }
  4286. #u50061_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u50062 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:378px;
  4296. top:84px;
  4297. width:6px;
  4298. height:6px;
  4299. display:flex;
  4300. transition:none;
  4301. }
  4302. #u50062 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 2px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u50062_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:6px;
  4315. height:6px;
  4316. }
  4317. #u50062_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u50063 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:0px;
  4329. height:0px;
  4330. }
  4331. #u50064 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:323px;
  4335. top:85px;
  4336. width:5px;
  4337. height:5px;
  4338. display:flex;
  4339. transition:none;
  4340. }
  4341. #u50064 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 2px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u50064_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:5px;
  4354. height:5px;
  4355. }
  4356. #u50064_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. visibility:hidden;
  4361. }
  4362. #u50065 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:339px;
  4366. top:85px;
  4367. width:5px;
  4368. height:5px;
  4369. display:flex;
  4370. transition:none;
  4371. }
  4372. #u50065 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u50065_img {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:5px;
  4385. height:5px;
  4386. }
  4387. #u50065_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u50066 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:330px;
  4397. top:84px;
  4398. width:7px;
  4399. height:7px;
  4400. display:flex;
  4401. transition:none;
  4402. }
  4403. #u50066 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u50066_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:7px;
  4416. height:7px;
  4417. }
  4418. #u50066_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u50067 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:347px;
  4428. top:87px;
  4429. width:18px;
  4430. height:1px;
  4431. display:flex;
  4432. -webkit-transform:rotate(90deg);
  4433. -moz-transform:rotate(90deg);
  4434. -ms-transform:rotate(90deg);
  4435. transform:rotate(90deg);
  4436. transition:none;
  4437. }
  4438. #u50067 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u50067_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:19px;
  4451. height:2px;
  4452. }
  4453. #u50067_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u50068 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:29px;
  4463. top:24px;
  4464. width:375px;
  4465. height:44px;
  4466. display:flex;
  4467. transition:none;
  4468. }
  4469. #u50068 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u50068_img {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:375px;
  4482. height:44px;
  4483. }
  4484. #u50068_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u50069_div {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:375px;
  4496. height:50px;
  4497. background:inherit;
  4498. background-color:rgba(255, 255, 255, 1);
  4499. box-sizing:border-box;
  4500. border-width:1px;
  4501. border-style:solid;
  4502. border-color:rgba(242, 242, 242, 1);
  4503. border-radius:26px;
  4504. border-top-left-radius:0px;
  4505. border-top-right-radius:0px;
  4506. filter:drop-shadow(none);
  4507. transition:none;
  4508. }
  4509. #u50069 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:29px;
  4513. top:788px;
  4514. width:375px;
  4515. height:50px;
  4516. display:flex;
  4517. transition:none;
  4518. transform-origin:50% 50%;
  4519. }
  4520. #u50069 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 2px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u50069_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u50070 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:0px;
  4539. height:0px;
  4540. }
  4541. #u50071 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:69px;
  4545. top:792px;
  4546. width:24px;
  4547. height:24px;
  4548. display:flex;
  4549. transition:none;
  4550. font-size:8px;
  4551. }
  4552. #u50071 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 2px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u50071_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:24px;
  4565. height:24px;
  4566. }
  4567. #u50071_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. }
  4572. #u50072_div {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:25px;
  4578. height:17px;
  4579. background:inherit;
  4580. background-color:rgba(255, 255, 255, 0);
  4581. border-radius:0px;
  4582. filter:drop-shadow(none);
  4583. transition:none;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. }
  4589. #u50072 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:69px;
  4593. top:817px;
  4594. width:25px;
  4595. height:17px;
  4596. display:flex;
  4597. transition:none;
  4598. transform-origin:50% 50%;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:12px;
  4603. }
  4604. #u50072 .text {
  4605. position:absolute;
  4606. align-self:flex-start;
  4607. padding:0px 0px 0px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u50072_text {
  4612. border-width:0px;
  4613. white-space:nowrap;
  4614. text-transform:none;
  4615. }
  4616. #u50073 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:0px;
  4622. height:0px;
  4623. }
  4624. #u50074 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:339px;
  4628. top:794px;
  4629. width:24px;
  4630. height:24px;
  4631. display:flex;
  4632. transition:none;
  4633. font-size:8px;
  4634. }
  4635. #u50074 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 2px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u50074_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:24px;
  4648. height:24px;
  4649. }
  4650. #u50074_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. }
  4655. #u50075_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:25px;
  4661. height:17px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 0);
  4664. border-radius:0px;
  4665. filter:drop-shadow(none);
  4666. transition:none;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. }
  4672. #u50075 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:339px;
  4676. top:819px;
  4677. width:25px;
  4678. height:17px;
  4679. display:flex;
  4680. transition:none;
  4681. transform-origin:50% 50%;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:12px;
  4686. }
  4687. #u50075 .text {
  4688. position:absolute;
  4689. align-self:flex-start;
  4690. padding:0px 0px 0px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u50075_text {
  4695. border-width:0px;
  4696. white-space:nowrap;
  4697. text-transform:none;
  4698. }
  4699. #u50076_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:375px;
  4705. height:681px;
  4706. background:inherit;
  4707. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4708. border-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. }
  4712. #u50076 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:29px;
  4716. top:107px;
  4717. width:375px;
  4718. height:681px;
  4719. display:flex;
  4720. transition:none;
  4721. transform-origin:50% 50%;
  4722. }
  4723. #u50076 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 2px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u50076_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. visibility:hidden;
  4735. }
  4736. #u50077 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:0px;
  4742. height:0px;
  4743. }
  4744. #u50078 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:251px;
  4748. top:792px;
  4749. width:24px;
  4750. height:24px;
  4751. display:flex;
  4752. transition:none;
  4753. font-size:8px;
  4754. }
  4755. #u50078 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u50078_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:24px;
  4768. height:24px;
  4769. }
  4770. #u50078_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. }
  4775. #u50079_div {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:37px;
  4781. height:17px;
  4782. background:inherit;
  4783. background-color:rgba(255, 255, 255, 0);
  4784. border-radius:0px;
  4785. filter:drop-shadow(none);
  4786. transition:none;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:12px;
  4791. }
  4792. #u50079 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:245px;
  4796. top:817px;
  4797. width:37px;
  4798. height:17px;
  4799. display:flex;
  4800. transition:none;
  4801. transform-origin:50% 50%;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:12px;
  4806. }
  4807. #u50079 .text {
  4808. position:absolute;
  4809. align-self:flex-start;
  4810. padding:0px 0px 0px 0px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u50079_text {
  4815. border-width:0px;
  4816. white-space:nowrap;
  4817. text-transform:none;
  4818. }
  4819. #u50080 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:0px;
  4825. height:0px;
  4826. }
  4827. #u50081 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:157px;
  4831. top:792px;
  4832. width:24px;
  4833. height:24px;
  4834. display:flex;
  4835. transition:none;
  4836. font-size:8px;
  4837. }
  4838. #u50081 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u50081_img {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:24px;
  4851. height:24px;
  4852. }
  4853. #u50081_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. }
  4858. #u50082_div {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:37px;
  4864. height:17px;
  4865. background:inherit;
  4866. background-color:rgba(255, 255, 255, 0);
  4867. border-radius:0px;
  4868. filter:drop-shadow(none);
  4869. transition:none;
  4870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4871. font-weight:400;
  4872. font-style:normal;
  4873. font-size:12px;
  4874. }
  4875. #u50082 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:151px;
  4879. top:817px;
  4880. width:37px;
  4881. height:17px;
  4882. display:flex;
  4883. transition:none;
  4884. transform-origin:50% 50%;
  4885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:12px;
  4889. }
  4890. #u50082 .text {
  4891. position:absolute;
  4892. align-self:flex-start;
  4893. padding:0px 0px 0px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u50082_text {
  4898. border-width:0px;
  4899. white-space:nowrap;
  4900. text-transform:none;
  4901. }
  4902. #u50083_div {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:375px;
  4908. height:735px;
  4909. background:inherit;
  4910. background-color:rgba(242, 242, 242, 1);
  4911. border-top:0px;
  4912. border-radius:25px;
  4913. border-top-left-radius:0px;
  4914. border-top-right-radius:0px;
  4915. filter:drop-shadow(none);
  4916. transition:none;
  4917. }
  4918. #u50083 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:482px;
  4922. top:105px;
  4923. width:375px;
  4924. height:735px;
  4925. display:flex;
  4926. transition:none;
  4927. transform-origin:50% 50%;
  4928. }
  4929. #u50083 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 2px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u50083_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. visibility:hidden;
  4941. }
  4942. #u50084 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:0px;
  4948. height:0px;
  4949. }
  4950. #u50085 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:495px;
  4954. top:79px;
  4955. width:11px;
  4956. height:18px;
  4957. display:flex;
  4958. transition:none;
  4959. }
  4960. #u50085 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u50085_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:11px;
  4973. height:18px;
  4974. }
  4975. #u50085_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u50086 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:0px;
  4987. height:0px;
  4988. }
  4989. #u50087_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:375px;
  4995. height:200px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 1);
  4998. border-left:0px;
  4999. border-top:0px;
  5000. border-right:0px;
  5001. border-radius:0px;
  5002. border-bottom-right-radius:0px;
  5003. border-bottom-left-radius:0px;
  5004. filter:drop-shadow(none);
  5005. transition:none;
  5006. }
  5007. #u50087 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:482px;
  5011. top:155px;
  5012. width:375px;
  5013. height:200px;
  5014. display:flex;
  5015. transition:none;
  5016. transform-origin:50% 50%;
  5017. }
  5018. #u50087 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u50087_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u50088_div {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:181px;
  5037. height:80px;
  5038. background:inherit;
  5039. background-color:rgba(255, 255, 255, 0);
  5040. border-left:0px;
  5041. border-top:0px;
  5042. border-right:0px;
  5043. border-radius:0px;
  5044. border-bottom-right-radius:0px;
  5045. border-bottom-left-radius:0px;
  5046. filter:drop-shadow(none);
  5047. transition:none;
  5048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#7F7F7F;
  5053. line-height:20px;
  5054. }
  5055. #u50088 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:499px;
  5059. top:219px;
  5060. width:181px;
  5061. height:80px;
  5062. display:flex;
  5063. transition:none;
  5064. transform-origin:50% 50%;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:12px;
  5069. color:#7F7F7F;
  5070. line-height:20px;
  5071. }
  5072. #u50088 .text {
  5073. position:absolute;
  5074. align-self:flex-start;
  5075. padding:0px 0px 0px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u50088_text {
  5080. border-width:0px;
  5081. white-space:nowrap;
  5082. text-transform:none;
  5083. }
  5084. #u50089 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:499px;
  5088. top:171px;
  5089. width:40px;
  5090. height:40px;
  5091. display:flex;
  5092. transition:none;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. }
  5097. #u50089 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 2px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u50089_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:40px;
  5110. height:40px;
  5111. }
  5112. #u50089_text {
  5113. border-width:0px;
  5114. word-wrap:break-word;
  5115. text-transform:none;
  5116. }
  5117. #u50090_div {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:33px;
  5123. height:30px;
  5124. background:inherit;
  5125. background-color:rgba(255, 255, 255, 0);
  5126. border-left:0px;
  5127. border-top:0px;
  5128. border-right:0px;
  5129. border-radius:0px;
  5130. border-bottom-right-radius:0px;
  5131. border-bottom-left-radius:0px;
  5132. filter:drop-shadow(none);
  5133. transition:none;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:16px;
  5138. line-height:30px;
  5139. }
  5140. #u50090 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:559px;
  5144. top:176px;
  5145. width:33px;
  5146. height:30px;
  5147. display:flex;
  5148. transition:none;
  5149. transform-origin:50% 50%;
  5150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:16px;
  5154. line-height:30px;
  5155. }
  5156. #u50090 .text {
  5157. position:absolute;
  5158. align-self:flex-start;
  5159. padding:0px 0px 0px 0px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u50090_text {
  5164. border-width:0px;
  5165. white-space:nowrap;
  5166. text-transform:none;
  5167. }
  5168. #u50091_div {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:85px;
  5174. height:30px;
  5175. background:inherit;
  5176. background-color:rgba(242, 242, 242, 1);
  5177. border-radius:40px;
  5178. filter:drop-shadow(none);
  5179. transition:none;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. color:#AAAAAA;
  5185. }
  5186. #u50091 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:762px;
  5190. top:315px;
  5191. width:85px;
  5192. height:30px;
  5193. display:flex;
  5194. transition:none;
  5195. transform-origin:50% 50%;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#AAAAAA;
  5201. }
  5202. #u50091 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 2px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u50091_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. }
  5214. #u50092 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:0px;
  5220. height:0px;
  5221. }
  5222. #u50093_div {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:375px;
  5228. height:40px;
  5229. background:inherit;
  5230. background-color:rgba(255, 255, 255, 1);
  5231. border-radius:0px;
  5232. filter:drop-shadow(none);
  5233. transition:none;
  5234. }
  5235. #u50093 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:482px;
  5239. top:105px;
  5240. width:375px;
  5241. height:40px;
  5242. display:flex;
  5243. transition:none;
  5244. transform-origin:50% 50%;
  5245. }
  5246. #u50093 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:2px 2px 2px 2px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u50093_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. visibility:hidden;
  5258. }
  5259. #u50094_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:43px;
  5265. height:40px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 0);
  5268. box-sizing:border-box;
  5269. border-width:2px;
  5270. border-style:solid;
  5271. border-color:rgba(51, 51, 51, 1);
  5272. border-left:0px;
  5273. border-top:0px;
  5274. border-right:0px;
  5275. border-radius:0px;
  5276. border-bottom-right-radius:0px;
  5277. border-bottom-left-radius:0px;
  5278. filter:drop-shadow(none);
  5279. transition:none;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. line-height:30px;
  5285. }
  5286. #u50094 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:758px;
  5290. top:105px;
  5291. width:43px;
  5292. height:40px;
  5293. display:flex;
  5294. transition:none;
  5295. transform-origin:50% 50%;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:14px;
  5300. line-height:30px;
  5301. }
  5302. #u50094 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:0px 0px 0px 0px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u50094_text {
  5310. border-width:0px;
  5311. white-space:nowrap;
  5312. text-transform:none;
  5313. }
  5314. #u50095_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:43px;
  5320. height:40px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 0);
  5323. box-sizing:border-box;
  5324. border-width:2px;
  5325. border-style:solid;
  5326. border-color:rgba(51, 51, 51, 1);
  5327. border-left:0px;
  5328. border-top:0px;
  5329. border-right:0px;
  5330. border-radius:0px;
  5331. border-bottom-right-radius:0px;
  5332. border-bottom-left-radius:0px;
  5333. filter:drop-shadow(none);
  5334. transition:none;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:14px;
  5339. line-height:30px;
  5340. }
  5341. #u50095 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:653px;
  5345. top:105px;
  5346. width:43px;
  5347. height:40px;
  5348. display:flex;
  5349. transition:none;
  5350. transform-origin:50% 50%;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:14px;
  5355. line-height:30px;
  5356. }
  5357. #u50095 .text {
  5358. position:absolute;
  5359. align-self:center;
  5360. padding:0px 0px 0px 0px;
  5361. box-sizing:border-box;
  5362. width:100%;
  5363. }
  5364. #u50095_text {
  5365. border-width:0px;
  5366. white-space:nowrap;
  5367. text-transform:none;
  5368. }
  5369. #u50096_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:52px;
  5375. height:40px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 0);
  5378. border-left:0px;
  5379. border-top:0px;
  5380. border-right:0px;
  5381. border-radius:0px;
  5382. border-bottom-right-radius:0px;
  5383. border-bottom-left-radius:0px;
  5384. filter:drop-shadow(none);
  5385. transition:none;
  5386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:14px;
  5390. line-height:30px;
  5391. }
  5392. #u50096 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:538px;
  5396. top:105px;
  5397. width:52px;
  5398. height:40px;
  5399. display:flex;
  5400. transition:none;
  5401. transform-origin:50% 50%;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:14px;
  5406. line-height:30px;
  5407. }
  5408. #u50096 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:0px 0px 0px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u50096_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. }
  5420. #u50097 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:911px;
  5424. top:0px;
  5425. width:433px;
  5426. height:865px;
  5427. }
  5428. #u50098 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:433px;
  5434. height:865px;
  5435. display:flex;
  5436. transition:none;
  5437. }
  5438. #u50098 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 2px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u50098_img {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:433px;
  5451. height:865px;
  5452. }
  5453. #u50098_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u50099_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:375px;
  5465. height:40px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 1);
  5468. box-sizing:border-box;
  5469. border-width:1px;
  5470. border-style:solid;
  5471. border-color:rgba(215, 215, 215, 1);
  5472. border-left:0px;
  5473. border-top:0px;
  5474. border-right:0px;
  5475. border-radius:0px;
  5476. border-bottom-right-radius:0px;
  5477. border-bottom-left-radius:0px;
  5478. filter:drop-shadow(none);
  5479. transition:none;
  5480. }
  5481. #u50099 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:29px;
  5485. top:67px;
  5486. width:375px;
  5487. height:40px;
  5488. display:flex;
  5489. transition:none;
  5490. transform-origin:50% 50%;
  5491. }
  5492. #u50099 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 2px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u50099_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u50100 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:0px;
  5511. height:0px;
  5512. }
  5513. #u50101_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:88px;
  5519. height:32px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 1);
  5522. box-sizing:border-box;
  5523. border-width:1px;
  5524. border-style:solid;
  5525. border-color:rgba(242, 242, 242, 1);
  5526. border-radius:33px;
  5527. filter:drop-shadow(none);
  5528. transition:none;
  5529. }
  5530. #u50101 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:309px;
  5534. top:71px;
  5535. width:88px;
  5536. height:32px;
  5537. display:flex;
  5538. transition:none;
  5539. transform-origin:50% 50%;
  5540. }
  5541. #u50101 .text {
  5542. position:absolute;
  5543. align-self:center;
  5544. padding:2px 2px 2px 2px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u50101_text {
  5549. border-width:0px;
  5550. word-wrap:break-word;
  5551. text-transform:none;
  5552. visibility:hidden;
  5553. }
  5554. #u50102 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u50103 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:372px;
  5566. top:78px;
  5567. width:18px;
  5568. height:18px;
  5569. display:flex;
  5570. transition:none;
  5571. }
  5572. #u50103 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 2px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u50103_img {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:18px;
  5585. height:18px;
  5586. }
  5587. #u50103_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u50104 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:378px;
  5597. top:84px;
  5598. width:6px;
  5599. height:6px;
  5600. display:flex;
  5601. transition:none;
  5602. }
  5603. #u50104 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 2px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u50104_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:6px;
  5616. height:6px;
  5617. }
  5618. #u50104_text {
  5619. border-width:0px;
  5620. word-wrap:break-word;
  5621. text-transform:none;
  5622. visibility:hidden;
  5623. }
  5624. #u50105 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:0px;
  5630. height:0px;
  5631. }
  5632. #u50106 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:323px;
  5636. top:85px;
  5637. width:5px;
  5638. height:5px;
  5639. display:flex;
  5640. transition:none;
  5641. }
  5642. #u50106 .text {
  5643. position:absolute;
  5644. align-self:center;
  5645. padding:2px 2px 2px 2px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u50106_img {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:5px;
  5655. height:5px;
  5656. }
  5657. #u50106_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. visibility:hidden;
  5662. }
  5663. #u50107 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:339px;
  5667. top:85px;
  5668. width:5px;
  5669. height:5px;
  5670. display:flex;
  5671. transition:none;
  5672. }
  5673. #u50107 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 2px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u50107_img {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:5px;
  5686. height:5px;
  5687. }
  5688. #u50107_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u50108 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:330px;
  5698. top:84px;
  5699. width:7px;
  5700. height:7px;
  5701. display:flex;
  5702. transition:none;
  5703. }
  5704. #u50108 .text {
  5705. position:absolute;
  5706. align-self:center;
  5707. padding:2px 2px 2px 2px;
  5708. box-sizing:border-box;
  5709. width:100%;
  5710. }
  5711. #u50108_img {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:7px;
  5717. height:7px;
  5718. }
  5719. #u50108_text {
  5720. border-width:0px;
  5721. word-wrap:break-word;
  5722. text-transform:none;
  5723. visibility:hidden;
  5724. }
  5725. #u50109 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:347px;
  5729. top:87px;
  5730. width:18px;
  5731. height:1px;
  5732. display:flex;
  5733. -webkit-transform:rotate(90deg);
  5734. -moz-transform:rotate(90deg);
  5735. -ms-transform:rotate(90deg);
  5736. transform:rotate(90deg);
  5737. transition:none;
  5738. }
  5739. #u50109 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u50109_img {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:19px;
  5752. height:2px;
  5753. }
  5754. #u50109_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u50110 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:29px;
  5764. top:24px;
  5765. width:375px;
  5766. height:44px;
  5767. display:flex;
  5768. transition:none;
  5769. }
  5770. #u50110 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 2px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u50110_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:375px;
  5783. height:44px;
  5784. }
  5785. #u50110_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u50111_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:375px;
  5797. height:50px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 1);
  5800. box-sizing:border-box;
  5801. border-width:1px;
  5802. border-style:solid;
  5803. border-color:rgba(242, 242, 242, 1);
  5804. border-radius:26px;
  5805. border-top-left-radius:0px;
  5806. border-top-right-radius:0px;
  5807. filter:drop-shadow(none);
  5808. transition:none;
  5809. }
  5810. #u50111 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:29px;
  5814. top:788px;
  5815. width:375px;
  5816. height:50px;
  5817. display:flex;
  5818. transition:none;
  5819. transform-origin:50% 50%;
  5820. }
  5821. #u50111 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u50111_text {
  5829. border-width:0px;
  5830. word-wrap:break-word;
  5831. text-transform:none;
  5832. visibility:hidden;
  5833. }
  5834. #u50112 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:0px;
  5840. height:0px;
  5841. }
  5842. #u50113 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:69px;
  5846. top:792px;
  5847. width:24px;
  5848. height:24px;
  5849. display:flex;
  5850. transition:none;
  5851. font-size:8px;
  5852. }
  5853. #u50113 .text {
  5854. position:absolute;
  5855. align-self:center;
  5856. padding:2px 2px 2px 2px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u50113_img {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:24px;
  5866. height:24px;
  5867. }
  5868. #u50113_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. }
  5873. #u50114_div {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:25px;
  5879. height:17px;
  5880. background:inherit;
  5881. background-color:rgba(255, 255, 255, 0);
  5882. border-radius:0px;
  5883. filter:drop-shadow(none);
  5884. transition:none;
  5885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:12px;
  5889. }
  5890. #u50114 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:69px;
  5894. top:817px;
  5895. width:25px;
  5896. height:17px;
  5897. display:flex;
  5898. transition:none;
  5899. transform-origin:50% 50%;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:12px;
  5904. }
  5905. #u50114 .text {
  5906. position:absolute;
  5907. align-self:flex-start;
  5908. padding:0px 0px 0px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u50114_text {
  5913. border-width:0px;
  5914. white-space:nowrap;
  5915. text-transform:none;
  5916. }
  5917. #u50115 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:0px;
  5923. height:0px;
  5924. }
  5925. #u50116 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:339px;
  5929. top:794px;
  5930. width:24px;
  5931. height:24px;
  5932. display:flex;
  5933. transition:none;
  5934. font-size:8px;
  5935. }
  5936. #u50116 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 2px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u50116_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:24px;
  5949. height:24px;
  5950. }
  5951. #u50116_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. }
  5956. #u50117_div {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:25px;
  5962. height:17px;
  5963. background:inherit;
  5964. background-color:rgba(255, 255, 255, 0);
  5965. border-radius:0px;
  5966. filter:drop-shadow(none);
  5967. transition:none;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:12px;
  5972. }
  5973. #u50117 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:339px;
  5977. top:819px;
  5978. width:25px;
  5979. height:17px;
  5980. display:flex;
  5981. transition:none;
  5982. transform-origin:50% 50%;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:12px;
  5987. }
  5988. #u50117 .text {
  5989. position:absolute;
  5990. align-self:flex-start;
  5991. padding:0px 0px 0px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u50117_text {
  5996. border-width:0px;
  5997. white-space:nowrap;
  5998. text-transform:none;
  5999. }
  6000. #u50118_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:375px;
  6006. height:681px;
  6007. background:inherit;
  6008. background-color:rgba(242, 242, 242, 0.4627450980392157);
  6009. border-radius:0px;
  6010. filter:drop-shadow(none);
  6011. transition:none;
  6012. }
  6013. #u50118 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:29px;
  6017. top:107px;
  6018. width:375px;
  6019. height:681px;
  6020. display:flex;
  6021. transition:none;
  6022. transform-origin:50% 50%;
  6023. }
  6024. #u50118 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u50118_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u50119 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:0px;
  6043. height:0px;
  6044. }
  6045. #u50120 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:251px;
  6049. top:792px;
  6050. width:24px;
  6051. height:24px;
  6052. display:flex;
  6053. transition:none;
  6054. font-size:8px;
  6055. }
  6056. #u50120 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:2px 2px 2px 2px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u50120_img {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:24px;
  6069. height:24px;
  6070. }
  6071. #u50120_text {
  6072. border-width:0px;
  6073. word-wrap:break-word;
  6074. text-transform:none;
  6075. }
  6076. #u50121_div {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:37px;
  6082. height:17px;
  6083. background:inherit;
  6084. background-color:rgba(255, 255, 255, 0);
  6085. border-radius:0px;
  6086. filter:drop-shadow(none);
  6087. transition:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:12px;
  6092. }
  6093. #u50121 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:245px;
  6097. top:817px;
  6098. width:37px;
  6099. height:17px;
  6100. display:flex;
  6101. transition:none;
  6102. transform-origin:50% 50%;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. }
  6108. #u50121 .text {
  6109. position:absolute;
  6110. align-self:flex-start;
  6111. padding:0px 0px 0px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u50121_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u50122 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:0px;
  6126. height:0px;
  6127. }
  6128. #u50123 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:157px;
  6132. top:792px;
  6133. width:24px;
  6134. height:24px;
  6135. display:flex;
  6136. transition:none;
  6137. font-size:8px;
  6138. }
  6139. #u50123 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:2px 2px 2px 2px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u50123_img {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:24px;
  6152. height:24px;
  6153. }
  6154. #u50123_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. }
  6159. #u50124_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:37px;
  6165. height:17px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 0);
  6168. border-radius:0px;
  6169. filter:drop-shadow(none);
  6170. transition:none;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:12px;
  6175. }
  6176. #u50124 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:151px;
  6180. top:817px;
  6181. width:37px;
  6182. height:17px;
  6183. display:flex;
  6184. transition:none;
  6185. transform-origin:50% 50%;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. }
  6191. #u50124 .text {
  6192. position:absolute;
  6193. align-self:flex-start;
  6194. padding:0px 0px 0px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u50124_text {
  6199. border-width:0px;
  6200. white-space:nowrap;
  6201. text-transform:none;
  6202. }
  6203. #u50125_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:375px;
  6209. height:735px;
  6210. background:inherit;
  6211. background-color:rgba(242, 242, 242, 1);
  6212. border-top:0px;
  6213. border-radius:25px;
  6214. border-top-left-radius:0px;
  6215. border-top-right-radius:0px;
  6216. filter:drop-shadow(none);
  6217. transition:none;
  6218. }
  6219. #u50125 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:940px;
  6223. top:105px;
  6224. width:375px;
  6225. height:735px;
  6226. display:flex;
  6227. transition:none;
  6228. transform-origin:50% 50%;
  6229. }
  6230. #u50125 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 2px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u50125_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u50126 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:0px;
  6249. height:0px;
  6250. }
  6251. #u50127 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:953px;
  6255. top:79px;
  6256. width:11px;
  6257. height:18px;
  6258. display:flex;
  6259. transition:none;
  6260. }
  6261. #u50127 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 2px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u50127_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:11px;
  6274. height:18px;
  6275. }
  6276. #u50127_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u50128 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:0px;
  6288. height:0px;
  6289. }
  6290. #u50129_div {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:375px;
  6296. height:40px;
  6297. background:inherit;
  6298. background-color:rgba(255, 255, 255, 1);
  6299. border-radius:0px;
  6300. filter:drop-shadow(none);
  6301. transition:none;
  6302. }
  6303. #u50129 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:940px;
  6307. top:105px;
  6308. width:375px;
  6309. height:40px;
  6310. display:flex;
  6311. transition:none;
  6312. transform-origin:50% 50%;
  6313. }
  6314. #u50129 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 2px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u50129_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u50130_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:43px;
  6333. height:40px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. box-sizing:border-box;
  6337. border-width:2px;
  6338. border-style:solid;
  6339. border-color:rgba(51, 51, 51, 1);
  6340. border-left:0px;
  6341. border-top:0px;
  6342. border-right:0px;
  6343. border-radius:0px;
  6344. border-bottom-right-radius:0px;
  6345. border-bottom-left-radius:0px;
  6346. filter:drop-shadow(none);
  6347. transition:none;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:14px;
  6352. line-height:30px;
  6353. }
  6354. #u50130 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:1216px;
  6358. top:105px;
  6359. width:43px;
  6360. height:40px;
  6361. display:flex;
  6362. transition:none;
  6363. transform-origin:50% 50%;
  6364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:14px;
  6368. line-height:30px;
  6369. }
  6370. #u50130 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:0px 0px 0px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u50130_text {
  6378. border-width:0px;
  6379. white-space:nowrap;
  6380. text-transform:none;
  6381. }
  6382. #u50131_div {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:43px;
  6388. height:40px;
  6389. background:inherit;
  6390. background-color:rgba(255, 255, 255, 0);
  6391. border-left:0px;
  6392. border-top:0px;
  6393. border-right:0px;
  6394. border-radius:0px;
  6395. border-bottom-right-radius:0px;
  6396. border-bottom-left-radius:0px;
  6397. filter:drop-shadow(none);
  6398. transition:none;
  6399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:14px;
  6403. line-height:30px;
  6404. }
  6405. #u50131 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:1111px;
  6409. top:105px;
  6410. width:43px;
  6411. height:40px;
  6412. display:flex;
  6413. transition:none;
  6414. transform-origin:50% 50%;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:14px;
  6419. line-height:30px;
  6420. }
  6421. #u50131 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:0px 0px 0px 0px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u50131_text {
  6429. border-width:0px;
  6430. white-space:nowrap;
  6431. text-transform:none;
  6432. }
  6433. #u50132_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:52px;
  6439. height:40px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 0);
  6442. border-left:0px;
  6443. border-top:0px;
  6444. border-right:0px;
  6445. border-radius:0px;
  6446. border-bottom-right-radius:0px;
  6447. border-bottom-left-radius:0px;
  6448. filter:drop-shadow(none);
  6449. transition:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. line-height:30px;
  6455. }
  6456. #u50132 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:996px;
  6460. top:105px;
  6461. width:52px;
  6462. height:40px;
  6463. display:flex;
  6464. transition:none;
  6465. transform-origin:50% 50%;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:14px;
  6470. line-height:30px;
  6471. }
  6472. #u50132 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:0px 0px 0px 0px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u50132_text {
  6480. border-width:0px;
  6481. word-wrap:break-word;
  6482. text-transform:none;
  6483. }
  6484. #u50133_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:85px;
  6490. height:30px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 0);
  6493. border-radius:0px;
  6494. filter:drop-shadow(none);
  6495. transition:none;
  6496. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6497. font-weight:500;
  6498. font-style:normal;
  6499. font-size:14px;
  6500. line-height:30px;
  6501. }
  6502. #u50133 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:620px;
  6506. top:73px;
  6507. width:85px;
  6508. height:30px;
  6509. display:flex;
  6510. transition:none;
  6511. transform-origin:50% 50%;
  6512. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6513. font-weight:500;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. line-height:30px;
  6517. }
  6518. #u50133 .text {
  6519. position:absolute;
  6520. align-self:flex-start;
  6521. padding:0px 0px 0px 0px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u50133_text {
  6526. border-width:0px;
  6527. white-space:nowrap;
  6528. text-transform:none;
  6529. }
  6530. #u50134_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:85px;
  6536. height:30px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 0);
  6539. border-radius:0px;
  6540. filter:drop-shadow(none);
  6541. transition:none;
  6542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6543. font-weight:500;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. line-height:30px;
  6547. }
  6548. #u50134 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:1083px;
  6552. top:73px;
  6553. width:85px;
  6554. height:30px;
  6555. display:flex;
  6556. transition:none;
  6557. transform-origin:50% 50%;
  6558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6559. font-weight:500;
  6560. font-style:normal;
  6561. font-size:14px;
  6562. line-height:30px;
  6563. }
  6564. #u50134 .text {
  6565. position:absolute;
  6566. align-self:flex-start;
  6567. padding:0px 0px 0px 0px;
  6568. box-sizing:border-box;
  6569. width:100%;
  6570. }
  6571. #u50134_text {
  6572. border-width:0px;
  6573. white-space:nowrap;
  6574. text-transform:none;
  6575. }
  6576. #u50135 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:0px;
  6582. height:0px;
  6583. }
  6584. #u50136_div {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:375px;
  6590. height:80px;
  6591. background:inherit;
  6592. background-color:rgba(255, 255, 255, 1);
  6593. border-left:0px;
  6594. border-top:0px;
  6595. border-right:0px;
  6596. border-radius:0px;
  6597. border-bottom-right-radius:0px;
  6598. border-bottom-left-radius:0px;
  6599. filter:drop-shadow(none);
  6600. transition:none;
  6601. }
  6602. #u50136 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1393px;
  6606. top:231px;
  6607. width:375px;
  6608. height:80px;
  6609. display:flex;
  6610. transition:none;
  6611. transform-origin:50% 50%;
  6612. }
  6613. #u50136 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 2px 2px 2px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u50136_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u50137_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:33px;
  6632. height:30px;
  6633. background:inherit;
  6634. background-color:rgba(255, 255, 255, 0);
  6635. border-left:0px;
  6636. border-top:0px;
  6637. border-right:0px;
  6638. border-radius:0px;
  6639. border-bottom-right-radius:0px;
  6640. border-bottom-left-radius:0px;
  6641. filter:drop-shadow(none);
  6642. transition:none;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:16px;
  6647. line-height:30px;
  6648. }
  6649. #u50137 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:1470px;
  6653. top:265px;
  6654. width:33px;
  6655. height:30px;
  6656. display:flex;
  6657. transition:none;
  6658. transform-origin:50% 50%;
  6659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6660. font-weight:400;
  6661. font-style:normal;
  6662. font-size:16px;
  6663. line-height:30px;
  6664. }
  6665. #u50137 .text {
  6666. position:absolute;
  6667. align-self:flex-start;
  6668. padding:0px 0px 0px 0px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u50137_text {
  6673. border-width:0px;
  6674. white-space:nowrap;
  6675. text-transform:none;
  6676. }
  6677. #u50138_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:49px;
  6683. height:25px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 0);
  6686. border-left:0px;
  6687. border-top:0px;
  6688. border-right:0px;
  6689. border-radius:0px;
  6690. border-bottom-right-radius:0px;
  6691. border-bottom-left-radius:0px;
  6692. filter:drop-shadow(none);
  6693. transition:none;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:12px;
  6698. color:#7F7F7F;
  6699. line-height:25px;
  6700. }
  6701. #u50138 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:1470px;
  6705. top:240px;
  6706. width:49px;
  6707. height:25px;
  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:12px;
  6715. color:#7F7F7F;
  6716. line-height:25px;
  6717. }
  6718. #u50138 .text {
  6719. position:absolute;
  6720. align-self:flex-start;
  6721. padding:0px 0px 0px 0px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u50138_text {
  6726. border-width:0px;
  6727. white-space:nowrap;
  6728. text-transform:none;
  6729. }
  6730. #u50139 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:0px;
  6736. height:0px;
  6737. }
  6738. #u50140_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:300px;
  6744. height:149px;
  6745. background:inherit;
  6746. background-color:rgba(255, 255, 255, 1);
  6747. border-radius:10px;
  6748. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6749. transition:none;
  6750. }
  6751. #u50140 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:505px;
  6755. top:431px;
  6756. width:300px;
  6757. height:149px;
  6758. display:flex;
  6759. transition:none;
  6760. transform-origin:50% 50%;
  6761. }
  6762. #u50140 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 2px 2px 2px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u50140_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. visibility:hidden;
  6774. }
  6775. #u50141_div {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:253px;
  6781. height:30px;
  6782. background:inherit;
  6783. background-color:rgba(255, 255, 255, 0);
  6784. border-left:0px;
  6785. border-top:0px;
  6786. border-right:0px;
  6787. border-radius:0px;
  6788. border-bottom-right-radius:0px;
  6789. border-bottom-left-radius:0px;
  6790. filter:drop-shadow(none);
  6791. transition:none;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:18px;
  6796. text-align:center;
  6797. line-height:30px;
  6798. }
  6799. #u50141 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:528px;
  6803. top:465px;
  6804. width:253px;
  6805. height:30px;
  6806. display:flex;
  6807. transition:none;
  6808. transform-origin:50% 50%;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:18px;
  6813. text-align:center;
  6814. line-height:30px;
  6815. }
  6816. #u50141 .text {
  6817. position:absolute;
  6818. align-self:flex-start;
  6819. padding:0px 0px 0px 0px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u50141_text {
  6824. border-width:0px;
  6825. white-space:nowrap;
  6826. text-transform:none;
  6827. }
  6828. #u50142 {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:505px;
  6832. top:531px;
  6833. width:300px;
  6834. height:1px;
  6835. display:flex;
  6836. transition:none;
  6837. }
  6838. #u50142 .text {
  6839. position:absolute;
  6840. align-self:center;
  6841. padding:2px 2px 2px 2px;
  6842. box-sizing:border-box;
  6843. width:100%;
  6844. }
  6845. #u50142_img {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:301px;
  6851. height:2px;
  6852. }
  6853. #u50142_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u50143_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:41px;
  6865. height:30px;
  6866. background:inherit;
  6867. background-color:rgba(255, 255, 255, 0);
  6868. border-left:0px;
  6869. border-top:0px;
  6870. border-right:0px;
  6871. border-radius:0px;
  6872. border-bottom-right-radius:0px;
  6873. border-bottom-left-radius:0px;
  6874. filter:drop-shadow(none);
  6875. transition:none;
  6876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6877. font-weight:400;
  6878. font-style:normal;
  6879. font-size:18px;
  6880. color:#1890FF;
  6881. text-align:center;
  6882. line-height:30px;
  6883. }
  6884. #u50143 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:721px;
  6888. top:541px;
  6889. width:41px;
  6890. height:30px;
  6891. display:flex;
  6892. transition:none;
  6893. transform-origin:50% 50%;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:18px;
  6898. color:#1890FF;
  6899. text-align:center;
  6900. line-height:30px;
  6901. }
  6902. #u50143 .text {
  6903. position:absolute;
  6904. align-self:flex-start;
  6905. padding:0px 0px 0px 0px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u50143_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. }
  6914. #u50144_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:41px;
  6920. height:30px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 0);
  6923. border-left:0px;
  6924. border-top:0px;
  6925. border-right:0px;
  6926. border-radius:0px;
  6927. border-bottom-right-radius:0px;
  6928. border-bottom-left-radius:0px;
  6929. filter:drop-shadow(none);
  6930. transition:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:18px;
  6935. color:#1890FF;
  6936. text-align:center;
  6937. line-height:30px;
  6938. }
  6939. #u50144 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:551px;
  6943. top:541px;
  6944. width:41px;
  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:18px;
  6953. color:#1890FF;
  6954. text-align:center;
  6955. line-height:30px;
  6956. }
  6957. #u50144 .text {
  6958. position:absolute;
  6959. align-self:flex-start;
  6960. padding:0px 0px 0px 0px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u50144_text {
  6965. border-width:0px;
  6966. word-wrap:break-word;
  6967. text-transform:none;
  6968. }
  6969. #u50145 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:654px;
  6973. top:532px;
  6974. width:1px;
  6975. height:48px;
  6976. display:flex;
  6977. transition:none;
  6978. }
  6979. #u50145 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 2px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u50145_img {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:2px;
  6992. height:49px;
  6993. }
  6994. #u50145_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. visibility:hidden;
  6999. }
  7000. #u50146 {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:0px;
  7006. height:0px;
  7007. }
  7008. #u50147_div {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:300px;
  7014. height:149px;
  7015. background:inherit;
  7016. background-color:rgba(255, 255, 255, 1);
  7017. border-radius:10px;
  7018. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  7019. transition:none;
  7020. }
  7021. #u50147 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:505px;
  7025. top:595px;
  7026. width:300px;
  7027. height:149px;
  7028. display:flex;
  7029. transition:none;
  7030. transform-origin:50% 50%;
  7031. }
  7032. #u50147 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:2px 2px 2px 2px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u50147_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. visibility:hidden;
  7044. }
  7045. #u50148_div {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:253px;
  7051. height:30px;
  7052. background:inherit;
  7053. background-color:rgba(255, 255, 255, 0);
  7054. border-left:0px;
  7055. border-top:0px;
  7056. border-right:0px;
  7057. border-radius:0px;
  7058. border-bottom-right-radius:0px;
  7059. border-bottom-left-radius:0px;
  7060. filter:drop-shadow(none);
  7061. transition:none;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:18px;
  7066. text-align:center;
  7067. line-height:30px;
  7068. }
  7069. #u50148 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:528px;
  7073. top:629px;
  7074. width:253px;
  7075. height:30px;
  7076. display:flex;
  7077. transition:none;
  7078. transform-origin:50% 50%;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:18px;
  7083. text-align:center;
  7084. line-height:30px;
  7085. }
  7086. #u50148 .text {
  7087. position:absolute;
  7088. align-self:flex-start;
  7089. padding:0px 0px 0px 0px;
  7090. box-sizing:border-box;
  7091. width:100%;
  7092. }
  7093. #u50148_text {
  7094. border-width:0px;
  7095. white-space:nowrap;
  7096. text-transform:none;
  7097. }
  7098. #u50149 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:505px;
  7102. top:695px;
  7103. width:300px;
  7104. height:1px;
  7105. display:flex;
  7106. transition:none;
  7107. }
  7108. #u50149 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:2px 2px 2px 2px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u50149_img {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:301px;
  7121. height:2px;
  7122. }
  7123. #u50149_text {
  7124. border-width:0px;
  7125. word-wrap:break-word;
  7126. text-transform:none;
  7127. visibility:hidden;
  7128. }
  7129. #u50150_div {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:41px;
  7135. height:30px;
  7136. background:inherit;
  7137. background-color:rgba(255, 255, 255, 0);
  7138. border-left:0px;
  7139. border-top:0px;
  7140. border-right:0px;
  7141. border-radius:0px;
  7142. border-bottom-right-radius:0px;
  7143. border-bottom-left-radius:0px;
  7144. filter:drop-shadow(none);
  7145. transition:none;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. font-size:18px;
  7150. color:#1890FF;
  7151. text-align:center;
  7152. line-height:30px;
  7153. }
  7154. #u50150 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:721px;
  7158. top:705px;
  7159. width:41px;
  7160. height:30px;
  7161. display:flex;
  7162. transition:none;
  7163. transform-origin:50% 50%;
  7164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:18px;
  7168. color:#1890FF;
  7169. text-align:center;
  7170. line-height:30px;
  7171. }
  7172. #u50150 .text {
  7173. position:absolute;
  7174. align-self:flex-start;
  7175. padding:0px 0px 0px 0px;
  7176. box-sizing:border-box;
  7177. width:100%;
  7178. }
  7179. #u50150_text {
  7180. border-width:0px;
  7181. word-wrap:break-word;
  7182. text-transform:none;
  7183. }
  7184. #u50151_div {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:41px;
  7190. height:30px;
  7191. background:inherit;
  7192. background-color:rgba(255, 255, 255, 0);
  7193. border-left:0px;
  7194. border-top:0px;
  7195. border-right:0px;
  7196. border-radius:0px;
  7197. border-bottom-right-radius:0px;
  7198. border-bottom-left-radius:0px;
  7199. filter:drop-shadow(none);
  7200. transition:none;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:18px;
  7205. color:#1890FF;
  7206. text-align:center;
  7207. line-height:30px;
  7208. }
  7209. #u50151 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:551px;
  7213. top:705px;
  7214. width:41px;
  7215. height:30px;
  7216. display:flex;
  7217. transition:none;
  7218. transform-origin:50% 50%;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:18px;
  7223. color:#1890FF;
  7224. text-align:center;
  7225. line-height:30px;
  7226. }
  7227. #u50151 .text {
  7228. position:absolute;
  7229. align-self:flex-start;
  7230. padding:0px 0px 0px 0px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u50151_text {
  7235. border-width:0px;
  7236. word-wrap:break-word;
  7237. text-transform:none;
  7238. }
  7239. #u50152 {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:654px;
  7243. top:696px;
  7244. width:1px;
  7245. height:48px;
  7246. display:flex;
  7247. transition:none;
  7248. }
  7249. #u50152 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u50152_img {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:2px;
  7262. height:49px;
  7263. }
  7264. #u50152_text {
  7265. border-width:0px;
  7266. word-wrap:break-word;
  7267. text-transform:none;
  7268. visibility:hidden;
  7269. }
  7270. #u50153 {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:0px;
  7276. height:0px;
  7277. }
  7278. #u50154_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:375px;
  7284. height:200px;
  7285. background:inherit;
  7286. background-color:rgba(255, 255, 255, 1);
  7287. border-left:0px;
  7288. border-top:0px;
  7289. border-right:0px;
  7290. border-radius:0px;
  7291. border-bottom-right-radius:0px;
  7292. border-bottom-left-radius:0px;
  7293. filter:drop-shadow(none);
  7294. transition:none;
  7295. }
  7296. #u50154 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:940px;
  7300. top:155px;
  7301. width:375px;
  7302. height:200px;
  7303. display:flex;
  7304. transition:none;
  7305. transform-origin:50% 50%;
  7306. }
  7307. #u50154 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 2px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u50154_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u50155_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:181px;
  7326. height:80px;
  7327. background:inherit;
  7328. background-color:rgba(255, 255, 255, 0);
  7329. border-left:0px;
  7330. border-top:0px;
  7331. border-right:0px;
  7332. border-radius:0px;
  7333. border-bottom-right-radius:0px;
  7334. border-bottom-left-radius:0px;
  7335. filter:drop-shadow(none);
  7336. transition:none;
  7337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:12px;
  7341. color:#7F7F7F;
  7342. line-height:20px;
  7343. }
  7344. #u50155 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:957px;
  7348. top:219px;
  7349. width:181px;
  7350. height:80px;
  7351. display:flex;
  7352. transition:none;
  7353. transform-origin:50% 50%;
  7354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7355. font-weight:400;
  7356. font-style:normal;
  7357. font-size:12px;
  7358. color:#7F7F7F;
  7359. line-height:20px;
  7360. }
  7361. #u50155 .text {
  7362. position:absolute;
  7363. align-self:flex-start;
  7364. padding:0px 0px 0px 0px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u50155_text {
  7369. border-width:0px;
  7370. white-space:nowrap;
  7371. text-transform:none;
  7372. }
  7373. #u50156 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:957px;
  7377. top:171px;
  7378. width:40px;
  7379. height:40px;
  7380. display:flex;
  7381. transition:none;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. }
  7386. #u50156 .text {
  7387. position:absolute;
  7388. align-self:center;
  7389. padding:2px 2px 2px 2px;
  7390. box-sizing:border-box;
  7391. width:100%;
  7392. }
  7393. #u50156_img {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:0px;
  7397. top:0px;
  7398. width:40px;
  7399. height:40px;
  7400. }
  7401. #u50156_text {
  7402. border-width:0px;
  7403. word-wrap:break-word;
  7404. text-transform:none;
  7405. }
  7406. #u50157_div {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:33px;
  7412. height:30px;
  7413. background:inherit;
  7414. background-color:rgba(255, 255, 255, 0);
  7415. border-left:0px;
  7416. border-top:0px;
  7417. border-right:0px;
  7418. border-radius:0px;
  7419. border-bottom-right-radius:0px;
  7420. border-bottom-left-radius:0px;
  7421. filter:drop-shadow(none);
  7422. transition:none;
  7423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:16px;
  7427. line-height:30px;
  7428. }
  7429. #u50157 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:1017px;
  7433. top:176px;
  7434. width:33px;
  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:16px;
  7443. line-height:30px;
  7444. }
  7445. #u50157 .text {
  7446. position:absolute;
  7447. align-self:flex-start;
  7448. padding:0px 0px 0px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u50157_text {
  7453. border-width:0px;
  7454. white-space:nowrap;
  7455. text-transform:none;
  7456. }
  7457. #u50158_div {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:85px;
  7463. height:30px;
  7464. background:inherit;
  7465. background-color:rgba(242, 242, 242, 1);
  7466. border-radius:40px;
  7467. filter:drop-shadow(none);
  7468. transition:none;
  7469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7470. font-weight:400;
  7471. font-style:normal;
  7472. font-size:12px;
  7473. color:#AAAAAA;
  7474. }
  7475. #u50158 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:1220px;
  7479. top:315px;
  7480. width:85px;
  7481. height:30px;
  7482. display:flex;
  7483. transition:none;
  7484. transform-origin:50% 50%;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:12px;
  7489. color:#AAAAAA;
  7490. }
  7491. #u50158 .text {
  7492. position:absolute;
  7493. align-self:center;
  7494. padding:2px 2px 2px 2px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u50158_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. }
  7503. #u50159 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:0px;
  7509. height:0px;
  7510. }
  7511. #u50160_div {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:375px;
  7517. height:80px;
  7518. background:inherit;
  7519. background-color:rgba(255, 255, 255, 1);
  7520. border-left:0px;
  7521. border-top:0px;
  7522. border-right:0px;
  7523. border-radius:0px;
  7524. border-bottom-right-radius:0px;
  7525. border-bottom-left-radius:0px;
  7526. filter:drop-shadow(none);
  7527. transition:none;
  7528. }
  7529. #u50160 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:1393px;
  7533. top:555px;
  7534. width:375px;
  7535. height:80px;
  7536. display:flex;
  7537. transition:none;
  7538. transform-origin:50% 50%;
  7539. }
  7540. #u50160 .text {
  7541. position:absolute;
  7542. align-self:center;
  7543. padding:2px 2px 2px 2px;
  7544. box-sizing:border-box;
  7545. width:100%;
  7546. }
  7547. #u50160_text {
  7548. border-width:0px;
  7549. word-wrap:break-word;
  7550. text-transform:none;
  7551. visibility:hidden;
  7552. }
  7553. #u50161_div {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:129px;
  7559. height:30px;
  7560. background:inherit;
  7561. background-color:rgba(255, 255, 255, 0);
  7562. border-left:0px;
  7563. border-top:0px;
  7564. border-right:0px;
  7565. border-radius:0px;
  7566. border-bottom-right-radius:0px;
  7567. border-bottom-left-radius:0px;
  7568. filter:drop-shadow(none);
  7569. transition:none;
  7570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. font-size:16px;
  7574. line-height:30px;
  7575. }
  7576. #u50161 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:1470px;
  7580. top:594px;
  7581. width:129px;
  7582. height:30px;
  7583. display:flex;
  7584. transition:none;
  7585. transform-origin:50% 50%;
  7586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7587. font-weight:400;
  7588. font-style:normal;
  7589. font-size:16px;
  7590. line-height:30px;
  7591. }
  7592. #u50161 .text {
  7593. position:absolute;
  7594. align-self:flex-start;
  7595. padding:0px 0px 0px 0px;
  7596. box-sizing:border-box;
  7597. width:100%;
  7598. }
  7599. #u50161_text {
  7600. border-width:0px;
  7601. white-space:nowrap;
  7602. text-transform:none;
  7603. }
  7604. #u50162_div {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:73px;
  7610. height:25px;
  7611. background:inherit;
  7612. background-color:rgba(255, 255, 255, 0);
  7613. border-left:0px;
  7614. border-top:0px;
  7615. border-right:0px;
  7616. border-radius:0px;
  7617. border-bottom-right-radius:0px;
  7618. border-bottom-left-radius:0px;
  7619. filter:drop-shadow(none);
  7620. transition:none;
  7621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:12px;
  7625. color:#7F7F7F;
  7626. line-height:25px;
  7627. }
  7628. #u50162 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:1470px;
  7632. top:569px;
  7633. width:73px;
  7634. height:25px;
  7635. display:flex;
  7636. transition:none;
  7637. transform-origin:50% 50%;
  7638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7639. font-weight:400;
  7640. font-style:normal;
  7641. font-size:12px;
  7642. color:#7F7F7F;
  7643. line-height:25px;
  7644. }
  7645. #u50162 .text {
  7646. position:absolute;
  7647. align-self:flex-start;
  7648. padding:0px 0px 0px 0px;
  7649. box-sizing:border-box;
  7650. width:100%;
  7651. }
  7652. #u50162_text {
  7653. border-width:0px;
  7654. white-space:nowrap;
  7655. text-transform:none;
  7656. }
  7657. #u50163 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:0px;
  7663. height:0px;
  7664. }
  7665. #u50164_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:375px;
  7671. height:80px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 1);
  7674. border-left:0px;
  7675. border-top:0px;
  7676. border-right:0px;
  7677. border-radius:0px;
  7678. border-bottom-right-radius:0px;
  7679. border-bottom-left-radius:0px;
  7680. filter:drop-shadow(none);
  7681. transition:none;
  7682. }
  7683. #u50164 {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:1851px;
  7687. top:312px;
  7688. width:375px;
  7689. height:80px;
  7690. display:flex;
  7691. transition:none;
  7692. transform-origin:50% 50%;
  7693. }
  7694. #u50164 .text {
  7695. position:absolute;
  7696. align-self:center;
  7697. padding:2px 2px 2px 2px;
  7698. box-sizing:border-box;
  7699. width:100%;
  7700. }
  7701. #u50164_text {
  7702. border-width:0px;
  7703. word-wrap:break-word;
  7704. text-transform:none;
  7705. visibility:hidden;
  7706. }
  7707. #u50165_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:177px;
  7713. height:30px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 0);
  7716. border-left:0px;
  7717. border-top:0px;
  7718. border-right:0px;
  7719. border-radius:0px;
  7720. border-bottom-right-radius:0px;
  7721. border-bottom-left-radius:0px;
  7722. filter:drop-shadow(none);
  7723. transition:none;
  7724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:16px;
  7728. line-height:30px;
  7729. }
  7730. #u50165 {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:1928px;
  7734. top:351px;
  7735. width:177px;
  7736. height:30px;
  7737. display:flex;
  7738. transition:none;
  7739. transform-origin:50% 50%;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:16px;
  7744. line-height:30px;
  7745. }
  7746. #u50165 .text {
  7747. position:absolute;
  7748. align-self:flex-start;
  7749. padding:0px 0px 0px 0px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u50165_text {
  7754. border-width:0px;
  7755. white-space:nowrap;
  7756. text-transform:none;
  7757. }
  7758. #u50166_div {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:49px;
  7764. height:25px;
  7765. background:inherit;
  7766. background-color:rgba(255, 255, 255, 0);
  7767. border-left:0px;
  7768. border-top:0px;
  7769. border-right:0px;
  7770. border-radius:0px;
  7771. border-bottom-right-radius:0px;
  7772. border-bottom-left-radius:0px;
  7773. filter:drop-shadow(none);
  7774. transition:none;
  7775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. font-size:12px;
  7779. color:#7F7F7F;
  7780. line-height:25px;
  7781. }
  7782. #u50166 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:1928px;
  7786. top:326px;
  7787. width:49px;
  7788. height:25px;
  7789. display:flex;
  7790. transition:none;
  7791. transform-origin:50% 50%;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:12px;
  7796. color:#7F7F7F;
  7797. line-height:25px;
  7798. }
  7799. #u50166 .text {
  7800. position:absolute;
  7801. align-self:flex-start;
  7802. padding:0px 0px 0px 0px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u50166_text {
  7807. border-width:0px;
  7808. white-space:nowrap;
  7809. text-transform:none;
  7810. }
  7811. #u50167 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:0px;
  7817. height:0px;
  7818. }
  7819. #u50168_div {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:375px;
  7825. height:80px;
  7826. background:inherit;
  7827. background-color:rgba(255, 255, 255, 1);
  7828. border-left:0px;
  7829. border-top:0px;
  7830. border-right:0px;
  7831. border-radius:0px;
  7832. border-bottom-right-radius:0px;
  7833. border-bottom-left-radius:0px;
  7834. filter:drop-shadow(none);
  7835. transition:none;
  7836. }
  7837. #u50168 {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:1851px;
  7841. top:393px;
  7842. width:375px;
  7843. height:80px;
  7844. display:flex;
  7845. transition:none;
  7846. transform-origin:50% 50%;
  7847. }
  7848. #u50168 .text {
  7849. position:absolute;
  7850. align-self:center;
  7851. padding:2px 2px 2px 2px;
  7852. box-sizing:border-box;
  7853. width:100%;
  7854. }
  7855. #u50168_text {
  7856. border-width:0px;
  7857. word-wrap:break-word;
  7858. text-transform:none;
  7859. visibility:hidden;
  7860. }
  7861. #u50169_div {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:33px;
  7867. height:30px;
  7868. background:inherit;
  7869. background-color:rgba(255, 255, 255, 0);
  7870. border-left:0px;
  7871. border-top:0px;
  7872. border-right:0px;
  7873. border-radius:0px;
  7874. border-bottom-right-radius:0px;
  7875. border-bottom-left-radius:0px;
  7876. filter:drop-shadow(none);
  7877. transition:none;
  7878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7879. font-weight:400;
  7880. font-style:normal;
  7881. font-size:16px;
  7882. line-height:30px;
  7883. }
  7884. #u50169 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:1928px;
  7888. top:432px;
  7889. width:33px;
  7890. height:30px;
  7891. display:flex;
  7892. transition:none;
  7893. transform-origin:50% 50%;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:16px;
  7898. line-height:30px;
  7899. }
  7900. #u50169 .text {
  7901. position:absolute;
  7902. align-self:flex-start;
  7903. padding:0px 0px 0px 0px;
  7904. box-sizing:border-box;
  7905. width:100%;
  7906. }
  7907. #u50169_text {
  7908. border-width:0px;
  7909. white-space:nowrap;
  7910. text-transform:none;
  7911. }
  7912. #u50170_div {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:73px;
  7918. height:25px;
  7919. background:inherit;
  7920. background-color:rgba(255, 255, 255, 0);
  7921. border-left:0px;
  7922. border-top:0px;
  7923. border-right:0px;
  7924. border-radius:0px;
  7925. border-bottom-right-radius:0px;
  7926. border-bottom-left-radius:0px;
  7927. filter:drop-shadow(none);
  7928. transition:none;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:12px;
  7933. color:#7F7F7F;
  7934. line-height:25px;
  7935. }
  7936. #u50170 {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:1928px;
  7940. top:407px;
  7941. width:73px;
  7942. height:25px;
  7943. display:flex;
  7944. transition:none;
  7945. transform-origin:50% 50%;
  7946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:12px;
  7950. color:#7F7F7F;
  7951. line-height:25px;
  7952. }
  7953. #u50170 .text {
  7954. position:absolute;
  7955. align-self:flex-start;
  7956. padding:0px 0px 0px 0px;
  7957. box-sizing:border-box;
  7958. width:100%;
  7959. }
  7960. #u50170_text {
  7961. border-width:0px;
  7962. white-space:nowrap;
  7963. text-transform:none;
  7964. }
  7965. #u50171 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:0px;
  7971. height:0px;
  7972. }
  7973. #u50172_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:375px;
  7979. height:80px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 1);
  7982. border-left:0px;
  7983. border-top:0px;
  7984. border-right:0px;
  7985. border-radius:0px;
  7986. border-bottom-right-radius:0px;
  7987. border-bottom-left-radius:0px;
  7988. filter:drop-shadow(none);
  7989. transition:none;
  7990. }
  7991. #u50172 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:1851px;
  7995. top:474px;
  7996. width:375px;
  7997. height:80px;
  7998. display:flex;
  7999. transition:none;
  8000. transform-origin:50% 50%;
  8001. }
  8002. #u50172 .text {
  8003. position:absolute;
  8004. align-self:center;
  8005. padding:2px 2px 2px 2px;
  8006. box-sizing:border-box;
  8007. width:100%;
  8008. }
  8009. #u50172_text {
  8010. border-width:0px;
  8011. word-wrap:break-word;
  8012. text-transform:none;
  8013. visibility:hidden;
  8014. }
  8015. #u50173_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:129px;
  8021. height:30px;
  8022. background:inherit;
  8023. background-color:rgba(255, 255, 255, 0);
  8024. border-left:0px;
  8025. border-top:0px;
  8026. border-right:0px;
  8027. border-radius:0px;
  8028. border-bottom-right-radius:0px;
  8029. border-bottom-left-radius:0px;
  8030. filter:drop-shadow(none);
  8031. transition:none;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:16px;
  8036. line-height:30px;
  8037. }
  8038. #u50173 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:1928px;
  8042. top:513px;
  8043. width:129px;
  8044. height:30px;
  8045. display:flex;
  8046. transition:none;
  8047. transform-origin:50% 50%;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:16px;
  8052. line-height:30px;
  8053. }
  8054. #u50173 .text {
  8055. position:absolute;
  8056. align-self:flex-start;
  8057. padding:0px 0px 0px 0px;
  8058. box-sizing:border-box;
  8059. width:100%;
  8060. }
  8061. #u50173_text {
  8062. border-width:0px;
  8063. white-space:nowrap;
  8064. text-transform:none;
  8065. }
  8066. #u50174_div {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:73px;
  8072. height:25px;
  8073. background:inherit;
  8074. background-color:rgba(255, 255, 255, 0);
  8075. border-left:0px;
  8076. border-top:0px;
  8077. border-right:0px;
  8078. border-radius:0px;
  8079. border-bottom-right-radius:0px;
  8080. border-bottom-left-radius:0px;
  8081. filter:drop-shadow(none);
  8082. transition:none;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:12px;
  8087. color:#7F7F7F;
  8088. line-height:25px;
  8089. }
  8090. #u50174 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:1928px;
  8094. top:488px;
  8095. width:73px;
  8096. height:25px;
  8097. display:flex;
  8098. transition:none;
  8099. transform-origin:50% 50%;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:12px;
  8104. color:#7F7F7F;
  8105. line-height:25px;
  8106. }
  8107. #u50174 .text {
  8108. position:absolute;
  8109. align-self:flex-start;
  8110. padding:0px 0px 0px 0px;
  8111. box-sizing:border-box;
  8112. width:100%;
  8113. }
  8114. #u50174_text {
  8115. border-width:0px;
  8116. white-space:nowrap;
  8117. text-transform:none;
  8118. }
  8119. #u50175_div {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:375px;
  8125. height:60px;
  8126. background:inherit;
  8127. background-color:rgba(255, 255, 255, 1);
  8128. border-left:0px;
  8129. border-top:0px;
  8130. border-right:0px;
  8131. border-radius:0px;
  8132. border-bottom-right-radius:0px;
  8133. border-bottom-left-radius:0px;
  8134. filter:drop-shadow(none);
  8135. transition:none;
  8136. }
  8137. #u50175 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:1851px;
  8141. top:636px;
  8142. width:375px;
  8143. height:60px;
  8144. display:flex;
  8145. transition:none;
  8146. transform-origin:50% 50%;
  8147. }
  8148. #u50175 .text {
  8149. position:absolute;
  8150. align-self:center;
  8151. padding:2px 2px 2px 2px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u50175_text {
  8156. border-width:0px;
  8157. word-wrap:break-word;
  8158. text-transform:none;
  8159. visibility:hidden;
  8160. }
  8161. #u50176 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:0px;
  8167. height:0px;
  8168. }
  8169. #u50177_div {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:375px;
  8175. height:80px;
  8176. background:inherit;
  8177. background-color:rgba(255, 255, 255, 1);
  8178. border-left:0px;
  8179. border-top:0px;
  8180. border-right:0px;
  8181. border-radius:0px;
  8182. border-bottom-right-radius:0px;
  8183. border-bottom-left-radius:0px;
  8184. filter:drop-shadow(none);
  8185. transition:none;
  8186. }
  8187. #u50177 {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:1851px;
  8191. top:231px;
  8192. width:375px;
  8193. height:80px;
  8194. display:flex;
  8195. transition:none;
  8196. transform-origin:50% 50%;
  8197. }
  8198. #u50177 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u50177_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u50178_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:33px;
  8217. height:30px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 0);
  8220. border-left:0px;
  8221. border-top:0px;
  8222. border-right:0px;
  8223. border-radius:0px;
  8224. border-bottom-right-radius:0px;
  8225. border-bottom-left-radius:0px;
  8226. filter:drop-shadow(none);
  8227. transition:none;
  8228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8229. font-weight:400;
  8230. font-style:normal;
  8231. font-size:16px;
  8232. line-height:30px;
  8233. }
  8234. #u50178 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:1928px;
  8238. top:265px;
  8239. width:33px;
  8240. height:30px;
  8241. display:flex;
  8242. transition:none;
  8243. transform-origin:50% 50%;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:16px;
  8248. line-height:30px;
  8249. }
  8250. #u50178 .text {
  8251. position:absolute;
  8252. align-self:flex-start;
  8253. padding:0px 0px 0px 0px;
  8254. box-sizing:border-box;
  8255. width:100%;
  8256. }
  8257. #u50178_text {
  8258. border-width:0px;
  8259. white-space:nowrap;
  8260. text-transform:none;
  8261. }
  8262. #u50179_div {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:49px;
  8268. height:25px;
  8269. background:inherit;
  8270. background-color:rgba(255, 255, 255, 0);
  8271. border-left:0px;
  8272. border-top:0px;
  8273. border-right:0px;
  8274. border-radius:0px;
  8275. border-bottom-right-radius:0px;
  8276. border-bottom-left-radius:0px;
  8277. filter:drop-shadow(none);
  8278. transition:none;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:12px;
  8283. color:#7F7F7F;
  8284. line-height:25px;
  8285. }
  8286. #u50179 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:1928px;
  8290. top:240px;
  8291. width:49px;
  8292. height:25px;
  8293. display:flex;
  8294. transition:none;
  8295. transform-origin:50% 50%;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:12px;
  8300. color:#7F7F7F;
  8301. line-height:25px;
  8302. }
  8303. #u50179 .text {
  8304. position:absolute;
  8305. align-self:flex-start;
  8306. padding:0px 0px 0px 0px;
  8307. box-sizing:border-box;
  8308. width:100%;
  8309. }
  8310. #u50179_text {
  8311. border-width:0px;
  8312. white-space:nowrap;
  8313. text-transform:none;
  8314. }
  8315. #u50180 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:0px;
  8319. top:0px;
  8320. width:0px;
  8321. height:0px;
  8322. }
  8323. #u50181_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:375px;
  8329. height:80px;
  8330. background:inherit;
  8331. background-color:rgba(255, 255, 255, 1);
  8332. border-left:0px;
  8333. border-top:0px;
  8334. border-right:0px;
  8335. border-radius:0px;
  8336. border-bottom-right-radius:0px;
  8337. border-bottom-left-radius:0px;
  8338. filter:drop-shadow(none);
  8339. transition:none;
  8340. }
  8341. #u50181 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1851px;
  8345. top:555px;
  8346. width:375px;
  8347. height:80px;
  8348. display:flex;
  8349. transition:none;
  8350. transform-origin:50% 50%;
  8351. }
  8352. #u50181 .text {
  8353. position:absolute;
  8354. align-self:center;
  8355. padding:2px 2px 2px 2px;
  8356. box-sizing:border-box;
  8357. width:100%;
  8358. }
  8359. #u50181_text {
  8360. border-width:0px;
  8361. word-wrap:break-word;
  8362. text-transform:none;
  8363. visibility:hidden;
  8364. }
  8365. #u50182_div {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:129px;
  8371. height:30px;
  8372. background:inherit;
  8373. background-color:rgba(255, 255, 255, 0);
  8374. border-left:0px;
  8375. border-top:0px;
  8376. border-right:0px;
  8377. border-radius:0px;
  8378. border-bottom-right-radius:0px;
  8379. border-bottom-left-radius:0px;
  8380. filter:drop-shadow(none);
  8381. transition:none;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:16px;
  8386. line-height:30px;
  8387. }
  8388. #u50182 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:1928px;
  8392. top:594px;
  8393. width:129px;
  8394. height:30px;
  8395. display:flex;
  8396. transition:none;
  8397. transform-origin:50% 50%;
  8398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:16px;
  8402. line-height:30px;
  8403. }
  8404. #u50182 .text {
  8405. position:absolute;
  8406. align-self:flex-start;
  8407. padding:0px 0px 0px 0px;
  8408. box-sizing:border-box;
  8409. width:100%;
  8410. }
  8411. #u50182_text {
  8412. border-width:0px;
  8413. white-space:nowrap;
  8414. text-transform:none;
  8415. }
  8416. #u50183_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:73px;
  8422. height:25px;
  8423. background:inherit;
  8424. background-color:rgba(255, 255, 255, 0);
  8425. border-left:0px;
  8426. border-top:0px;
  8427. border-right:0px;
  8428. border-radius:0px;
  8429. border-bottom-right-radius:0px;
  8430. border-bottom-left-radius:0px;
  8431. filter:drop-shadow(none);
  8432. transition:none;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:12px;
  8437. color:#7F7F7F;
  8438. line-height:25px;
  8439. }
  8440. #u50183 {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:1928px;
  8444. top:569px;
  8445. width:73px;
  8446. height:25px;
  8447. display:flex;
  8448. transition:none;
  8449. transform-origin:50% 50%;
  8450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:12px;
  8454. color:#7F7F7F;
  8455. line-height:25px;
  8456. }
  8457. #u50183 .text {
  8458. position:absolute;
  8459. align-self:flex-start;
  8460. padding:0px 0px 0px 0px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u50183_text {
  8465. border-width:0px;
  8466. white-space:nowrap;
  8467. text-transform:none;
  8468. }
  8469. #u50184_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:129px;
  8475. height:30px;
  8476. background:inherit;
  8477. background-color:rgba(255, 255, 255, 0);
  8478. border-left:0px;
  8479. border-top:0px;
  8480. border-right:0px;
  8481. border-radius:0px;
  8482. border-bottom-right-radius:0px;
  8483. border-bottom-left-radius:0px;
  8484. filter:drop-shadow(none);
  8485. transition:none;
  8486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. font-size:16px;
  8490. line-height:30px;
  8491. }
  8492. #u50184 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:1928px;
  8496. top:651px;
  8497. width:129px;
  8498. height:30px;
  8499. display:flex;
  8500. transition:none;
  8501. transform-origin:50% 50%;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:16px;
  8506. line-height:30px;
  8507. }
  8508. #u50184 .text {
  8509. position:absolute;
  8510. align-self:flex-start;
  8511. padding:0px 0px 0px 0px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u50184_text {
  8516. border-width:0px;
  8517. white-space:nowrap;
  8518. text-transform:none;
  8519. }
  8520. #u50185 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:0px;
  8526. height:0px;
  8527. }
  8528. #u50186_div {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:0px;
  8532. top:0px;
  8533. width:358px;
  8534. height:200px;
  8535. background:inherit;
  8536. background-color:rgba(255, 255, 255, 1);
  8537. border-radius:4px;
  8538. filter:drop-shadow(none);
  8539. transition:none;
  8540. }
  8541. #u50186 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:38px;
  8545. top:155px;
  8546. width:358px;
  8547. height:200px;
  8548. display:flex;
  8549. transition:none;
  8550. transform-origin:50% 50%;
  8551. }
  8552. #u50186 .text {
  8553. position:absolute;
  8554. align-self:center;
  8555. padding:2px 2px 2px 2px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u50186_text {
  8560. border-width:0px;
  8561. word-wrap:break-word;
  8562. text-transform:none;
  8563. visibility:hidden;
  8564. }
  8565. #u50187_div {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:0px;
  8569. top:0px;
  8570. width:48px;
  8571. height:50px;
  8572. background:inherit;
  8573. background-color:rgba(24, 144, 255, 1);
  8574. border-radius:4px;
  8575. filter:drop-shadow(none);
  8576. transition:none;
  8577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8578. font-weight:400;
  8579. font-style:normal;
  8580. color:#FFFFFF;
  8581. }
  8582. #u50187 {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:54px;
  8586. top:175px;
  8587. width:48px;
  8588. height:50px;
  8589. display:flex;
  8590. transition:none;
  8591. transform-origin:50% 50%;
  8592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. color:#FFFFFF;
  8596. }
  8597. #u50187 .text {
  8598. position:absolute;
  8599. align-self:center;
  8600. padding:2px 2px 2px 2px;
  8601. box-sizing:border-box;
  8602. width:100%;
  8603. }
  8604. #u50187_text {
  8605. border-width:0px;
  8606. word-wrap:break-word;
  8607. text-transform:none;
  8608. }
  8609. #u50188_div {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:0px;
  8614. width:127px;
  8615. height:30px;
  8616. background:inherit;
  8617. background-color:rgba(255, 255, 255, 0);
  8618. border-left:0px;
  8619. border-top:0px;
  8620. border-right:0px;
  8621. border-radius:0px;
  8622. border-bottom-right-radius:0px;
  8623. border-bottom-left-radius:0px;
  8624. filter:drop-shadow(none);
  8625. transition:none;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:18px;
  8630. line-height:30px;
  8631. }
  8632. #u50188 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:116px;
  8636. top:175px;
  8637. width:127px;
  8638. height:30px;
  8639. display:flex;
  8640. transition:none;
  8641. transform-origin:50% 50%;
  8642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8643. font-weight:400;
  8644. font-style:normal;
  8645. font-size:18px;
  8646. line-height:30px;
  8647. }
  8648. #u50188 .text {
  8649. position:absolute;
  8650. align-self:flex-start;
  8651. padding:0px 0px 0px 0px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u50188_text {
  8656. border-width:0px;
  8657. white-space:nowrap;
  8658. text-transform:none;
  8659. }
  8660. #u50189_div {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:181px;
  8666. height:80px;
  8667. background:inherit;
  8668. background-color:rgba(2, 167, 240, 0);
  8669. border-radius:4px;
  8670. filter:drop-shadow(none);
  8671. transition:none;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:12px;
  8676. color:#7F7F7F;
  8677. line-height:20px;
  8678. }
  8679. #u50189 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:120px;
  8683. top:234px;
  8684. width:181px;
  8685. height:80px;
  8686. display:flex;
  8687. transition:none;
  8688. transform-origin:50% 50%;
  8689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:12px;
  8693. color:#7F7F7F;
  8694. line-height:20px;
  8695. }
  8696. #u50189 .text {
  8697. position:absolute;
  8698. align-self:center;
  8699. padding:0px 0px 0px 0px;
  8700. box-sizing:border-box;
  8701. width:100%;
  8702. }
  8703. #u50189_text {
  8704. border-width:0px;
  8705. white-space:nowrap;
  8706. text-transform:none;
  8707. }
  8708. #u50190 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:0px;
  8714. height:0px;
  8715. }
  8716. #u50191_div {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:0px;
  8720. top:0px;
  8721. width:60px;
  8722. height:20px;
  8723. background:inherit;
  8724. background-color:rgba(255, 255, 255, 1);
  8725. box-sizing:border-box;
  8726. border-width:1px;
  8727. border-style:solid;
  8728. border-color:rgba(215, 215, 215, 1);
  8729. border-radius:2px;
  8730. filter:drop-shadow(none);
  8731. transition:none;
  8732. }
  8733. #u50191 {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:116px;
  8737. top:205px;
  8738. width:60px;
  8739. height:20px;
  8740. display:flex;
  8741. transition:none;
  8742. transform-origin:50% 50%;
  8743. }
  8744. #u50191 .text {
  8745. position:absolute;
  8746. align-self:center;
  8747. padding:2px 2px 2px 2px;
  8748. box-sizing:border-box;
  8749. width:100%;
  8750. }
  8751. #u50191_text {
  8752. border-width:0px;
  8753. word-wrap:break-word;
  8754. text-transform:none;
  8755. visibility:hidden;
  8756. }
  8757. #u50192 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:0px;
  8763. height:0px;
  8764. }
  8765. #u50193_div {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:37px;
  8771. height:17px;
  8772. background:inherit;
  8773. background-color:rgba(255, 255, 255, 0);
  8774. border-left:0px;
  8775. border-top:0px;
  8776. border-right:0px;
  8777. border-radius:0px;
  8778. border-bottom-right-radius:0px;
  8779. border-bottom-left-radius:0px;
  8780. filter:drop-shadow(none);
  8781. transition:none;
  8782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:12px;
  8786. color:#7F7F7F;
  8787. }
  8788. #u50193 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:135px;
  8792. top:207px;
  8793. width:37px;
  8794. height:17px;
  8795. display:flex;
  8796. transition:none;
  8797. transform-origin:50% 50%;
  8798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:12px;
  8802. color:#7F7F7F;
  8803. }
  8804. #u50193 .text {
  8805. position:absolute;
  8806. align-self:flex-start;
  8807. padding:0px 0px 0px 0px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u50193_text {
  8812. border-width:0px;
  8813. white-space:nowrap;
  8814. text-transform:none;
  8815. }
  8816. #u50194 {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:0px;
  8822. height:0px;
  8823. }
  8824. #u50195 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:120px;
  8828. top:209px;
  8829. width:12px;
  8830. height:12px;
  8831. display:flex;
  8832. transition:none;
  8833. }
  8834. #u50195 .text {
  8835. position:absolute;
  8836. align-self:center;
  8837. padding:2px 2px 2px 2px;
  8838. box-sizing:border-box;
  8839. width:100%;
  8840. }
  8841. #u50195_img {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:0px;
  8845. top:0px;
  8846. width:12px;
  8847. height:12px;
  8848. }
  8849. #u50195_text {
  8850. border-width:0px;
  8851. word-wrap:break-word;
  8852. text-transform:none;
  8853. visibility:hidden;
  8854. }
  8855. #u50196 {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:123px;
  8859. top:213px;
  8860. width:6px;
  8861. height:4px;
  8862. display:flex;
  8863. transition:none;
  8864. }
  8865. #u50196 .text {
  8866. position:absolute;
  8867. align-self:center;
  8868. padding:2px 2px 2px 2px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u50196_img {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:6px;
  8878. height:4px;
  8879. }
  8880. #u50196_text {
  8881. border-width:0px;
  8882. word-wrap:break-word;
  8883. text-transform:none;
  8884. visibility:hidden;
  8885. }
  8886. #u50197_div {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:58px;
  8892. height:30px;
  8893. background:inherit;
  8894. background-color:rgba(255, 255, 255, 1);
  8895. box-sizing:border-box;
  8896. border-width:1px;
  8897. border-style:solid;
  8898. border-color:rgba(127, 127, 127, 1);
  8899. border-radius:40px;
  8900. filter:drop-shadow(none);
  8901. transition:none;
  8902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8903. font-weight:400;
  8904. font-style:normal;
  8905. font-size:12px;
  8906. }
  8907. #u50197 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:327px;
  8911. top:318px;
  8912. width:58px;
  8913. height:30px;
  8914. display:flex;
  8915. transition:none;
  8916. transform-origin:50% 50%;
  8917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:12px;
  8921. }
  8922. #u50197 .text {
  8923. position:absolute;
  8924. align-self:center;
  8925. padding:2px 2px 2px 2px;
  8926. box-sizing:border-box;
  8927. width:100%;
  8928. }
  8929. #u50197_text {
  8930. border-width:0px;
  8931. word-wrap:break-word;
  8932. text-transform:none;
  8933. }
  8934. #u50198_div {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:58px;
  8940. height:30px;
  8941. background:inherit;
  8942. background-color:rgba(255, 255, 255, 1);
  8943. box-sizing:border-box;
  8944. border-width:1px;
  8945. border-style:solid;
  8946. border-color:rgba(127, 127, 127, 1);
  8947. border-radius:40px;
  8948. filter:drop-shadow(none);
  8949. transition:none;
  8950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8951. font-weight:400;
  8952. font-style:normal;
  8953. font-size:12px;
  8954. }
  8955. #u50198 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:259px;
  8959. top:318px;
  8960. width:58px;
  8961. height:30px;
  8962. display:flex;
  8963. transition:none;
  8964. transform-origin:50% 50%;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:12px;
  8969. }
  8970. #u50198 .text {
  8971. position:absolute;
  8972. align-self:center;
  8973. padding:2px 2px 2px 2px;
  8974. box-sizing:border-box;
  8975. width:100%;
  8976. }
  8977. #u50198_text {
  8978. border-width:0px;
  8979. word-wrap:break-word;
  8980. text-transform:none;
  8981. }