styles.css 170 KB

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