styles.css 177 KB

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