styles.css 186 KB

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