styles.css 137 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1794px;
  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. #u49008 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u49009 {
  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. #u49009 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u49009_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u49009_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u49010_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. #u49010 {
  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. #u49010 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u49010_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u49011 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u49012_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. #u49012 {
  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. #u49012 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u49012_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u49013 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u49014 {
  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. #u49014 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u49014_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u49014_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u49015 {
  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. #u49015 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u49015_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u49015_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u49016 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u49017 {
  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. #u49017 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u49017_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u49017_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u49018 {
  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. #u49018 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u49018_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u49018_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u49019 {
  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. #u49019 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u49019_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u49019_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u49020 {
  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. #u49020 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u49020_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u49020_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u49021 {
  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. #u49021 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u49021_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u49021_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u49022_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. #u49022 {
  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. #u49022 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u49022_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u49023 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u49024 {
  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. #u49024 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u49024_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u49024_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u49025_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. #u49025 {
  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. #u49025 .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. #u49025_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u49026 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u49027 {
  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. #u49027 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u49027_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u49027_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u49028_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. #u49028 {
  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. #u49028 .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. #u49028_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u49029_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. #u49029 {
  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. #u49029 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u49029_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u49030 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u49031 {
  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. #u49031 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u49031_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u49031_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u49032_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. #u49032 {
  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. #u49032 .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. #u49032_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u49033 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u49034 {
  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. #u49034 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u49034_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u49034_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u49035_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. #u49035 {
  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. #u49035 .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. #u49035_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u49036_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. #u49036 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:105px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u49036 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u49036_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u49037_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:85px;
  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. #u49037 {
  866. border-width:0px;
  867. position:absolute;
  868. left:168px;
  869. top:73px;
  870. width:85px;
  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. #u49037 .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. #u49037_text {
  889. border-width:0px;
  890. white-space:nowrap;
  891. text-transform:none;
  892. }
  893. #u49038 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u49039 {
  902. border-width:0px;
  903. position:absolute;
  904. left:42px;
  905. top:79px;
  906. width:11px;
  907. height:18px;
  908. display:flex;
  909. transition:none;
  910. }
  911. #u49039 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u49039_img {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:11px;
  924. height:18px;
  925. }
  926. #u49039_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u49040 {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:0px;
  938. height:0px;
  939. }
  940. #u49041_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:375px;
  946. height:60px;
  947. background:inherit;
  948. background-color:rgba(255, 255, 255, 1);
  949. border-left:0px;
  950. border-top:0px;
  951. border-right:0px;
  952. border-radius:0px;
  953. border-bottom-right-radius:0px;
  954. border-bottom-left-radius:0px;
  955. filter:drop-shadow(none);
  956. transition:none;
  957. }
  958. #u49041 {
  959. border-width:0px;
  960. position:absolute;
  961. left:29px;
  962. top:135px;
  963. width:375px;
  964. height:60px;
  965. display:flex;
  966. transition:none;
  967. transform-origin:50% 50%;
  968. }
  969. #u49041 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:2px 2px 2px 2px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u49041_text {
  977. border-width:0px;
  978. word-wrap:break-word;
  979. text-transform:none;
  980. visibility:hidden;
  981. }
  982. #u49042 {
  983. border-width:0px;
  984. position:absolute;
  985. left:46px;
  986. top:151px;
  987. width:28px;
  988. height:28px;
  989. display:flex;
  990. transition:none;
  991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  992. font-weight:400;
  993. font-style:normal;
  994. font-size:11px;
  995. }
  996. #u49042 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u49042_img {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:28px;
  1009. height:28px;
  1010. }
  1011. #u49042_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. }
  1016. #u49043_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:209px;
  1022. height:30px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 0);
  1025. border-left:0px;
  1026. border-top:0px;
  1027. border-right:0px;
  1028. border-radius:0px;
  1029. border-bottom-right-radius:0px;
  1030. border-bottom-left-radius:0px;
  1031. filter:drop-shadow(none);
  1032. transition:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:16px;
  1037. line-height:30px;
  1038. }
  1039. #u49043 {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:86px;
  1043. top:150px;
  1044. width:209px;
  1045. height:30px;
  1046. display:flex;
  1047. transition:none;
  1048. transform-origin:50% 50%;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. font-size:16px;
  1053. line-height:30px;
  1054. }
  1055. #u49043 .text {
  1056. position:absolute;
  1057. align-self:flex-start;
  1058. padding:0px 0px 0px 0px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u49043_text {
  1063. border-width:0px;
  1064. white-space:nowrap;
  1065. text-transform:none;
  1066. }
  1067. #u49044_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:8px;
  1073. height:30px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 0);
  1076. border-left:0px;
  1077. border-top:0px;
  1078. border-right:0px;
  1079. border-radius:0px;
  1080. border-bottom-right-radius:0px;
  1081. border-bottom-left-radius:0px;
  1082. filter:drop-shadow(none);
  1083. transition:none;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:12px;
  1088. color:#7F7F7F;
  1089. line-height:30px;
  1090. }
  1091. #u49044 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:386px;
  1095. top:150px;
  1096. width:8px;
  1097. height:30px;
  1098. display:flex;
  1099. transition:none;
  1100. transform-origin:50% 50%;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:12px;
  1105. color:#7F7F7F;
  1106. line-height:30px;
  1107. }
  1108. #u49044 .text {
  1109. position:absolute;
  1110. align-self:flex-start;
  1111. padding:0px 0px 0px 0px;
  1112. box-sizing:border-box;
  1113. width:100%;
  1114. }
  1115. #u49044_text {
  1116. border-width:0px;
  1117. white-space:nowrap;
  1118. text-transform:none;
  1119. }
  1120. #u49045 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:455px;
  1124. top:0px;
  1125. width:433px;
  1126. height:865px;
  1127. }
  1128. #u49046 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:433px;
  1134. height:865px;
  1135. display:flex;
  1136. transition:none;
  1137. }
  1138. #u49046 .text {
  1139. position:absolute;
  1140. align-self:center;
  1141. padding:2px 2px 2px 2px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u49046_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:433px;
  1151. height:865px;
  1152. }
  1153. #u49046_text {
  1154. border-width:0px;
  1155. word-wrap:break-word;
  1156. text-transform:none;
  1157. visibility:hidden;
  1158. }
  1159. #u49047_div {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:375px;
  1165. height:40px;
  1166. background:inherit;
  1167. background-color:rgba(255, 255, 255, 1);
  1168. box-sizing:border-box;
  1169. border-width:1px;
  1170. border-style:solid;
  1171. border-color:rgba(215, 215, 215, 1);
  1172. border-left:0px;
  1173. border-top:0px;
  1174. border-right:0px;
  1175. border-radius:0px;
  1176. border-bottom-right-radius:0px;
  1177. border-bottom-left-radius:0px;
  1178. filter:drop-shadow(none);
  1179. transition:none;
  1180. }
  1181. #u49047 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:29px;
  1185. top:67px;
  1186. width:375px;
  1187. height:40px;
  1188. display:flex;
  1189. transition:none;
  1190. transform-origin:50% 50%;
  1191. }
  1192. #u49047 .text {
  1193. position:absolute;
  1194. align-self:center;
  1195. padding:2px 2px 2px 2px;
  1196. box-sizing:border-box;
  1197. width:100%;
  1198. }
  1199. #u49047_text {
  1200. border-width:0px;
  1201. word-wrap:break-word;
  1202. text-transform:none;
  1203. visibility:hidden;
  1204. }
  1205. #u49048 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:0px;
  1211. height:0px;
  1212. }
  1213. #u49049_div {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:88px;
  1219. height:32px;
  1220. background:inherit;
  1221. background-color:rgba(255, 255, 255, 1);
  1222. box-sizing:border-box;
  1223. border-width:1px;
  1224. border-style:solid;
  1225. border-color:rgba(242, 242, 242, 1);
  1226. border-radius:33px;
  1227. filter:drop-shadow(none);
  1228. transition:none;
  1229. }
  1230. #u49049 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:309px;
  1234. top:71px;
  1235. width:88px;
  1236. height:32px;
  1237. display:flex;
  1238. transition:none;
  1239. transform-origin:50% 50%;
  1240. }
  1241. #u49049 .text {
  1242. position:absolute;
  1243. align-self:center;
  1244. padding:2px 2px 2px 2px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u49049_text {
  1249. border-width:0px;
  1250. word-wrap:break-word;
  1251. text-transform:none;
  1252. visibility:hidden;
  1253. }
  1254. #u49050 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:0px;
  1260. height:0px;
  1261. }
  1262. #u49051 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:372px;
  1266. top:78px;
  1267. width:18px;
  1268. height:18px;
  1269. display:flex;
  1270. transition:none;
  1271. }
  1272. #u49051 .text {
  1273. position:absolute;
  1274. align-self:center;
  1275. padding:2px 2px 2px 2px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u49051_img {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:18px;
  1285. height:18px;
  1286. }
  1287. #u49051_text {
  1288. border-width:0px;
  1289. word-wrap:break-word;
  1290. text-transform:none;
  1291. visibility:hidden;
  1292. }
  1293. #u49052 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:378px;
  1297. top:84px;
  1298. width:6px;
  1299. height:6px;
  1300. display:flex;
  1301. transition:none;
  1302. }
  1303. #u49052 .text {
  1304. position:absolute;
  1305. align-self:center;
  1306. padding:2px 2px 2px 2px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u49052_img {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:6px;
  1316. height:6px;
  1317. }
  1318. #u49052_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. visibility:hidden;
  1323. }
  1324. #u49053 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:0px;
  1330. height:0px;
  1331. }
  1332. #u49054 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:323px;
  1336. top:85px;
  1337. width:5px;
  1338. height:5px;
  1339. display:flex;
  1340. transition:none;
  1341. }
  1342. #u49054 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:2px 2px 2px 2px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u49054_img {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:5px;
  1355. height:5px;
  1356. }
  1357. #u49054_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u49055 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:339px;
  1367. top:85px;
  1368. width:5px;
  1369. height:5px;
  1370. display:flex;
  1371. transition:none;
  1372. }
  1373. #u49055 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u49055_img {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:5px;
  1386. height:5px;
  1387. }
  1388. #u49055_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. visibility:hidden;
  1393. }
  1394. #u49056 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:330px;
  1398. top:84px;
  1399. width:7px;
  1400. height:7px;
  1401. display:flex;
  1402. transition:none;
  1403. }
  1404. #u49056 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 2px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u49056_img {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:7px;
  1417. height:7px;
  1418. }
  1419. #u49056_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. visibility:hidden;
  1424. }
  1425. #u49057 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:347px;
  1429. top:87px;
  1430. width:18px;
  1431. height:1px;
  1432. display:flex;
  1433. -webkit-transform:rotate(90deg);
  1434. -moz-transform:rotate(90deg);
  1435. -ms-transform:rotate(90deg);
  1436. transform:rotate(90deg);
  1437. transition:none;
  1438. }
  1439. #u49057 .text {
  1440. position:absolute;
  1441. align-self:center;
  1442. padding:2px 2px 2px 2px;
  1443. box-sizing:border-box;
  1444. width:100%;
  1445. }
  1446. #u49057_img {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:19px;
  1452. height:2px;
  1453. }
  1454. #u49057_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. visibility:hidden;
  1459. }
  1460. #u49058 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:29px;
  1464. top:24px;
  1465. width:375px;
  1466. height:44px;
  1467. display:flex;
  1468. transition:none;
  1469. }
  1470. #u49058 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u49058_img {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:375px;
  1483. height:44px;
  1484. }
  1485. #u49058_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. visibility:hidden;
  1490. }
  1491. #u49059_div {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:375px;
  1497. height:50px;
  1498. background:inherit;
  1499. background-color:rgba(255, 255, 255, 1);
  1500. box-sizing:border-box;
  1501. border-width:1px;
  1502. border-style:solid;
  1503. border-color:rgba(242, 242, 242, 1);
  1504. border-radius:26px;
  1505. border-top-left-radius:0px;
  1506. border-top-right-radius:0px;
  1507. filter:drop-shadow(none);
  1508. transition:none;
  1509. }
  1510. #u49059 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:29px;
  1514. top:788px;
  1515. width:375px;
  1516. height:50px;
  1517. display:flex;
  1518. transition:none;
  1519. transform-origin:50% 50%;
  1520. }
  1521. #u49059 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u49059_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u49060 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:0px;
  1540. height:0px;
  1541. }
  1542. #u49061 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:69px;
  1546. top:792px;
  1547. width:24px;
  1548. height:24px;
  1549. display:flex;
  1550. transition:none;
  1551. font-size:8px;
  1552. }
  1553. #u49061 .text {
  1554. position:absolute;
  1555. align-self:center;
  1556. padding:2px 2px 2px 2px;
  1557. box-sizing:border-box;
  1558. width:100%;
  1559. }
  1560. #u49061_img {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:24px;
  1566. height:24px;
  1567. }
  1568. #u49061_text {
  1569. border-width:0px;
  1570. word-wrap:break-word;
  1571. text-transform:none;
  1572. }
  1573. #u49062_div {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:25px;
  1579. height:17px;
  1580. background:inherit;
  1581. background-color:rgba(255, 255, 255, 0);
  1582. border-radius:0px;
  1583. filter:drop-shadow(none);
  1584. transition:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:12px;
  1589. }
  1590. #u49062 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:69px;
  1594. top:817px;
  1595. width:25px;
  1596. height:17px;
  1597. display:flex;
  1598. transition:none;
  1599. transform-origin:50% 50%;
  1600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1601. font-weight:400;
  1602. font-style:normal;
  1603. font-size:12px;
  1604. }
  1605. #u49062 .text {
  1606. position:absolute;
  1607. align-self:flex-start;
  1608. padding:0px 0px 0px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u49062_text {
  1613. border-width:0px;
  1614. white-space:nowrap;
  1615. text-transform:none;
  1616. }
  1617. #u49063 {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:0px;
  1623. height:0px;
  1624. }
  1625. #u49064 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:339px;
  1629. top:794px;
  1630. width:24px;
  1631. height:24px;
  1632. display:flex;
  1633. transition:none;
  1634. font-size:8px;
  1635. }
  1636. #u49064 .text {
  1637. position:absolute;
  1638. align-self:center;
  1639. padding:2px 2px 2px 2px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u49064_img {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:24px;
  1649. height:24px;
  1650. }
  1651. #u49064_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. }
  1656. #u49065_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:25px;
  1662. height:17px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 0);
  1665. border-radius:0px;
  1666. filter:drop-shadow(none);
  1667. transition:none;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:12px;
  1672. }
  1673. #u49065 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:339px;
  1677. top:819px;
  1678. width:25px;
  1679. height:17px;
  1680. display:flex;
  1681. transition:none;
  1682. transform-origin:50% 50%;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. font-size:12px;
  1687. }
  1688. #u49065 .text {
  1689. position:absolute;
  1690. align-self:flex-start;
  1691. padding:0px 0px 0px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u49065_text {
  1696. border-width:0px;
  1697. white-space:nowrap;
  1698. text-transform:none;
  1699. }
  1700. #u49066_div {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:375px;
  1706. height:681px;
  1707. background:inherit;
  1708. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1709. border-radius:0px;
  1710. filter:drop-shadow(none);
  1711. transition:none;
  1712. }
  1713. #u49066 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:29px;
  1717. top:107px;
  1718. width:375px;
  1719. height:681px;
  1720. display:flex;
  1721. transition:none;
  1722. transform-origin:50% 50%;
  1723. }
  1724. #u49066 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u49066_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u49067 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u49068 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:251px;
  1749. top:792px;
  1750. width:24px;
  1751. height:24px;
  1752. display:flex;
  1753. transition:none;
  1754. font-size:8px;
  1755. }
  1756. #u49068 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 2px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u49068_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:24px;
  1769. height:24px;
  1770. }
  1771. #u49068_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. }
  1776. #u49069_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:37px;
  1782. height:17px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border-radius:0px;
  1786. filter:drop-shadow(none);
  1787. transition:none;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. }
  1793. #u49069 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:245px;
  1797. top:817px;
  1798. width:37px;
  1799. height:17px;
  1800. display:flex;
  1801. transition:none;
  1802. transform-origin:50% 50%;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. }
  1808. #u49069 .text {
  1809. position:absolute;
  1810. align-self:flex-start;
  1811. padding:0px 0px 0px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u49069_text {
  1816. border-width:0px;
  1817. white-space:nowrap;
  1818. text-transform:none;
  1819. }
  1820. #u49070 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:0px;
  1826. height:0px;
  1827. }
  1828. #u49071 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:157px;
  1832. top:792px;
  1833. width:24px;
  1834. height:24px;
  1835. display:flex;
  1836. transition:none;
  1837. font-size:8px;
  1838. }
  1839. #u49071 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:2px 2px 2px 2px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u49071_img {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:24px;
  1852. height:24px;
  1853. }
  1854. #u49071_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. }
  1859. #u49072_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:37px;
  1865. height:17px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border-radius:0px;
  1869. filter:drop-shadow(none);
  1870. transition:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. }
  1876. #u49072 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:151px;
  1880. top:817px;
  1881. width:37px;
  1882. height:17px;
  1883. display:flex;
  1884. transition:none;
  1885. transform-origin:50% 50%;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. }
  1891. #u49072 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u49072_text {
  1899. border-width:0px;
  1900. white-space:nowrap;
  1901. text-transform:none;
  1902. }
  1903. #u49073_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:375px;
  1909. height:735px;
  1910. background:inherit;
  1911. background-color:rgba(242, 242, 242, 1);
  1912. border-top:0px;
  1913. border-radius:25px;
  1914. border-top-left-radius:0px;
  1915. border-top-right-radius:0px;
  1916. filter:drop-shadow(none);
  1917. transition:none;
  1918. }
  1919. #u49073 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:484px;
  1923. top:105px;
  1924. width:375px;
  1925. height:735px;
  1926. display:flex;
  1927. transition:none;
  1928. transform-origin:50% 50%;
  1929. }
  1930. #u49073 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u49073_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u49074_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:85px;
  1949. height:30px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border-left:0px;
  1953. border-top:0px;
  1954. border-right:0px;
  1955. border-radius:0px;
  1956. border-bottom-right-radius:0px;
  1957. border-bottom-left-radius:0px;
  1958. filter:drop-shadow(none);
  1959. transition:none;
  1960. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1961. font-weight:500;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. line-height:30px;
  1965. }
  1966. #u49074 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:623px;
  1970. top:73px;
  1971. width:85px;
  1972. height:30px;
  1973. display:flex;
  1974. transition:none;
  1975. transform-origin:50% 50%;
  1976. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1977. font-weight:500;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. line-height:30px;
  1981. }
  1982. #u49074 .text {
  1983. position:absolute;
  1984. align-self:flex-start;
  1985. padding:0px 0px 0px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u49074_text {
  1990. border-width:0px;
  1991. white-space:nowrap;
  1992. text-transform:none;
  1993. }
  1994. #u49075 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:0px;
  2000. height:0px;
  2001. }
  2002. #u49076 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:497px;
  2006. top:79px;
  2007. width:11px;
  2008. height:18px;
  2009. display:flex;
  2010. transition:none;
  2011. }
  2012. #u49076 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u49076_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:11px;
  2025. height:18px;
  2026. }
  2027. #u49076_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. visibility:hidden;
  2032. }
  2033. #u49077 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:0px;
  2039. height:0px;
  2040. }
  2041. #u49078_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:375px;
  2047. height:60px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 1);
  2050. border-left:0px;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-radius:0px;
  2054. border-bottom-right-radius:0px;
  2055. border-bottom-left-radius:0px;
  2056. filter:drop-shadow(none);
  2057. transition:none;
  2058. }
  2059. #u49078 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:29px;
  2063. top:196px;
  2064. width:375px;
  2065. height:60px;
  2066. display:flex;
  2067. transition:none;
  2068. transform-origin:50% 50%;
  2069. }
  2070. #u49078 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u49078_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u49079 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:46px;
  2087. top:212px;
  2088. width:28px;
  2089. height:28px;
  2090. display:flex;
  2091. transition:none;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:11px;
  2096. }
  2097. #u49079 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 2px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u49079_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:28px;
  2110. height:28px;
  2111. }
  2112. #u49079_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u49080_div {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:260px;
  2123. height:30px;
  2124. background:inherit;
  2125. background-color:rgba(255, 255, 255, 0);
  2126. border-left:0px;
  2127. border-top:0px;
  2128. border-right:0px;
  2129. border-radius:0px;
  2130. border-bottom-right-radius:0px;
  2131. border-bottom-left-radius:0px;
  2132. filter:drop-shadow(none);
  2133. transition:none;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:16px;
  2138. line-height:30px;
  2139. }
  2140. #u49080 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:85px;
  2144. top:211px;
  2145. width:260px;
  2146. height:30px;
  2147. display:flex;
  2148. transition:none;
  2149. transform-origin:50% 50%;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:16px;
  2154. line-height:30px;
  2155. }
  2156. #u49080 .text {
  2157. position:absolute;
  2158. align-self:flex-start;
  2159. padding:0px 0px 0px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u49080_text {
  2164. border-width:0px;
  2165. white-space:nowrap;
  2166. text-transform:none;
  2167. }
  2168. #u49081_div {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:8px;
  2174. height:30px;
  2175. background:inherit;
  2176. background-color:rgba(255, 255, 255, 0);
  2177. border-left:0px;
  2178. border-top:0px;
  2179. border-right:0px;
  2180. border-radius:0px;
  2181. border-bottom-right-radius:0px;
  2182. border-bottom-left-radius:0px;
  2183. filter:drop-shadow(none);
  2184. transition:none;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:12px;
  2189. color:#7F7F7F;
  2190. line-height:30px;
  2191. }
  2192. #u49081 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:386px;
  2196. top:212px;
  2197. width:8px;
  2198. height:30px;
  2199. display:flex;
  2200. transition:none;
  2201. transform-origin:50% 50%;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. color:#7F7F7F;
  2207. line-height:30px;
  2208. }
  2209. #u49081 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u49081_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }
  2221. #u49082_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:160px;
  2227. height:40px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 1);
  2230. box-sizing:border-box;
  2231. border-width:1px;
  2232. border-style:solid;
  2233. border-color:rgba(24, 144, 255, 1);
  2234. border-radius:45px;
  2235. filter:drop-shadow(none);
  2236. transition:none;
  2237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2238. font-weight:400;
  2239. font-style:normal;
  2240. font-size:14px;
  2241. color:#1890FF;
  2242. }
  2243. #u49082 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:509px;
  2247. top:789px;
  2248. width:160px;
  2249. height:40px;
  2250. display:flex;
  2251. transition:none;
  2252. transform-origin:50% 50%;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:14px;
  2257. color:#1890FF;
  2258. }
  2259. #u49082 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 2px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u49082_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. }
  2271. #u49083_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:160px;
  2277. height:40px;
  2278. background:inherit;
  2279. background-color:rgba(0, 137, 254, 1);
  2280. border-radius:45px;
  2281. filter:drop-shadow(none);
  2282. transition:none;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:14px;
  2287. color:#FFFFFF;
  2288. }
  2289. #u49083 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:679px;
  2293. top:789px;
  2294. width:160px;
  2295. height:40px;
  2296. display:flex;
  2297. transition:none;
  2298. transform-origin:50% 50%;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:14px;
  2303. color:#FFFFFF;
  2304. }
  2305. #u49083 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u49083_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u49084 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:0px;
  2323. height:0px;
  2324. }
  2325. #u49085_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:300px;
  2331. height:179px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 1);
  2334. border-radius:10px;
  2335. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2336. transition:none;
  2337. }
  2338. #u49085 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:528px;
  2342. top:383px;
  2343. width:300px;
  2344. height:179px;
  2345. display:flex;
  2346. transition:none;
  2347. transform-origin:50% 50%;
  2348. }
  2349. #u49085 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:2px 2px 2px 2px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u49085_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. visibility:hidden;
  2361. }
  2362. #u49086_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:217px;
  2368. height:30px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 0);
  2371. border-left:0px;
  2372. border-top:0px;
  2373. border-right:0px;
  2374. border-radius:0px;
  2375. border-bottom-right-radius:0px;
  2376. border-bottom-left-radius:0px;
  2377. filter:drop-shadow(none);
  2378. transition:none;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:18px;
  2383. text-align:center;
  2384. line-height:30px;
  2385. }
  2386. #u49086 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:570px;
  2390. top:401px;
  2391. width:217px;
  2392. height:30px;
  2393. display:flex;
  2394. transition:none;
  2395. transform-origin:50% 50%;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:18px;
  2400. text-align:center;
  2401. line-height:30px;
  2402. }
  2403. #u49086 .text {
  2404. position:absolute;
  2405. align-self:flex-start;
  2406. padding:0px 0px 0px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u49086_text {
  2411. border-width:0px;
  2412. white-space:nowrap;
  2413. text-transform:none;
  2414. }
  2415. #u49087_div {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:260px;
  2421. height:52px;
  2422. background:inherit;
  2423. background-color:rgba(255, 255, 255, 0);
  2424. border-left:0px;
  2425. border-top:0px;
  2426. border-right:0px;
  2427. border-radius:0px;
  2428. border-bottom-right-radius:0px;
  2429. border-bottom-left-radius:0px;
  2430. filter:drop-shadow(none);
  2431. transition:none;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:14px;
  2436. color:#7F7F7F;
  2437. line-height:26px;
  2438. }
  2439. #u49087 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:551px;
  2443. top:441px;
  2444. width:260px;
  2445. height:52px;
  2446. display:flex;
  2447. transition:none;
  2448. transform-origin:50% 50%;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:14px;
  2453. color:#7F7F7F;
  2454. line-height:26px;
  2455. }
  2456. #u49087 .text {
  2457. position:absolute;
  2458. align-self:flex-start;
  2459. padding:0px 0px 0px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u49087_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u49088 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:528px;
  2472. top:513px;
  2473. width:300px;
  2474. height:1px;
  2475. display:flex;
  2476. transition:none;
  2477. }
  2478. #u49088 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 2px 2px 2px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u49088_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:301px;
  2491. height:2px;
  2492. }
  2493. #u49088_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. visibility:hidden;
  2498. }
  2499. #u49089_div {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:41px;
  2505. height:30px;
  2506. background:inherit;
  2507. background-color:rgba(255, 255, 255, 0);
  2508. border-left:0px;
  2509. border-top:0px;
  2510. border-right:0px;
  2511. border-radius:0px;
  2512. border-bottom-right-radius:0px;
  2513. border-bottom-left-radius:0px;
  2514. filter:drop-shadow(none);
  2515. transition:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:18px;
  2520. color:#1890FF;
  2521. text-align:center;
  2522. line-height:30px;
  2523. }
  2524. #u49089 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:744px;
  2528. top:523px;
  2529. width:41px;
  2530. height:30px;
  2531. display:flex;
  2532. transition:none;
  2533. transform-origin:50% 50%;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:18px;
  2538. color:#1890FF;
  2539. text-align:center;
  2540. line-height:30px;
  2541. }
  2542. #u49089 .text {
  2543. position:absolute;
  2544. align-self:flex-start;
  2545. padding:0px 0px 0px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u49089_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u49090_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:41px;
  2560. height:30px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 0);
  2563. border-left:0px;
  2564. border-top:0px;
  2565. border-right:0px;
  2566. border-radius:0px;
  2567. border-bottom-right-radius:0px;
  2568. border-bottom-left-radius:0px;
  2569. filter:drop-shadow(none);
  2570. transition:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:18px;
  2575. color:#1890FF;
  2576. text-align:center;
  2577. line-height:30px;
  2578. }
  2579. #u49090 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:574px;
  2583. top:523px;
  2584. width:41px;
  2585. height:30px;
  2586. display:flex;
  2587. transition:none;
  2588. transform-origin:50% 50%;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:18px;
  2593. color:#1890FF;
  2594. text-align:center;
  2595. line-height:30px;
  2596. }
  2597. #u49090 .text {
  2598. position:absolute;
  2599. align-self:flex-start;
  2600. padding:0px 0px 0px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u49090_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. }
  2609. #u49091 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:677px;
  2613. top:514px;
  2614. width:1px;
  2615. height:48px;
  2616. display:flex;
  2617. transition:none;
  2618. }
  2619. #u49091 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u49091_img {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:2px;
  2632. height:49px;
  2633. }
  2634. #u49091_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u49092 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:0px;
  2646. height:0px;
  2647. }
  2648. #u49093_div {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:300px;
  2654. height:179px;
  2655. background:inherit;
  2656. background-color:rgba(255, 255, 255, 1);
  2657. border-radius:10px;
  2658. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2659. transition:none;
  2660. }
  2661. #u49093 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:439px;
  2665. top:896px;
  2666. width:300px;
  2667. height:179px;
  2668. display:flex;
  2669. transition:none;
  2670. transform-origin:50% 50%;
  2671. }
  2672. #u49093 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 2px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u49093_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u49094_div {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:227px;
  2691. height:30px;
  2692. background:inherit;
  2693. background-color:rgba(255, 255, 255, 0);
  2694. border-left:0px;
  2695. border-top:0px;
  2696. border-right:0px;
  2697. border-radius:0px;
  2698. border-bottom-right-radius:0px;
  2699. border-bottom-left-radius:0px;
  2700. filter:drop-shadow(none);
  2701. transition:none;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:18px;
  2706. text-align:center;
  2707. line-height:30px;
  2708. }
  2709. #u49094 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:479px;
  2713. top:914px;
  2714. width:227px;
  2715. height:30px;
  2716. display:flex;
  2717. transition:none;
  2718. transform-origin:50% 50%;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:18px;
  2723. text-align:center;
  2724. line-height:30px;
  2725. }
  2726. #u49094 .text {
  2727. position:absolute;
  2728. align-self:flex-start;
  2729. padding:0px 0px 0px 0px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u49094_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. }
  2738. #u49095_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:260px;
  2744. height:52px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 0);
  2747. border-left:0px;
  2748. border-top:0px;
  2749. border-right:0px;
  2750. border-radius:0px;
  2751. border-bottom-right-radius:0px;
  2752. border-bottom-left-radius:0px;
  2753. filter:drop-shadow(none);
  2754. transition:none;
  2755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:14px;
  2759. color:#7F7F7F;
  2760. line-height:26px;
  2761. }
  2762. #u49095 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:462px;
  2766. top:960px;
  2767. width:260px;
  2768. height:52px;
  2769. display:flex;
  2770. transition:none;
  2771. transform-origin:50% 50%;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:14px;
  2776. color:#7F7F7F;
  2777. line-height:26px;
  2778. }
  2779. #u49095 .text {
  2780. position:absolute;
  2781. align-self:flex-start;
  2782. padding:0px 0px 0px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u49095_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. }
  2791. #u49096 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:439px;
  2795. top:1026px;
  2796. width:300px;
  2797. height:1px;
  2798. display:flex;
  2799. transition:none;
  2800. }
  2801. #u49096 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 2px 2px 2px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u49096_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:301px;
  2814. height:2px;
  2815. }
  2816. #u49096_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u49097_div {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:41px;
  2828. height:30px;
  2829. background:inherit;
  2830. background-color:rgba(255, 255, 255, 0);
  2831. border-left:0px;
  2832. border-top:0px;
  2833. border-right:0px;
  2834. border-radius:0px;
  2835. border-bottom-right-radius:0px;
  2836. border-bottom-left-radius:0px;
  2837. filter:drop-shadow(none);
  2838. transition:none;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:18px;
  2843. color:#1890FF;
  2844. text-align:center;
  2845. line-height:30px;
  2846. }
  2847. #u49097 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:655px;
  2851. top:1036px;
  2852. width:41px;
  2853. height:30px;
  2854. display:flex;
  2855. transition:none;
  2856. transform-origin:50% 50%;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:18px;
  2861. color:#1890FF;
  2862. text-align:center;
  2863. line-height:30px;
  2864. }
  2865. #u49097 .text {
  2866. position:absolute;
  2867. align-self:flex-start;
  2868. padding:0px 0px 0px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u49097_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. }
  2877. #u49098_div {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:41px;
  2883. height:30px;
  2884. background:inherit;
  2885. background-color:rgba(255, 255, 255, 0);
  2886. border-left:0px;
  2887. border-top:0px;
  2888. border-right:0px;
  2889. border-radius:0px;
  2890. border-bottom-right-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. filter:drop-shadow(none);
  2893. transition:none;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:18px;
  2898. color:#1890FF;
  2899. text-align:center;
  2900. line-height:30px;
  2901. }
  2902. #u49098 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:485px;
  2906. top:1036px;
  2907. width:41px;
  2908. height:30px;
  2909. display:flex;
  2910. transition:none;
  2911. transform-origin:50% 50%;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:18px;
  2916. color:#1890FF;
  2917. text-align:center;
  2918. line-height:30px;
  2919. }
  2920. #u49098 .text {
  2921. position:absolute;
  2922. align-self:flex-start;
  2923. padding:0px 0px 0px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u49098_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. }
  2932. #u49099 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:588px;
  2936. top:1027px;
  2937. width:1px;
  2938. height:48px;
  2939. display:flex;
  2940. transition:none;
  2941. }
  2942. #u49099 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u49099_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:2px;
  2955. height:49px;
  2956. }
  2957. #u49099_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u49100 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:589px;
  2967. top:829px;
  2968. width:0px;
  2969. height:0px;
  2970. transition:none;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. color:#0089FE;
  2975. }
  2976. #u49100_seg0 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:-5px;
  2980. top:0px;
  2981. width:10px;
  2982. height:72px;
  2983. }
  2984. #u49100_seg1 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:-9px;
  2988. top:-6px;
  2989. width:18px;
  2990. height:18px;
  2991. }
  2992. #u49100_seg2 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:-16px;
  2996. top:50px;
  2997. width:32px;
  2998. height:32px;
  2999. }
  3000. #u49100_text {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:-50px;
  3004. top:26px;
  3005. width:100px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u49101_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:330px;
  3016. height:40px;
  3017. background:inherit;
  3018. background-color:rgba(0, 137, 254, 1);
  3019. border-radius:45px;
  3020. filter:drop-shadow(none);
  3021. transition:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:14px;
  3026. color:#FFFFFF;
  3027. }
  3028. #u49101 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:48px;
  3032. top:789px;
  3033. width:330px;
  3034. height:40px;
  3035. display:flex;
  3036. transition:none;
  3037. transform-origin:50% 50%;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. color:#FFFFFF;
  3043. }
  3044. #u49101 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u49101_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. }
  3056. #u49102_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:97px;
  3062. height:30px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 0);
  3065. border-left:0px;
  3066. border-top:0px;
  3067. border-right:0px;
  3068. border-radius:0px;
  3069. border-bottom-right-radius:0px;
  3070. border-bottom-left-radius:0px;
  3071. filter:drop-shadow(none);
  3072. transition:none;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. line-height:30px;
  3078. }
  3079. #u49102 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:46px;
  3083. top:105px;
  3084. width:97px;
  3085. height:30px;
  3086. display:flex;
  3087. transition:none;
  3088. transform-origin:50% 50%;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. line-height:30px;
  3094. }
  3095. #u49102 .text {
  3096. position:absolute;
  3097. align-self:flex-start;
  3098. padding:0px 0px 0px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u49102_text {
  3103. border-width:0px;
  3104. white-space:nowrap;
  3105. text-transform:none;
  3106. }
  3107. #u49103_div {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:73px;
  3113. height:30px;
  3114. background:inherit;
  3115. background-color:rgba(255, 255, 255, 0);
  3116. border-left:0px;
  3117. border-top:0px;
  3118. border-right:0px;
  3119. border-radius:0px;
  3120. border-bottom-right-radius:0px;
  3121. border-bottom-left-radius:0px;
  3122. filter:drop-shadow(none);
  3123. transition:none;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:12px;
  3128. line-height:30px;
  3129. }
  3130. #u49103 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:46px;
  3134. top:256px;
  3135. width:73px;
  3136. height:30px;
  3137. display:flex;
  3138. transition:none;
  3139. transform-origin:50% 50%;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. line-height:30px;
  3145. }
  3146. #u49103 .text {
  3147. position:absolute;
  3148. align-self:flex-start;
  3149. padding:0px 0px 0px 0px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u49103_text {
  3154. border-width:0px;
  3155. white-space:nowrap;
  3156. text-transform:none;
  3157. }
  3158. #u49104 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:0px;
  3164. height:0px;
  3165. }
  3166. #u49105_div {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:375px;
  3172. height:80px;
  3173. background:inherit;
  3174. background-color:rgba(255, 255, 255, 1);
  3175. border-left:0px;
  3176. border-top:0px;
  3177. border-right:0px;
  3178. border-radius:0px;
  3179. border-bottom-right-radius:0px;
  3180. border-bottom-left-radius:0px;
  3181. filter:drop-shadow(none);
  3182. transition:none;
  3183. }
  3184. #u49105 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:29px;
  3188. top:285px;
  3189. width:375px;
  3190. height:80px;
  3191. display:flex;
  3192. transition:none;
  3193. transform-origin:50% 50%;
  3194. }
  3195. #u49105 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u49105_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u49106 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:46px;
  3212. top:301px;
  3213. width:40px;
  3214. height:40px;
  3215. display:flex;
  3216. transition:none;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. }
  3221. #u49106 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 2px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u49106_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:40px;
  3234. height:40px;
  3235. }
  3236. #u49106_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. }
  3241. #u49107_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:33px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border-left:0px;
  3251. border-top:0px;
  3252. border-right:0px;
  3253. border-radius:0px;
  3254. border-bottom-right-radius:0px;
  3255. border-bottom-left-radius:0px;
  3256. filter:drop-shadow(none);
  3257. transition:none;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:16px;
  3262. line-height:30px;
  3263. }
  3264. #u49107 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:106px;
  3268. top:300px;
  3269. width:33px;
  3270. height:30px;
  3271. display:flex;
  3272. transition:none;
  3273. transform-origin:50% 50%;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:16px;
  3278. line-height:30px;
  3279. }
  3280. #u49107 .text {
  3281. position:absolute;
  3282. align-self:flex-start;
  3283. padding:0px 0px 0px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u49107_text {
  3288. border-width:0px;
  3289. white-space:nowrap;
  3290. text-transform:none;
  3291. }
  3292. #u49108_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:50px;
  3298. height:22px;
  3299. background:inherit;
  3300. background-color:rgba(255, 255, 255, 1);
  3301. box-sizing:border-box;
  3302. border-width:1px;
  3303. border-style:solid;
  3304. border-color:rgba(127, 127, 127, 1);
  3305. border-radius:40px;
  3306. filter:drop-shadow(none);
  3307. transition:none;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:11px;
  3312. }
  3313. #u49108 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:344px;
  3317. top:299px;
  3318. width:50px;
  3319. height:22px;
  3320. display:flex;
  3321. transition:none;
  3322. transform-origin:50% 50%;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:11px;
  3327. }
  3328. #u49108 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 2px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u49108_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. }
  3340. #u49109_div {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:117px;
  3346. height:25px;
  3347. background:inherit;
  3348. background-color:rgba(255, 255, 255, 0);
  3349. border-left:0px;
  3350. border-top:0px;
  3351. border-right:0px;
  3352. border-radius:0px;
  3353. border-bottom-right-radius:0px;
  3354. border-bottom-left-radius:0px;
  3355. filter:drop-shadow(none);
  3356. transition:none;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:10px;
  3361. line-height:25px;
  3362. }
  3363. #u49109 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:106px;
  3367. top:326px;
  3368. width:117px;
  3369. height:25px;
  3370. display:flex;
  3371. transition:none;
  3372. transform-origin:50% 50%;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:10px;
  3377. line-height:25px;
  3378. }
  3379. #u49109 .text {
  3380. position:absolute;
  3381. align-self:flex-start;
  3382. padding:0px 0px 0px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u49109_text {
  3387. border-width:0px;
  3388. white-space:nowrap;
  3389. text-transform:none;
  3390. }
  3391. #u49110 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:0px;
  3397. height:0px;
  3398. }
  3399. #u49111_div {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:375px;
  3405. height:80px;
  3406. background:inherit;
  3407. background-color:rgba(255, 255, 255, 1);
  3408. border-left:0px;
  3409. border-top:0px;
  3410. border-right:0px;
  3411. border-radius:0px;
  3412. border-bottom-right-radius:0px;
  3413. border-bottom-left-radius:0px;
  3414. filter:drop-shadow(none);
  3415. transition:none;
  3416. }
  3417. #u49111 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:29px;
  3421. top:366px;
  3422. width:375px;
  3423. height:80px;
  3424. display:flex;
  3425. transition:none;
  3426. transform-origin:50% 50%;
  3427. }
  3428. #u49111 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u49111_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u49112 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:46px;
  3445. top:382px;
  3446. width:40px;
  3447. height:40px;
  3448. display:flex;
  3449. transition:none;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. }
  3454. #u49112 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u49112_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:40px;
  3467. height:40px;
  3468. }
  3469. #u49112_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. }
  3474. #u49113_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:33px;
  3480. height:30px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 0);
  3483. border-left:0px;
  3484. border-top:0px;
  3485. border-right:0px;
  3486. border-radius:0px;
  3487. border-bottom-right-radius:0px;
  3488. border-bottom-left-radius:0px;
  3489. filter:drop-shadow(none);
  3490. transition:none;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:16px;
  3495. line-height:30px;
  3496. }
  3497. #u49113 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:106px;
  3501. top:381px;
  3502. width:33px;
  3503. height:30px;
  3504. display:flex;
  3505. transition:none;
  3506. transform-origin:50% 50%;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:16px;
  3511. line-height:30px;
  3512. }
  3513. #u49113 .text {
  3514. position:absolute;
  3515. align-self:flex-start;
  3516. padding:0px 0px 0px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u49113_text {
  3521. border-width:0px;
  3522. white-space:nowrap;
  3523. text-transform:none;
  3524. }
  3525. #u49114_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:50px;
  3531. height:22px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 255, 1);
  3534. box-sizing:border-box;
  3535. border-width:1px;
  3536. border-style:solid;
  3537. border-color:rgba(127, 127, 127, 1);
  3538. border-radius:40px;
  3539. filter:drop-shadow(none);
  3540. transition:none;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:11px;
  3545. }
  3546. #u49114 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:344px;
  3550. top:380px;
  3551. width:50px;
  3552. height:22px;
  3553. display:flex;
  3554. transition:none;
  3555. transform-origin:50% 50%;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:11px;
  3560. }
  3561. #u49114 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 2px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u49114_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. }
  3573. #u49115_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:117px;
  3579. height:25px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 0);
  3582. border-left:0px;
  3583. border-top:0px;
  3584. border-right:0px;
  3585. border-radius:0px;
  3586. border-bottom-right-radius:0px;
  3587. border-bottom-left-radius:0px;
  3588. filter:drop-shadow(none);
  3589. transition:none;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:10px;
  3594. line-height:25px;
  3595. }
  3596. #u49115 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:106px;
  3600. top:407px;
  3601. width:117px;
  3602. height:25px;
  3603. display:flex;
  3604. transition:none;
  3605. transform-origin:50% 50%;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:10px;
  3610. line-height:25px;
  3611. }
  3612. #u49115 .text {
  3613. position:absolute;
  3614. align-self:flex-start;
  3615. padding:0px 0px 0px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u49115_text {
  3620. border-width:0px;
  3621. white-space:nowrap;
  3622. text-transform:none;
  3623. }
  3624. #u49116 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:0px;
  3630. height:0px;
  3631. }
  3632. #u49117_div {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:375px;
  3638. height:80px;
  3639. background:inherit;
  3640. background-color:rgba(255, 255, 255, 1);
  3641. border-left:0px;
  3642. border-top:0px;
  3643. border-right:0px;
  3644. border-radius:0px;
  3645. border-bottom-right-radius:0px;
  3646. border-bottom-left-radius:0px;
  3647. filter:drop-shadow(none);
  3648. transition:none;
  3649. }
  3650. #u49117 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:29px;
  3654. top:447px;
  3655. width:375px;
  3656. height:80px;
  3657. display:flex;
  3658. transition:none;
  3659. transform-origin:50% 50%;
  3660. }
  3661. #u49117 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u49117_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u49118 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:46px;
  3678. top:463px;
  3679. width:40px;
  3680. height:40px;
  3681. display:flex;
  3682. transition:none;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. }
  3687. #u49118 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 2px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u49118_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:40px;
  3700. height:40px;
  3701. }
  3702. #u49118_text {
  3703. border-width:0px;
  3704. word-wrap:break-word;
  3705. text-transform:none;
  3706. }
  3707. #u49119_div {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:33px;
  3713. height:30px;
  3714. background:inherit;
  3715. background-color:rgba(255, 255, 255, 0);
  3716. border-left:0px;
  3717. border-top:0px;
  3718. border-right:0px;
  3719. border-radius:0px;
  3720. border-bottom-right-radius:0px;
  3721. border-bottom-left-radius:0px;
  3722. filter:drop-shadow(none);
  3723. transition:none;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:16px;
  3728. line-height:30px;
  3729. }
  3730. #u49119 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:106px;
  3734. top:462px;
  3735. width:33px;
  3736. height:30px;
  3737. display:flex;
  3738. transition:none;
  3739. transform-origin:50% 50%;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:16px;
  3744. line-height:30px;
  3745. }
  3746. #u49119 .text {
  3747. position:absolute;
  3748. align-self:flex-start;
  3749. padding:0px 0px 0px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u49119_text {
  3754. border-width:0px;
  3755. white-space:nowrap;
  3756. text-transform:none;
  3757. }
  3758. #u49120_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:50px;
  3764. height:22px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 1);
  3767. box-sizing:border-box;
  3768. border-width:1px;
  3769. border-style:solid;
  3770. border-color:rgba(127, 127, 127, 1);
  3771. border-radius:40px;
  3772. filter:drop-shadow(none);
  3773. transition:none;
  3774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:11px;
  3778. }
  3779. #u49120 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:344px;
  3783. top:461px;
  3784. width:50px;
  3785. height:22px;
  3786. display:flex;
  3787. transition:none;
  3788. transform-origin:50% 50%;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:11px;
  3793. }
  3794. #u49120 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 2px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u49120_text {
  3802. border-width:0px;
  3803. word-wrap:break-word;
  3804. text-transform:none;
  3805. }
  3806. #u49121_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:117px;
  3812. height:25px;
  3813. background:inherit;
  3814. background-color:rgba(255, 255, 255, 0);
  3815. border-left:0px;
  3816. border-top:0px;
  3817. border-right:0px;
  3818. border-radius:0px;
  3819. border-bottom-right-radius:0px;
  3820. border-bottom-left-radius:0px;
  3821. filter:drop-shadow(none);
  3822. transition:none;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. line-height:25px;
  3828. }
  3829. #u49121 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:106px;
  3833. top:488px;
  3834. width:117px;
  3835. height:25px;
  3836. display:flex;
  3837. transition:none;
  3838. transform-origin:50% 50%;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:10px;
  3843. line-height:25px;
  3844. }
  3845. #u49121 .text {
  3846. position:absolute;
  3847. align-self:flex-start;
  3848. padding:0px 0px 0px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u49121_text {
  3853. border-width:0px;
  3854. white-space:nowrap;
  3855. text-transform:none;
  3856. }
  3857. #u49122 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:0px;
  3863. height:0px;
  3864. }
  3865. #u49123_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:375px;
  3871. height:60px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 1);
  3874. border-left:0px;
  3875. border-top:0px;
  3876. border-right:0px;
  3877. border-radius:0px;
  3878. border-bottom-right-radius:0px;
  3879. border-bottom-left-radius:0px;
  3880. filter:drop-shadow(none);
  3881. transition:none;
  3882. }
  3883. #u49123 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:484px;
  3887. top:105px;
  3888. width:375px;
  3889. height:60px;
  3890. display:flex;
  3891. transition:none;
  3892. transform-origin:50% 50%;
  3893. }
  3894. #u49123 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u49123_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u49124_div {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:262px;
  3913. height:30px;
  3914. background:inherit;
  3915. background-color:rgba(255, 255, 255, 0);
  3916. border-left:0px;
  3917. border-top:0px;
  3918. border-right:0px;
  3919. border-radius:0px;
  3920. border-bottom-right-radius:0px;
  3921. border-bottom-left-radius:0px;
  3922. filter:drop-shadow(none);
  3923. transition:none;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. line-height:30px;
  3928. }
  3929. #u49124 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:497px;
  3933. top:120px;
  3934. width:262px;
  3935. height:30px;
  3936. display:flex;
  3937. transition:none;
  3938. transform-origin:50% 50%;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. line-height:30px;
  3943. }
  3944. #u49124 .text {
  3945. position:absolute;
  3946. align-self:flex-start;
  3947. padding:0px 0px 0px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u49124_text {
  3952. border-width:0px;
  3953. white-space:nowrap;
  3954. text-transform:none;
  3955. }
  3956. #u49125 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. height:0px;
  3963. }
  3964. #u49126_div {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:375px;
  3970. height:80px;
  3971. background:inherit;
  3972. background-color:rgba(255, 255, 255, 1);
  3973. border-left:0px;
  3974. border-top:0px;
  3975. border-right:0px;
  3976. border-radius:0px;
  3977. border-bottom-right-radius:0px;
  3978. border-bottom-left-radius:0px;
  3979. filter:drop-shadow(none);
  3980. transition:none;
  3981. }
  3982. #u49126 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:484px;
  3986. top:175px;
  3987. width:375px;
  3988. height:80px;
  3989. display:flex;
  3990. transition:none;
  3991. transform-origin:50% 50%;
  3992. }
  3993. #u49126 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u49126_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u49127 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:501px;
  4010. top:191px;
  4011. width:40px;
  4012. height:40px;
  4013. display:flex;
  4014. transition:none;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. }
  4019. #u49127 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u49127_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:40px;
  4032. height:40px;
  4033. }
  4034. #u49127_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. }
  4039. #u49128_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:33px;
  4045. height:30px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border-left:0px;
  4049. border-top:0px;
  4050. border-right:0px;
  4051. border-radius:0px;
  4052. border-bottom-right-radius:0px;
  4053. border-bottom-left-radius:0px;
  4054. filter:drop-shadow(none);
  4055. transition:none;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:16px;
  4060. line-height:30px;
  4061. }
  4062. #u49128 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:561px;
  4066. top:190px;
  4067. width:33px;
  4068. height:30px;
  4069. display:flex;
  4070. transition:none;
  4071. transform-origin:50% 50%;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:16px;
  4076. line-height:30px;
  4077. }
  4078. #u49128 .text {
  4079. position:absolute;
  4080. align-self:flex-start;
  4081. padding:0px 0px 0px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u49128_text {
  4086. border-width:0px;
  4087. white-space:nowrap;
  4088. text-transform:none;
  4089. }
  4090. #u49129_div {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:50px;
  4096. height:22px;
  4097. background:inherit;
  4098. background-color:rgba(255, 255, 255, 1);
  4099. box-sizing:border-box;
  4100. border-width:1px;
  4101. border-style:solid;
  4102. border-color:rgba(127, 127, 127, 1);
  4103. border-radius:40px;
  4104. filter:drop-shadow(none);
  4105. transition:none;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:11px;
  4110. }
  4111. #u49129 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:799px;
  4115. top:189px;
  4116. width:50px;
  4117. height:22px;
  4118. display:flex;
  4119. transition:none;
  4120. transform-origin:50% 50%;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:11px;
  4125. }
  4126. #u49129 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 2px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u49129_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u49130_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:117px;
  4144. height:25px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. border-left:0px;
  4148. border-top:0px;
  4149. border-right:0px;
  4150. border-radius:0px;
  4151. border-bottom-right-radius:0px;
  4152. border-bottom-left-radius:0px;
  4153. filter:drop-shadow(none);
  4154. transition:none;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:10px;
  4159. line-height:25px;
  4160. }
  4161. #u49130 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:561px;
  4165. top:216px;
  4166. width:117px;
  4167. height:25px;
  4168. display:flex;
  4169. transition:none;
  4170. transform-origin:50% 50%;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:10px;
  4175. line-height:25px;
  4176. }
  4177. #u49130 .text {
  4178. position:absolute;
  4179. align-self:flex-start;
  4180. padding:0px 0px 0px 0px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u49130_text {
  4185. border-width:0px;
  4186. white-space:nowrap;
  4187. text-transform:none;
  4188. }
  4189. #u49131 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:0px;
  4195. height:0px;
  4196. }
  4197. #u49132_div {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:375px;
  4203. height:80px;
  4204. background:inherit;
  4205. background-color:rgba(255, 255, 255, 1);
  4206. border-left:0px;
  4207. border-top:0px;
  4208. border-right:0px;
  4209. border-radius:0px;
  4210. border-bottom-right-radius:0px;
  4211. border-bottom-left-radius:0px;
  4212. filter:drop-shadow(none);
  4213. transition:none;
  4214. }
  4215. #u49132 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:484px;
  4219. top:256px;
  4220. width:375px;
  4221. height:80px;
  4222. display:flex;
  4223. transition:none;
  4224. transform-origin:50% 50%;
  4225. }
  4226. #u49132 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:2px 2px 2px 2px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u49132_text {
  4234. border-width:0px;
  4235. word-wrap:break-word;
  4236. text-transform:none;
  4237. visibility:hidden;
  4238. }
  4239. #u49133 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:501px;
  4243. top:272px;
  4244. width:40px;
  4245. height:40px;
  4246. display:flex;
  4247. transition:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. }
  4252. #u49133 .text {
  4253. position:absolute;
  4254. align-self:center;
  4255. padding:2px 2px 2px 2px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u49133_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:40px;
  4265. height:40px;
  4266. }
  4267. #u49133_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. }
  4272. #u49134_div {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:33px;
  4278. height:30px;
  4279. background:inherit;
  4280. background-color:rgba(255, 255, 255, 0);
  4281. border-left:0px;
  4282. border-top:0px;
  4283. border-right:0px;
  4284. border-radius:0px;
  4285. border-bottom-right-radius:0px;
  4286. border-bottom-left-radius:0px;
  4287. filter:drop-shadow(none);
  4288. transition:none;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:16px;
  4293. line-height:30px;
  4294. }
  4295. #u49134 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:561px;
  4299. top:271px;
  4300. width:33px;
  4301. height:30px;
  4302. display:flex;
  4303. transition:none;
  4304. transform-origin:50% 50%;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:16px;
  4309. line-height:30px;
  4310. }
  4311. #u49134 .text {
  4312. position:absolute;
  4313. align-self:flex-start;
  4314. padding:0px 0px 0px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u49134_text {
  4319. border-width:0px;
  4320. white-space:nowrap;
  4321. text-transform:none;
  4322. }
  4323. #u49135_div {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:50px;
  4329. height:22px;
  4330. background:inherit;
  4331. background-color:rgba(255, 255, 255, 1);
  4332. box-sizing:border-box;
  4333. border-width:1px;
  4334. border-style:solid;
  4335. border-color:rgba(127, 127, 127, 1);
  4336. border-radius:40px;
  4337. filter:drop-shadow(none);
  4338. transition:none;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:11px;
  4343. }
  4344. #u49135 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:799px;
  4348. top:270px;
  4349. width:50px;
  4350. height:22px;
  4351. display:flex;
  4352. transition:none;
  4353. transform-origin:50% 50%;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:11px;
  4358. }
  4359. #u49135 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u49135_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. }
  4371. #u49136_div {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:117px;
  4377. height:25px;
  4378. background:inherit;
  4379. background-color:rgba(255, 255, 255, 0);
  4380. border-left:0px;
  4381. border-top:0px;
  4382. border-right:0px;
  4383. border-radius:0px;
  4384. border-bottom-right-radius:0px;
  4385. border-bottom-left-radius:0px;
  4386. filter:drop-shadow(none);
  4387. transition:none;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:10px;
  4392. line-height:25px;
  4393. }
  4394. #u49136 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:561px;
  4398. top:297px;
  4399. width:117px;
  4400. height:25px;
  4401. display:flex;
  4402. transition:none;
  4403. transform-origin:50% 50%;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:10px;
  4408. line-height:25px;
  4409. }
  4410. #u49136 .text {
  4411. position:absolute;
  4412. align-self:flex-start;
  4413. padding:0px 0px 0px 0px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u49136_text {
  4418. border-width:0px;
  4419. white-space:nowrap;
  4420. text-transform:none;
  4421. }
  4422. #u49137 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:824px;
  4426. top:189px;
  4427. width:0px;
  4428. height:0px;
  4429. transition:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. color:#0089FE;
  4434. }
  4435. #u49137_seg0 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:-5px;
  4439. top:-24px;
  4440. width:10px;
  4441. height:24px;
  4442. }
  4443. #u49137_seg1 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:-151px;
  4447. top:-24px;
  4448. width:156px;
  4449. height:10px;
  4450. }
  4451. #u49137_seg2 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:-151px;
  4455. top:-24px;
  4456. width:10px;
  4457. height:218px;
  4458. }
  4459. #u49137_seg3 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:-9px;
  4463. top:-12px;
  4464. width:18px;
  4465. height:18px;
  4466. }
  4467. #u49137_seg4 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:-162px;
  4471. top:177px;
  4472. width:32px;
  4473. height:32px;
  4474. }
  4475. #u49137_text {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:-196px;
  4479. top:-3px;
  4480. width:100px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. visibility:hidden;
  4484. }
  4485. #u49138 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:0px;
  4491. height:0px;
  4492. }
  4493. #u49139 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:908px;
  4497. top:0px;
  4498. width:433px;
  4499. height:865px;
  4500. }
  4501. #u49140 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:433px;
  4507. height:865px;
  4508. display:flex;
  4509. transition:none;
  4510. }
  4511. #u49140 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 2px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u49140_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:433px;
  4524. height:865px;
  4525. }
  4526. #u49140_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u49141_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:375px;
  4538. height:40px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 1);
  4541. box-sizing:border-box;
  4542. border-width:1px;
  4543. border-style:solid;
  4544. border-color:rgba(215, 215, 215, 1);
  4545. border-left:0px;
  4546. border-top:0px;
  4547. border-right:0px;
  4548. border-radius:0px;
  4549. border-bottom-right-radius:0px;
  4550. border-bottom-left-radius:0px;
  4551. filter:drop-shadow(none);
  4552. transition:none;
  4553. }
  4554. #u49141 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:29px;
  4558. top:67px;
  4559. width:375px;
  4560. height:40px;
  4561. display:flex;
  4562. transition:none;
  4563. transform-origin:50% 50%;
  4564. }
  4565. #u49141 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 2px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u49141_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u49142 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:0px;
  4584. height:0px;
  4585. }
  4586. #u49143_div {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:88px;
  4592. height:32px;
  4593. background:inherit;
  4594. background-color:rgba(255, 255, 255, 1);
  4595. box-sizing:border-box;
  4596. border-width:1px;
  4597. border-style:solid;
  4598. border-color:rgba(242, 242, 242, 1);
  4599. border-radius:33px;
  4600. filter:drop-shadow(none);
  4601. transition:none;
  4602. }
  4603. #u49143 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:309px;
  4607. top:71px;
  4608. width:88px;
  4609. height:32px;
  4610. display:flex;
  4611. transition:none;
  4612. transform-origin:50% 50%;
  4613. }
  4614. #u49143 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u49143_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. visibility:hidden;
  4626. }
  4627. #u49144 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:0px;
  4633. height:0px;
  4634. }
  4635. #u49145 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:372px;
  4639. top:78px;
  4640. width:18px;
  4641. height:18px;
  4642. display:flex;
  4643. transition:none;
  4644. }
  4645. #u49145 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 2px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u49145_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:18px;
  4658. height:18px;
  4659. }
  4660. #u49145_text {
  4661. border-width:0px;
  4662. word-wrap:break-word;
  4663. text-transform:none;
  4664. visibility:hidden;
  4665. }
  4666. #u49146 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:378px;
  4670. top:84px;
  4671. width:6px;
  4672. height:6px;
  4673. display:flex;
  4674. transition:none;
  4675. }
  4676. #u49146 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 2px 2px 2px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u49146_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:6px;
  4689. height:6px;
  4690. }
  4691. #u49146_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. visibility:hidden;
  4696. }
  4697. #u49147 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:0px;
  4703. height:0px;
  4704. }
  4705. #u49148 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:323px;
  4709. top:85px;
  4710. width:5px;
  4711. height:5px;
  4712. display:flex;
  4713. transition:none;
  4714. }
  4715. #u49148 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 2px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u49148_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:5px;
  4728. height:5px;
  4729. }
  4730. #u49148_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. visibility:hidden;
  4735. }
  4736. #u49149 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:339px;
  4740. top:85px;
  4741. width:5px;
  4742. height:5px;
  4743. display:flex;
  4744. transition:none;
  4745. }
  4746. #u49149 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u49149_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:5px;
  4759. height:5px;
  4760. }
  4761. #u49149_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. visibility:hidden;
  4766. }
  4767. #u49150 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:330px;
  4771. top:84px;
  4772. width:7px;
  4773. height:7px;
  4774. display:flex;
  4775. transition:none;
  4776. }
  4777. #u49150 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u49150_img {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:7px;
  4790. height:7px;
  4791. }
  4792. #u49150_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u49151 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:347px;
  4802. top:87px;
  4803. width:18px;
  4804. height:1px;
  4805. display:flex;
  4806. -webkit-transform:rotate(90deg);
  4807. -moz-transform:rotate(90deg);
  4808. -ms-transform:rotate(90deg);
  4809. transform:rotate(90deg);
  4810. transition:none;
  4811. }
  4812. #u49151 .text {
  4813. position:absolute;
  4814. align-self:center;
  4815. padding:2px 2px 2px 2px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u49151_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:19px;
  4825. height:2px;
  4826. }
  4827. #u49151_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u49152 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:29px;
  4837. top:24px;
  4838. width:375px;
  4839. height:44px;
  4840. display:flex;
  4841. transition:none;
  4842. }
  4843. #u49152 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 2px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u49152_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:375px;
  4856. height:44px;
  4857. }
  4858. #u49152_text {
  4859. border-width:0px;
  4860. word-wrap:break-word;
  4861. text-transform:none;
  4862. visibility:hidden;
  4863. }
  4864. #u49153_div {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:375px;
  4870. height:50px;
  4871. background:inherit;
  4872. background-color:rgba(255, 255, 255, 1);
  4873. box-sizing:border-box;
  4874. border-width:1px;
  4875. border-style:solid;
  4876. border-color:rgba(242, 242, 242, 1);
  4877. border-radius:26px;
  4878. border-top-left-radius:0px;
  4879. border-top-right-radius:0px;
  4880. filter:drop-shadow(none);
  4881. transition:none;
  4882. }
  4883. #u49153 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:29px;
  4887. top:788px;
  4888. width:375px;
  4889. height:50px;
  4890. display:flex;
  4891. transition:none;
  4892. transform-origin:50% 50%;
  4893. }
  4894. #u49153 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u49153_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u49154 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:0px;
  4913. height:0px;
  4914. }
  4915. #u49155 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:69px;
  4919. top:792px;
  4920. width:24px;
  4921. height:24px;
  4922. display:flex;
  4923. transition:none;
  4924. font-size:8px;
  4925. }
  4926. #u49155 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u49155_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:24px;
  4939. height:24px;
  4940. }
  4941. #u49155_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. }
  4946. #u49156_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:25px;
  4952. height:17px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 0);
  4955. border-radius:0px;
  4956. filter:drop-shadow(none);
  4957. transition:none;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. }
  4963. #u49156 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:69px;
  4967. top:817px;
  4968. width:25px;
  4969. height:17px;
  4970. display:flex;
  4971. transition:none;
  4972. transform-origin:50% 50%;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. }
  4978. #u49156 .text {
  4979. position:absolute;
  4980. align-self:flex-start;
  4981. padding:0px 0px 0px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u49156_text {
  4986. border-width:0px;
  4987. white-space:nowrap;
  4988. text-transform:none;
  4989. }
  4990. #u49157 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:0px;
  4996. height:0px;
  4997. }
  4998. #u49158 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:339px;
  5002. top:794px;
  5003. width:24px;
  5004. height:24px;
  5005. display:flex;
  5006. transition:none;
  5007. font-size:8px;
  5008. }
  5009. #u49158 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u49158_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:24px;
  5022. height:24px;
  5023. }
  5024. #u49158_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. }
  5029. #u49159_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:25px;
  5035. height:17px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 0);
  5038. border-radius:0px;
  5039. filter:drop-shadow(none);
  5040. transition:none;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. }
  5046. #u49159 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:339px;
  5050. top:819px;
  5051. width:25px;
  5052. height:17px;
  5053. display:flex;
  5054. transition:none;
  5055. transform-origin:50% 50%;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. }
  5061. #u49159 .text {
  5062. position:absolute;
  5063. align-self:flex-start;
  5064. padding:0px 0px 0px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u49159_text {
  5069. border-width:0px;
  5070. white-space:nowrap;
  5071. text-transform:none;
  5072. }
  5073. #u49160_div {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:375px;
  5079. height:681px;
  5080. background:inherit;
  5081. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5082. border-radius:0px;
  5083. filter:drop-shadow(none);
  5084. transition:none;
  5085. }
  5086. #u49160 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:29px;
  5090. top:107px;
  5091. width:375px;
  5092. height:681px;
  5093. display:flex;
  5094. transition:none;
  5095. transform-origin:50% 50%;
  5096. }
  5097. #u49160 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 2px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u49160_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u49161 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:0px;
  5116. height:0px;
  5117. }
  5118. #u49162 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:251px;
  5122. top:792px;
  5123. width:24px;
  5124. height:24px;
  5125. display:flex;
  5126. transition:none;
  5127. font-size:8px;
  5128. }
  5129. #u49162 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u49162_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:24px;
  5142. height:24px;
  5143. }
  5144. #u49162_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. }
  5149. #u49163_div {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:37px;
  5155. height:17px;
  5156. background:inherit;
  5157. background-color:rgba(255, 255, 255, 0);
  5158. border-radius:0px;
  5159. filter:drop-shadow(none);
  5160. transition:none;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. }
  5166. #u49163 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:245px;
  5170. top:817px;
  5171. width:37px;
  5172. height:17px;
  5173. display:flex;
  5174. transition:none;
  5175. transform-origin:50% 50%;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. }
  5181. #u49163 .text {
  5182. position:absolute;
  5183. align-self:flex-start;
  5184. padding:0px 0px 0px 0px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u49163_text {
  5189. border-width:0px;
  5190. white-space:nowrap;
  5191. text-transform:none;
  5192. }
  5193. #u49164 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:0px;
  5199. height:0px;
  5200. }
  5201. #u49165 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:157px;
  5205. top:792px;
  5206. width:24px;
  5207. height:24px;
  5208. display:flex;
  5209. transition:none;
  5210. font-size:8px;
  5211. }
  5212. #u49165 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 2px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u49165_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:24px;
  5225. height:24px;
  5226. }
  5227. #u49165_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. }
  5232. #u49166_div {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:37px;
  5238. height:17px;
  5239. background:inherit;
  5240. background-color:rgba(255, 255, 255, 0);
  5241. border-radius:0px;
  5242. filter:drop-shadow(none);
  5243. transition:none;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. }
  5249. #u49166 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:151px;
  5253. top:817px;
  5254. width:37px;
  5255. height:17px;
  5256. display:flex;
  5257. transition:none;
  5258. transform-origin:50% 50%;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. }
  5264. #u49166 .text {
  5265. position:absolute;
  5266. align-self:flex-start;
  5267. padding:0px 0px 0px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u49166_text {
  5272. border-width:0px;
  5273. white-space:nowrap;
  5274. text-transform:none;
  5275. }
  5276. #u49167_div {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:375px;
  5282. height:735px;
  5283. background:inherit;
  5284. background-color:rgba(242, 242, 242, 1);
  5285. border-top:0px;
  5286. border-radius:25px;
  5287. border-top-left-radius:0px;
  5288. border-top-right-radius:0px;
  5289. filter:drop-shadow(none);
  5290. transition:none;
  5291. }
  5292. #u49167 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:937px;
  5296. top:105px;
  5297. width:375px;
  5298. height:735px;
  5299. display:flex;
  5300. transition:none;
  5301. transform-origin:50% 50%;
  5302. }
  5303. #u49167 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u49167_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u49168_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:57px;
  5322. height:30px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border-left:0px;
  5326. border-top:0px;
  5327. border-right:0px;
  5328. border-radius:0px;
  5329. border-bottom-right-radius:0px;
  5330. border-bottom-left-radius:0px;
  5331. filter:drop-shadow(none);
  5332. transition:none;
  5333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5334. font-weight:500;
  5335. font-style:normal;
  5336. font-size:14px;
  5337. line-height:30px;
  5338. }
  5339. #u49168 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:1089px;
  5343. top:73px;
  5344. width:57px;
  5345. height:30px;
  5346. display:flex;
  5347. transition:none;
  5348. transform-origin:50% 50%;
  5349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5350. font-weight:500;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. line-height:30px;
  5354. }
  5355. #u49168 .text {
  5356. position:absolute;
  5357. align-self:flex-start;
  5358. padding:0px 0px 0px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u49168_text {
  5363. border-width:0px;
  5364. white-space:nowrap;
  5365. text-transform:none;
  5366. }
  5367. #u49169 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:0px;
  5373. height:0px;
  5374. }
  5375. #u49170 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:950px;
  5379. top:79px;
  5380. width:11px;
  5381. height:18px;
  5382. display:flex;
  5383. transition:none;
  5384. }
  5385. #u49170 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u49170_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:11px;
  5398. height:18px;
  5399. }
  5400. #u49170_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u49171 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:0px;
  5412. height:0px;
  5413. }
  5414. #u49172_div {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:375px;
  5420. height:110px;
  5421. background:inherit;
  5422. background-color:rgba(255, 255, 255, 1);
  5423. border-left:0px;
  5424. border-top:0px;
  5425. border-right:0px;
  5426. border-radius:0px;
  5427. border-bottom-right-radius:0px;
  5428. border-bottom-left-radius:0px;
  5429. filter:drop-shadow(none);
  5430. transition:none;
  5431. }
  5432. #u49172 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:937px;
  5436. top:106px;
  5437. width:375px;
  5438. height:110px;
  5439. display:flex;
  5440. transition:none;
  5441. transform-origin:50% 50%;
  5442. }
  5443. #u49172 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u49172_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u49173 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:954px;
  5460. top:132px;
  5461. width:40px;
  5462. height:40px;
  5463. display:flex;
  5464. transition:none;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. }
  5469. #u49173 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:2px 2px 2px 2px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u49173_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:40px;
  5482. height:40px;
  5483. }
  5484. #u49173_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. }
  5489. #u49174_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:33px;
  5495. height:30px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border-left:0px;
  5499. border-top:0px;
  5500. border-right:0px;
  5501. border-radius:0px;
  5502. border-bottom-right-radius:0px;
  5503. border-bottom-left-radius:0px;
  5504. filter:drop-shadow(none);
  5505. transition:none;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:16px;
  5510. line-height:30px;
  5511. }
  5512. #u49174 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1014px;
  5516. top:127px;
  5517. width:33px;
  5518. height:30px;
  5519. display:flex;
  5520. transition:none;
  5521. transform-origin:50% 50%;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:16px;
  5526. line-height:30px;
  5527. }
  5528. #u49174 .text {
  5529. position:absolute;
  5530. align-self:flex-start;
  5531. padding:0px 0px 0px 0px;
  5532. box-sizing:border-box;
  5533. width:100%;
  5534. }
  5535. #u49174_text {
  5536. border-width:0px;
  5537. white-space:nowrap;
  5538. text-transform:none;
  5539. }
  5540. #u49175_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:117px;
  5546. height:25px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 0);
  5549. border-left:0px;
  5550. border-top:0px;
  5551. border-right:0px;
  5552. border-radius:0px;
  5553. border-bottom-right-radius:0px;
  5554. border-bottom-left-radius:0px;
  5555. filter:drop-shadow(none);
  5556. transition:none;
  5557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5558. font-weight:400;
  5559. font-style:normal;
  5560. font-size:10px;
  5561. line-height:25px;
  5562. }
  5563. #u49175 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:1014px;
  5567. top:157px;
  5568. width:117px;
  5569. height:25px;
  5570. display:flex;
  5571. transition:none;
  5572. transform-origin:50% 50%;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:10px;
  5577. line-height:25px;
  5578. }
  5579. #u49175 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:0px 0px 0px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u49175_text {
  5587. border-width:0px;
  5588. white-space:nowrap;
  5589. text-transform:none;
  5590. }
  5591. #u49176_div {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:151px;
  5597. height:25px;
  5598. background:inherit;
  5599. background-color:rgba(255, 255, 255, 0);
  5600. border-left:0px;
  5601. border-top:0px;
  5602. border-right:0px;
  5603. border-radius:0px;
  5604. border-bottom-right-radius:0px;
  5605. border-bottom-left-radius:0px;
  5606. filter:drop-shadow(none);
  5607. transition:none;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:10px;
  5612. line-height:25px;
  5613. }
  5614. #u49176 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:1014px;
  5618. top:182px;
  5619. width:151px;
  5620. height:25px;
  5621. display:flex;
  5622. transition:none;
  5623. transform-origin:50% 50%;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:10px;
  5628. line-height:25px;
  5629. }
  5630. #u49176 .text {
  5631. position:absolute;
  5632. align-self:flex-start;
  5633. padding:0px 0px 0px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u49176_text {
  5638. border-width:0px;
  5639. white-space:nowrap;
  5640. text-transform:none;
  5641. }
  5642. #u49177 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:0px;
  5648. height:0px;
  5649. }
  5650. #u49178_div {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:375px;
  5656. height:80px;
  5657. background:inherit;
  5658. background-color:rgba(255, 255, 255, 1);
  5659. border-left:0px;
  5660. border-top:0px;
  5661. border-right:0px;
  5662. border-radius:0px;
  5663. border-bottom-right-radius:0px;
  5664. border-bottom-left-radius:0px;
  5665. filter:drop-shadow(none);
  5666. transition:none;
  5667. }
  5668. #u49178 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:937px;
  5672. top:256px;
  5673. width:375px;
  5674. height:80px;
  5675. display:flex;
  5676. transition:none;
  5677. transform-origin:50% 50%;
  5678. }
  5679. #u49178 .text {
  5680. position:absolute;
  5681. align-self:center;
  5682. padding:2px 2px 2px 2px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u49178_text {
  5687. border-width:0px;
  5688. word-wrap:break-word;
  5689. text-transform:none;
  5690. visibility:hidden;
  5691. }
  5692. #u49179_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:129px;
  5698. height:30px;
  5699. background:inherit;
  5700. background-color:rgba(255, 255, 255, 0);
  5701. border-left:0px;
  5702. border-top:0px;
  5703. border-right:0px;
  5704. border-radius:0px;
  5705. border-bottom-right-radius:0px;
  5706. border-bottom-left-radius:0px;
  5707. filter:drop-shadow(none);
  5708. transition:none;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:16px;
  5713. line-height:30px;
  5714. }
  5715. #u49179 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:957px;
  5719. top:269px;
  5720. width:129px;
  5721. height:30px;
  5722. display:flex;
  5723. transition:none;
  5724. transform-origin:50% 50%;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:16px;
  5729. line-height:30px;
  5730. }
  5731. #u49179 .text {
  5732. position:absolute;
  5733. align-self:flex-start;
  5734. padding:0px 0px 0px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u49179_text {
  5739. border-width:0px;
  5740. white-space:nowrap;
  5741. text-transform:none;
  5742. }
  5743. #u49180_div {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:37px;
  5749. height:25px;
  5750. background:inherit;
  5751. background-color:rgba(255, 255, 255, 0);
  5752. border-left:0px;
  5753. border-top:0px;
  5754. border-right:0px;
  5755. border-radius:0px;
  5756. border-bottom-right-radius:0px;
  5757. border-bottom-left-radius:0px;
  5758. filter:drop-shadow(none);
  5759. transition:none;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:12px;
  5764. color:#7F7F7F;
  5765. line-height:25px;
  5766. }
  5767. #u49180 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:957px;
  5771. top:299px;
  5772. width:37px;
  5773. height:25px;
  5774. display:flex;
  5775. transition:none;
  5776. transform-origin:50% 50%;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:12px;
  5781. color:#7F7F7F;
  5782. line-height:25px;
  5783. }
  5784. #u49180 .text {
  5785. position:absolute;
  5786. align-self:flex-start;
  5787. padding:0px 0px 0px 0px;
  5788. box-sizing:border-box;
  5789. width:100%;
  5790. }
  5791. #u49180_text {
  5792. border-width:0px;
  5793. white-space:nowrap;
  5794. text-transform:none;
  5795. }
  5796. #u49181_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:50px;
  5802. height:22px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 1);
  5805. box-sizing:border-box;
  5806. border-width:1px;
  5807. border-style:solid;
  5808. border-color:rgba(127, 127, 127, 1);
  5809. border-radius:40px;
  5810. filter:drop-shadow(none);
  5811. transition:none;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:11px;
  5816. }
  5817. #u49181 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1252px;
  5821. top:273px;
  5822. width:50px;
  5823. height:22px;
  5824. display:flex;
  5825. transition:none;
  5826. transform-origin:50% 50%;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:11px;
  5831. }
  5832. #u49181 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:2px 2px 2px 2px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u49181_text {
  5840. border-width:0px;
  5841. word-wrap:break-word;
  5842. text-transform:none;
  5843. }
  5844. #u49182_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:339px;
  5850. height:40px;
  5851. background:inherit;
  5852. background-color:rgba(255, 255, 255, 1);
  5853. box-sizing:border-box;
  5854. border-width:1px;
  5855. border-style:solid;
  5856. border-color:rgba(24, 144, 255, 1);
  5857. border-radius:45px;
  5858. filter:drop-shadow(none);
  5859. transition:none;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:14px;
  5864. color:#1890FF;
  5865. }
  5866. #u49182 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:955px;
  5870. top:790px;
  5871. width:339px;
  5872. height:40px;
  5873. display:flex;
  5874. transition:none;
  5875. transform-origin:50% 50%;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:14px;
  5880. color:#1890FF;
  5881. }
  5882. #u49182 .text {
  5883. position:absolute;
  5884. align-self:center;
  5885. padding:2px 2px 2px 2px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u49182_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. }
  5894. #u49183_div {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:73px;
  5900. height:40px;
  5901. background:inherit;
  5902. background-color:rgba(255, 255, 255, 0);
  5903. border-left:0px;
  5904. border-top:0px;
  5905. border-right:0px;
  5906. border-radius:0px;
  5907. border-bottom-right-radius:0px;
  5908. border-bottom-left-radius:0px;
  5909. filter:drop-shadow(none);
  5910. transition:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:12px;
  5915. color:#7F7F7F;
  5916. line-height:25px;
  5917. }
  5918. #u49183 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:957px;
  5922. top:216px;
  5923. width:73px;
  5924. height:40px;
  5925. display:flex;
  5926. transition:none;
  5927. transform-origin:50% 50%;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:12px;
  5932. color:#7F7F7F;
  5933. line-height:25px;
  5934. }
  5935. #u49183 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:0px 0px 0px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u49183_text {
  5943. border-width:0px;
  5944. white-space:nowrap;
  5945. text-transform:none;
  5946. }
  5947. #u49184 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:0px;
  5953. height:0px;
  5954. }
  5955. #u49185_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:375px;
  5961. height:80px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 1);
  5964. border-left:0px;
  5965. border-top:0px;
  5966. border-right:0px;
  5967. border-radius:0px;
  5968. border-bottom-right-radius:0px;
  5969. border-bottom-left-radius:0px;
  5970. filter:drop-shadow(none);
  5971. transition:none;
  5972. }
  5973. #u49185 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:937px;
  5977. top:337px;
  5978. width:375px;
  5979. height:80px;
  5980. display:flex;
  5981. transition:none;
  5982. transform-origin:50% 50%;
  5983. }
  5984. #u49185 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u49185_text {
  5992. border-width:0px;
  5993. word-wrap:break-word;
  5994. text-transform:none;
  5995. visibility:hidden;
  5996. }
  5997. #u49186_div {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:129px;
  6003. height:30px;
  6004. background:inherit;
  6005. background-color:rgba(255, 255, 255, 0);
  6006. border-left:0px;
  6007. border-top:0px;
  6008. border-right:0px;
  6009. border-radius:0px;
  6010. border-bottom-right-radius:0px;
  6011. border-bottom-left-radius:0px;
  6012. filter:drop-shadow(none);
  6013. transition:none;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:16px;
  6018. line-height:30px;
  6019. }
  6020. #u49186 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:957px;
  6024. top:350px;
  6025. width:129px;
  6026. height:30px;
  6027. display:flex;
  6028. transition:none;
  6029. transform-origin:50% 50%;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:16px;
  6034. line-height:30px;
  6035. }
  6036. #u49186 .text {
  6037. position:absolute;
  6038. align-self:flex-start;
  6039. padding:0px 0px 0px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u49186_text {
  6044. border-width:0px;
  6045. white-space:nowrap;
  6046. text-transform:none;
  6047. }
  6048. #u49187_div {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:49px;
  6054. height:25px;
  6055. background:inherit;
  6056. background-color:rgba(255, 255, 255, 0);
  6057. border-left:0px;
  6058. border-top:0px;
  6059. border-right:0px;
  6060. border-radius:0px;
  6061. border-bottom-right-radius:0px;
  6062. border-bottom-left-radius:0px;
  6063. filter:drop-shadow(none);
  6064. transition:none;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#7F7F7F;
  6070. line-height:25px;
  6071. }
  6072. #u49187 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:957px;
  6076. top:380px;
  6077. width:49px;
  6078. height:25px;
  6079. display:flex;
  6080. transition:none;
  6081. transform-origin:50% 50%;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:12px;
  6086. color:#7F7F7F;
  6087. line-height:25px;
  6088. }
  6089. #u49187 .text {
  6090. position:absolute;
  6091. align-self:flex-start;
  6092. padding:0px 0px 0px 0px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u49187_text {
  6097. border-width:0px;
  6098. white-space:nowrap;
  6099. text-transform:none;
  6100. }
  6101. #u49188_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:50px;
  6107. height:22px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 1);
  6110. box-sizing:border-box;
  6111. border-width:1px;
  6112. border-style:solid;
  6113. border-color:rgba(127, 127, 127, 1);
  6114. border-radius:40px;
  6115. filter:drop-shadow(none);
  6116. transition:none;
  6117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6118. font-weight:400;
  6119. font-style:normal;
  6120. font-size:11px;
  6121. }
  6122. #u49188 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:1252px;
  6126. top:354px;
  6127. width:50px;
  6128. height:22px;
  6129. display:flex;
  6130. transition:none;
  6131. transform-origin:50% 50%;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:11px;
  6136. }
  6137. #u49188 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 2px 2px 2px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u49188_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. }
  6149. #u49189_div {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:47px;
  6155. height:40px;
  6156. background:inherit;
  6157. background-color:rgba(255, 255, 255, 0);
  6158. border-left:0px;
  6159. border-top:0px;
  6160. border-right:0px;
  6161. border-radius:0px;
  6162. border-bottom-right-radius:0px;
  6163. border-bottom-left-radius:0px;
  6164. filter:drop-shadow(none);
  6165. transition:none;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:10px;
  6170. color:#1890FF;
  6171. line-height:25px;
  6172. }
  6173. #u49189 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:1246px;
  6177. top:216px;
  6178. width:47px;
  6179. height:40px;
  6180. display:flex;
  6181. transition:none;
  6182. transform-origin:50% 50%;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:10px;
  6187. color:#1890FF;
  6188. line-height:25px;
  6189. }
  6190. #u49189 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u49189_text {
  6198. border-width:0px;
  6199. white-space:nowrap;
  6200. text-transform:none;
  6201. }
  6202. #u49190 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:0px;
  6208. height:0px;
  6209. }
  6210. #u49191 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:1361px;
  6214. top:0px;
  6215. width:433px;
  6216. height:865px;
  6217. }
  6218. #u49192 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:433px;
  6224. height:865px;
  6225. display:flex;
  6226. transition:none;
  6227. }
  6228. #u49192 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 2px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u49192_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:433px;
  6241. height:865px;
  6242. }
  6243. #u49192_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. visibility:hidden;
  6248. }
  6249. #u49193_div {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:375px;
  6255. height:40px;
  6256. background:inherit;
  6257. background-color:rgba(255, 255, 255, 1);
  6258. box-sizing:border-box;
  6259. border-width:1px;
  6260. border-style:solid;
  6261. border-color:rgba(215, 215, 215, 1);
  6262. border-left:0px;
  6263. border-top:0px;
  6264. border-right:0px;
  6265. border-radius:0px;
  6266. border-bottom-right-radius:0px;
  6267. border-bottom-left-radius:0px;
  6268. filter:drop-shadow(none);
  6269. transition:none;
  6270. }
  6271. #u49193 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:29px;
  6275. top:67px;
  6276. width:375px;
  6277. height:40px;
  6278. display:flex;
  6279. transition:none;
  6280. transform-origin:50% 50%;
  6281. }
  6282. #u49193 .text {
  6283. position:absolute;
  6284. align-self:center;
  6285. padding:2px 2px 2px 2px;
  6286. box-sizing:border-box;
  6287. width:100%;
  6288. }
  6289. #u49193_text {
  6290. border-width:0px;
  6291. word-wrap:break-word;
  6292. text-transform:none;
  6293. visibility:hidden;
  6294. }
  6295. #u49194 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:0px;
  6301. height:0px;
  6302. }
  6303. #u49195_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:88px;
  6309. height:32px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 1);
  6312. box-sizing:border-box;
  6313. border-width:1px;
  6314. border-style:solid;
  6315. border-color:rgba(242, 242, 242, 1);
  6316. border-radius:33px;
  6317. filter:drop-shadow(none);
  6318. transition:none;
  6319. }
  6320. #u49195 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:309px;
  6324. top:71px;
  6325. width:88px;
  6326. height:32px;
  6327. display:flex;
  6328. transition:none;
  6329. transform-origin:50% 50%;
  6330. }
  6331. #u49195 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 2px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u49195_text {
  6339. border-width:0px;
  6340. word-wrap:break-word;
  6341. text-transform:none;
  6342. visibility:hidden;
  6343. }
  6344. #u49196 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:0px;
  6350. height:0px;
  6351. }
  6352. #u49197 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:372px;
  6356. top:78px;
  6357. width:18px;
  6358. height:18px;
  6359. display:flex;
  6360. transition:none;
  6361. }
  6362. #u49197 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 2px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u49197_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:18px;
  6375. height:18px;
  6376. }
  6377. #u49197_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. visibility:hidden;
  6382. }
  6383. #u49198 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:378px;
  6387. top:84px;
  6388. width:6px;
  6389. height:6px;
  6390. display:flex;
  6391. transition:none;
  6392. }
  6393. #u49198 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 2px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u49198_img {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:6px;
  6406. height:6px;
  6407. }
  6408. #u49198_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u49199 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:0px;
  6420. height:0px;
  6421. }
  6422. #u49200 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:323px;
  6426. top:85px;
  6427. width:5px;
  6428. height:5px;
  6429. display:flex;
  6430. transition:none;
  6431. }
  6432. #u49200 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 2px 2px 2px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u49200_img {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:5px;
  6445. height:5px;
  6446. }
  6447. #u49200_text {
  6448. border-width:0px;
  6449. word-wrap:break-word;
  6450. text-transform:none;
  6451. visibility:hidden;
  6452. }
  6453. #u49201 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:339px;
  6457. top:85px;
  6458. width:5px;
  6459. height:5px;
  6460. display:flex;
  6461. transition:none;
  6462. }
  6463. #u49201 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 2px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u49201_img {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:5px;
  6476. height:5px;
  6477. }
  6478. #u49201_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u49202 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:330px;
  6488. top:84px;
  6489. width:7px;
  6490. height:7px;
  6491. display:flex;
  6492. transition:none;
  6493. }
  6494. #u49202 .text {
  6495. position:absolute;
  6496. align-self:center;
  6497. padding:2px 2px 2px 2px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u49202_img {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:7px;
  6507. height:7px;
  6508. }
  6509. #u49202_text {
  6510. border-width:0px;
  6511. word-wrap:break-word;
  6512. text-transform:none;
  6513. visibility:hidden;
  6514. }
  6515. #u49203 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:347px;
  6519. top:87px;
  6520. width:18px;
  6521. height:1px;
  6522. display:flex;
  6523. -webkit-transform:rotate(90deg);
  6524. -moz-transform:rotate(90deg);
  6525. -ms-transform:rotate(90deg);
  6526. transform:rotate(90deg);
  6527. transition:none;
  6528. }
  6529. #u49203 .text {
  6530. position:absolute;
  6531. align-self:center;
  6532. padding:2px 2px 2px 2px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u49203_img {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:19px;
  6542. height:2px;
  6543. }
  6544. #u49203_text {
  6545. border-width:0px;
  6546. word-wrap:break-word;
  6547. text-transform:none;
  6548. visibility:hidden;
  6549. }
  6550. #u49204 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:29px;
  6554. top:24px;
  6555. width:375px;
  6556. height:44px;
  6557. display:flex;
  6558. transition:none;
  6559. }
  6560. #u49204 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u49204_img {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:375px;
  6573. height:44px;
  6574. }
  6575. #u49204_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. visibility:hidden;
  6580. }
  6581. #u49205_div {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:375px;
  6587. height:50px;
  6588. background:inherit;
  6589. background-color:rgba(255, 255, 255, 1);
  6590. box-sizing:border-box;
  6591. border-width:1px;
  6592. border-style:solid;
  6593. border-color:rgba(242, 242, 242, 1);
  6594. border-radius:26px;
  6595. border-top-left-radius:0px;
  6596. border-top-right-radius:0px;
  6597. filter:drop-shadow(none);
  6598. transition:none;
  6599. }
  6600. #u49205 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:29px;
  6604. top:788px;
  6605. width:375px;
  6606. height:50px;
  6607. display:flex;
  6608. transition:none;
  6609. transform-origin:50% 50%;
  6610. }
  6611. #u49205 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 2px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u49205_text {
  6619. border-width:0px;
  6620. word-wrap:break-word;
  6621. text-transform:none;
  6622. visibility:hidden;
  6623. }
  6624. #u49206 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:0px;
  6630. height:0px;
  6631. }
  6632. #u49207 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:69px;
  6636. top:792px;
  6637. width:24px;
  6638. height:24px;
  6639. display:flex;
  6640. transition:none;
  6641. font-size:8px;
  6642. }
  6643. #u49207 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u49207_img {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:24px;
  6656. height:24px;
  6657. }
  6658. #u49207_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. }
  6663. #u49208_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:25px;
  6669. height:17px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border-radius:0px;
  6673. filter:drop-shadow(none);
  6674. transition:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. }
  6680. #u49208 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:69px;
  6684. top:817px;
  6685. width:25px;
  6686. height:17px;
  6687. display:flex;
  6688. transition:none;
  6689. transform-origin:50% 50%;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:12px;
  6694. }
  6695. #u49208 .text {
  6696. position:absolute;
  6697. align-self:flex-start;
  6698. padding:0px 0px 0px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u49208_text {
  6703. border-width:0px;
  6704. white-space:nowrap;
  6705. text-transform:none;
  6706. }
  6707. #u49209 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:0px;
  6713. height:0px;
  6714. }
  6715. #u49210 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:339px;
  6719. top:794px;
  6720. width:24px;
  6721. height:24px;
  6722. display:flex;
  6723. transition:none;
  6724. font-size:8px;
  6725. }
  6726. #u49210 .text {
  6727. position:absolute;
  6728. align-self:center;
  6729. padding:2px 2px 2px 2px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u49210_img {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:24px;
  6739. height:24px;
  6740. }
  6741. #u49210_text {
  6742. border-width:0px;
  6743. word-wrap:break-word;
  6744. text-transform:none;
  6745. }
  6746. #u49211_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:25px;
  6752. height:17px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 0);
  6755. border-radius:0px;
  6756. filter:drop-shadow(none);
  6757. transition:none;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:12px;
  6762. }
  6763. #u49211 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:339px;
  6767. top:819px;
  6768. width:25px;
  6769. height:17px;
  6770. display:flex;
  6771. transition:none;
  6772. transform-origin:50% 50%;
  6773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:12px;
  6777. }
  6778. #u49211 .text {
  6779. position:absolute;
  6780. align-self:flex-start;
  6781. padding:0px 0px 0px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u49211_text {
  6786. border-width:0px;
  6787. white-space:nowrap;
  6788. text-transform:none;
  6789. }
  6790. #u49212_div {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:375px;
  6796. height:681px;
  6797. background:inherit;
  6798. background-color:rgba(242, 242, 242, 0.4627450980392157);
  6799. border-radius:0px;
  6800. filter:drop-shadow(none);
  6801. transition:none;
  6802. }
  6803. #u49212 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:29px;
  6807. top:107px;
  6808. width:375px;
  6809. height:681px;
  6810. display:flex;
  6811. transition:none;
  6812. transform-origin:50% 50%;
  6813. }
  6814. #u49212 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:2px 2px 2px 2px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u49212_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. visibility:hidden;
  6826. }
  6827. #u49213 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:0px;
  6833. height:0px;
  6834. }
  6835. #u49214 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:251px;
  6839. top:792px;
  6840. width:24px;
  6841. height:24px;
  6842. display:flex;
  6843. transition:none;
  6844. font-size:8px;
  6845. }
  6846. #u49214 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 2px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u49214_img {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:24px;
  6859. height:24px;
  6860. }
  6861. #u49214_text {
  6862. border-width:0px;
  6863. word-wrap:break-word;
  6864. text-transform:none;
  6865. }
  6866. #u49215_div {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:37px;
  6872. height:17px;
  6873. background:inherit;
  6874. background-color:rgba(255, 255, 255, 0);
  6875. border-radius:0px;
  6876. filter:drop-shadow(none);
  6877. transition:none;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:12px;
  6882. }
  6883. #u49215 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:245px;
  6887. top:817px;
  6888. width:37px;
  6889. height:17px;
  6890. display:flex;
  6891. transition:none;
  6892. transform-origin:50% 50%;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:12px;
  6897. }
  6898. #u49215 .text {
  6899. position:absolute;
  6900. align-self:flex-start;
  6901. padding:0px 0px 0px 0px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u49215_text {
  6906. border-width:0px;
  6907. white-space:nowrap;
  6908. text-transform:none;
  6909. }
  6910. #u49216 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:0px;
  6916. height:0px;
  6917. }
  6918. #u49217 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:157px;
  6922. top:792px;
  6923. width:24px;
  6924. height:24px;
  6925. display:flex;
  6926. transition:none;
  6927. font-size:8px;
  6928. }
  6929. #u49217 .text {
  6930. position:absolute;
  6931. align-self:center;
  6932. padding:2px 2px 2px 2px;
  6933. box-sizing:border-box;
  6934. width:100%;
  6935. }
  6936. #u49217_img {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:24px;
  6942. height:24px;
  6943. }
  6944. #u49217_text {
  6945. border-width:0px;
  6946. word-wrap:break-word;
  6947. text-transform:none;
  6948. }
  6949. #u49218_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:37px;
  6955. height:17px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 0);
  6958. border-radius:0px;
  6959. filter:drop-shadow(none);
  6960. transition:none;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. }
  6966. #u49218 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:151px;
  6970. top:817px;
  6971. width:37px;
  6972. height:17px;
  6973. display:flex;
  6974. transition:none;
  6975. transform-origin:50% 50%;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:12px;
  6980. }
  6981. #u49218 .text {
  6982. position:absolute;
  6983. align-self:flex-start;
  6984. padding:0px 0px 0px 0px;
  6985. box-sizing:border-box;
  6986. width:100%;
  6987. }
  6988. #u49218_text {
  6989. border-width:0px;
  6990. white-space:nowrap;
  6991. text-transform:none;
  6992. }
  6993. #u49219_div {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:375px;
  6999. height:735px;
  7000. background:inherit;
  7001. background-color:rgba(242, 242, 242, 1);
  7002. border-top:0px;
  7003. border-radius:25px;
  7004. border-top-left-radius:0px;
  7005. border-top-right-radius:0px;
  7006. filter:drop-shadow(none);
  7007. transition:none;
  7008. }
  7009. #u49219 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:1390px;
  7013. top:105px;
  7014. width:375px;
  7015. height:735px;
  7016. display:flex;
  7017. transition:none;
  7018. transform-origin:50% 50%;
  7019. }
  7020. #u49219 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 2px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u49219_text {
  7028. border-width:0px;
  7029. word-wrap:break-word;
  7030. text-transform:none;
  7031. visibility:hidden;
  7032. }
  7033. #u49220_div {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:85px;
  7039. height:30px;
  7040. background:inherit;
  7041. background-color:rgba(255, 255, 255, 0);
  7042. border-left:0px;
  7043. border-top:0px;
  7044. border-right:0px;
  7045. border-radius:0px;
  7046. border-bottom-right-radius:0px;
  7047. border-bottom-left-radius:0px;
  7048. filter:drop-shadow(none);
  7049. transition:none;
  7050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7051. font-weight:500;
  7052. font-style:normal;
  7053. font-size:14px;
  7054. line-height:30px;
  7055. }
  7056. #u49220 {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:1435px;
  7060. top:73px;
  7061. width:85px;
  7062. height:30px;
  7063. display:flex;
  7064. transition:none;
  7065. transform-origin:50% 50%;
  7066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7067. font-weight:500;
  7068. font-style:normal;
  7069. font-size:14px;
  7070. line-height:30px;
  7071. }
  7072. #u49220 .text {
  7073. position:absolute;
  7074. align-self:flex-start;
  7075. padding:0px 0px 0px 0px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u49220_text {
  7080. border-width:0px;
  7081. white-space:nowrap;
  7082. text-transform:none;
  7083. }
  7084. #u49221 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:0px;
  7090. height:0px;
  7091. }
  7092. #u49222 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:1403px;
  7096. top:79px;
  7097. width:11px;
  7098. height:18px;
  7099. display:flex;
  7100. transition:none;
  7101. }
  7102. #u49222 .text {
  7103. position:absolute;
  7104. align-self:center;
  7105. padding:2px 2px 2px 2px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u49222_img {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:11px;
  7115. height:18px;
  7116. }
  7117. #u49222_text {
  7118. border-width:0px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. visibility:hidden;
  7122. }
  7123. #u49223 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:0px;
  7129. height:0px;
  7130. }
  7131. #u49224_div {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:375px;
  7137. height:80px;
  7138. background:inherit;
  7139. background-color:rgba(255, 255, 255, 1);
  7140. border-left:0px;
  7141. border-top:0px;
  7142. border-right:0px;
  7143. border-radius:0px;
  7144. border-bottom-right-radius:0px;
  7145. border-bottom-left-radius:0px;
  7146. filter:drop-shadow(none);
  7147. transition:none;
  7148. }
  7149. #u49224 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:1390px;
  7153. top:105px;
  7154. width:375px;
  7155. height:80px;
  7156. display:flex;
  7157. transition:none;
  7158. transform-origin:50% 50%;
  7159. }
  7160. #u49224 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u49224_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u49225_div {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:129px;
  7179. height:30px;
  7180. background:inherit;
  7181. background-color:rgba(255, 255, 255, 0);
  7182. border-left:0px;
  7183. border-top:0px;
  7184. border-right:0px;
  7185. border-radius:0px;
  7186. border-bottom-right-radius:0px;
  7187. border-bottom-left-radius:0px;
  7188. filter:drop-shadow(none);
  7189. transition:none;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:16px;
  7194. line-height:30px;
  7195. }
  7196. #u49225 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:1417px;
  7200. top:144px;
  7201. width:129px;
  7202. height:30px;
  7203. display:flex;
  7204. transition:none;
  7205. transform-origin:50% 50%;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:16px;
  7210. line-height:30px;
  7211. }
  7212. #u49225 .text {
  7213. position:absolute;
  7214. align-self:flex-start;
  7215. padding:0px 0px 0px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u49225_text {
  7220. border-width:0px;
  7221. white-space:nowrap;
  7222. text-transform:none;
  7223. }
  7224. #u49226_div {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:49px;
  7230. height:25px;
  7231. background:inherit;
  7232. background-color:rgba(255, 255, 255, 0);
  7233. border-left:0px;
  7234. border-top:0px;
  7235. border-right:0px;
  7236. border-radius:0px;
  7237. border-bottom-right-radius:0px;
  7238. border-bottom-left-radius:0px;
  7239. filter:drop-shadow(none);
  7240. transition:none;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:12px;
  7245. color:#7F7F7F;
  7246. line-height:25px;
  7247. }
  7248. #u49226 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:1417px;
  7252. top:119px;
  7253. width:49px;
  7254. height:25px;
  7255. display:flex;
  7256. transition:none;
  7257. transform-origin:50% 50%;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:12px;
  7262. color:#7F7F7F;
  7263. line-height:25px;
  7264. }
  7265. #u49226 .text {
  7266. position:absolute;
  7267. align-self:flex-start;
  7268. padding:0px 0px 0px 0px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u49226_text {
  7273. border-width:0px;
  7274. white-space:nowrap;
  7275. text-transform:none;
  7276. }
  7277. #u49227 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:0px;
  7283. height:0px;
  7284. }
  7285. #u49228 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:1744px;
  7289. top:156px;
  7290. width:7px;
  7291. height:11px;
  7292. display:flex;
  7293. -webkit-transform:rotate(180deg);
  7294. -moz-transform:rotate(180deg);
  7295. -ms-transform:rotate(180deg);
  7296. transform:rotate(180deg);
  7297. transition:none;
  7298. }
  7299. #u49228 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:2px 2px 2px 2px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u49228_img {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:7px;
  7312. height:11px;
  7313. }
  7314. #u49228_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u49229 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:0px;
  7326. height:0px;
  7327. }
  7328. #u49230_div {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:375px;
  7334. height:80px;
  7335. background:inherit;
  7336. background-color:rgba(255, 255, 255, 1);
  7337. border-left:0px;
  7338. border-top:0px;
  7339. border-right:0px;
  7340. border-radius:0px;
  7341. border-bottom-right-radius:0px;
  7342. border-bottom-left-radius:0px;
  7343. filter:drop-shadow(none);
  7344. transition:none;
  7345. }
  7346. #u49230 {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:1390px;
  7350. top:186px;
  7351. width:375px;
  7352. height:80px;
  7353. display:flex;
  7354. transition:none;
  7355. transform-origin:50% 50%;
  7356. }
  7357. #u49230 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:2px 2px 2px 2px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u49230_text {
  7365. border-width:0px;
  7366. word-wrap:break-word;
  7367. text-transform:none;
  7368. visibility:hidden;
  7369. }
  7370. #u49231_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:49px;
  7376. height:30px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. border-left:0px;
  7380. border-top:0px;
  7381. border-right:0px;
  7382. border-radius:0px;
  7383. border-bottom-right-radius:0px;
  7384. border-bottom-left-radius:0px;
  7385. filter:drop-shadow(none);
  7386. transition:none;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:16px;
  7391. line-height:30px;
  7392. }
  7393. #u49231 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:1417px;
  7397. top:225px;
  7398. width:49px;
  7399. height:30px;
  7400. display:flex;
  7401. transition:none;
  7402. transform-origin:50% 50%;
  7403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:16px;
  7407. line-height:30px;
  7408. }
  7409. #u49231 .text {
  7410. position:absolute;
  7411. align-self:flex-start;
  7412. padding:0px 0px 0px 0px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u49231_text {
  7417. border-width:0px;
  7418. white-space:nowrap;
  7419. text-transform:none;
  7420. }
  7421. #u49232_div {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:49px;
  7427. height:25px;
  7428. background:inherit;
  7429. background-color:rgba(255, 255, 255, 0);
  7430. border-left:0px;
  7431. border-top:0px;
  7432. border-right:0px;
  7433. border-radius:0px;
  7434. border-bottom-right-radius:0px;
  7435. border-bottom-left-radius:0px;
  7436. filter:drop-shadow(none);
  7437. transition:none;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:12px;
  7442. color:#7F7F7F;
  7443. line-height:25px;
  7444. }
  7445. #u49232 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:1417px;
  7449. top:200px;
  7450. width:49px;
  7451. height:25px;
  7452. display:flex;
  7453. transition:none;
  7454. transform-origin:50% 50%;
  7455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. font-size:12px;
  7459. color:#7F7F7F;
  7460. line-height:25px;
  7461. }
  7462. #u49232 .text {
  7463. position:absolute;
  7464. align-self:flex-start;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u49232_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u49233 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:0px;
  7480. height:0px;
  7481. }
  7482. #u49234 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:1744px;
  7486. top:236px;
  7487. width:7px;
  7488. height:11px;
  7489. display:flex;
  7490. -webkit-transform:rotate(180deg);
  7491. -moz-transform:rotate(180deg);
  7492. -ms-transform:rotate(180deg);
  7493. transform:rotate(180deg);
  7494. transition:none;
  7495. }
  7496. #u49234 .text {
  7497. position:absolute;
  7498. align-self:center;
  7499. padding:2px 2px 2px 2px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u49234_img {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:7px;
  7509. height:11px;
  7510. }
  7511. #u49234_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. visibility:hidden;
  7516. }
  7517. #u49235_div {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:160px;
  7523. height:40px;
  7524. background:inherit;
  7525. background-color:rgba(255, 255, 255, 1);
  7526. box-sizing:border-box;
  7527. border-width:1px;
  7528. border-style:solid;
  7529. border-color:rgba(24, 144, 255, 1);
  7530. border-radius:45px;
  7531. filter:drop-shadow(none);
  7532. transition:none;
  7533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7534. font-weight:400;
  7535. font-style:normal;
  7536. font-size:14px;
  7537. color:#1890FF;
  7538. }
  7539. #u49235 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:1411px;
  7543. top:281px;
  7544. width:160px;
  7545. height:40px;
  7546. display:flex;
  7547. transition:none;
  7548. transform-origin:50% 50%;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:14px;
  7553. color:#1890FF;
  7554. }
  7555. #u49235 .text {
  7556. position:absolute;
  7557. align-self:center;
  7558. padding:2px 2px 2px 2px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u49235_text {
  7563. border-width:0px;
  7564. word-wrap:break-word;
  7565. text-transform:none;
  7566. }
  7567. #u49236_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:160px;
  7573. height:40px;
  7574. background:inherit;
  7575. background-color:rgba(0, 137, 254, 1);
  7576. border-radius:45px;
  7577. filter:drop-shadow(none);
  7578. transition:none;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. color:#FFFFFF;
  7584. }
  7585. #u49236 {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:1591px;
  7589. top:281px;
  7590. width:160px;
  7591. height:40px;
  7592. display:flex;
  7593. transition:none;
  7594. transform-origin:50% 50%;
  7595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:14px;
  7599. color:#FFFFFF;
  7600. }
  7601. #u49236 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u49236_text {
  7609. border-width:0px;
  7610. word-wrap:break-word;
  7611. text-transform:none;
  7612. }
  7613. #u49237_div {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:334px;
  7619. height:100px;
  7620. background:inherit;
  7621. background-color:rgba(255, 255, 255, 0);
  7622. border-left:0px;
  7623. border-top:0px;
  7624. border-right:0px;
  7625. border-radius:0px;
  7626. border-bottom-right-radius:0px;
  7627. border-bottom-left-radius:0px;
  7628. filter:drop-shadow(none);
  7629. transition:none;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:12px;
  7634. color:#D9001B;
  7635. line-height:25px;
  7636. }
  7637. #u49237 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1409px;
  7641. top:333px;
  7642. width:334px;
  7643. height:100px;
  7644. display:flex;
  7645. transition:none;
  7646. transform-origin:50% 50%;
  7647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:12px;
  7651. color:#D9001B;
  7652. line-height:25px;
  7653. }
  7654. #u49237 .text {
  7655. position:absolute;
  7656. align-self:flex-start;
  7657. padding:0px 0px 0px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u49237_text {
  7662. border-width:0px;
  7663. word-wrap:break-word;
  7664. text-transform:none;
  7665. }
  7666. #u49238_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:299px;
  7672. height:50px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border-left:0px;
  7676. border-top:0px;
  7677. border-right:0px;
  7678. border-radius:0px;
  7679. border-bottom-right-radius:0px;
  7680. border-bottom-left-radius:0px;
  7681. filter:drop-shadow(none);
  7682. transition:none;
  7683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:12px;
  7687. color:#D9001B;
  7688. line-height:25px;
  7689. }
  7690. #u49238 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:512px;
  7694. top:582px;
  7695. width:299px;
  7696. height:50px;
  7697. display:flex;
  7698. transition:none;
  7699. transform-origin:50% 50%;
  7700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:12px;
  7704. color:#D9001B;
  7705. line-height:25px;
  7706. }
  7707. #u49238 .text {
  7708. position:absolute;
  7709. align-self:flex-start;
  7710. padding:0px 0px 0px 0px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u49238_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. }