styles.css 128 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1810px;
  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. #u179740_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u179740 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u179740 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u179740_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u179741_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. #u179741 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u179741 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u179741_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u179742 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u179743_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. #u179743 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u179743 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u179743_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u179744 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u179745_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u179745 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u179745 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u179745_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u179746_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u179746 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u179746 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u179746_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u179747 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u179748_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u179748 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u179748 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u179748_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u179749_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u179749 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u179749 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u179749_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u179750_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u179750 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u179750 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u179750_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u179751_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u179751 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  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. #u179751 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u179751_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u179752_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u179752 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u179752 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u179752_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u179753_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. #u179753 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u179753 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u179753_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u179754 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u179755_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u179755 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u179755 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u179755_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u179756_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. #u179756 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  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. #u179756 .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. #u179756_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u179757 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u179758_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u179758 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u179758 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u179758_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u179759_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. #u179759 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  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. #u179759 .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. #u179759_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u179760_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. #u179760 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u179760 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u179760_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u179761 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u179762_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u179762 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u179762 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u179762_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u179763_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. #u179763 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  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. #u179763 .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. #u179763_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u179764 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u179765_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u179765 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u179765 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u179765_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u179766_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. #u179766 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  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. #u179766 .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. #u179766_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u179767_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u179767 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u179767 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u179767_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u179768_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:40px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u179768 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u179768 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u179768_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u179769_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u179769 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u179769 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u179769_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u179770 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u179771_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u179771 {
  921. border-width:0px;
  922. position:absolute;
  923. left:306px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u179771 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u179771_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u179772 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u179773_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u179773 {
  959. border-width:0px;
  960. position:absolute;
  961. left:369px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u179773 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u179773_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u179774_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u179774 {
  989. border-width:0px;
  990. position:absolute;
  991. left:375px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u179774 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u179774_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u179775 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u179776_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u179776 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:320px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u179776 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u179776_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u179777_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u179777 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:336px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u179777 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u179777_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u179778_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u179778 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:327px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u179778 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u179778_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u179779_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u179779 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:344px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u179779 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u179779_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u179780_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:73px;
  1148. height:25px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border:none;
  1152. border-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:18px;
  1160. color:#000000;
  1161. text-align:center;
  1162. }
  1163. #u179780 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:180px;
  1167. top:75px;
  1168. width:73px;
  1169. height:25px;
  1170. display:flex;
  1171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:18px;
  1175. color:#000000;
  1176. text-align:center;
  1177. }
  1178. #u179780 .text {
  1179. position:absolute;
  1180. align-self:flex-start;
  1181. padding:0px 0px 0px 0px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u179780_text {
  1186. border-width:0px;
  1187. white-space:nowrap;
  1188. text-transform:none;
  1189. }
  1190. #u179781_div {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:12px;
  1196. height:12px;
  1197. background:inherit;
  1198. background-color:rgba(255, 255, 255, 0);
  1199. box-sizing:border-box;
  1200. border-width:2px;
  1201. border-style:solid;
  1202. border-color:rgba(51, 51, 51, 1);
  1203. border-right:0px;
  1204. border-bottom:0px;
  1205. border-radius:0px;
  1206. border-top-right-radius:0px;
  1207. border-bottom-left-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. }
  1212. #u179781 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:44px;
  1216. top:81px;
  1217. width:12px;
  1218. height:12px;
  1219. display:flex;
  1220. -webkit-transform:rotate(315deg);
  1221. -moz-transform:rotate(315deg);
  1222. -ms-transform:rotate(315deg);
  1223. transform:rotate(315deg);
  1224. }
  1225. #u179781 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u179781_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u179782_div {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:338px;
  1244. height:40px;
  1245. background:inherit;
  1246. background-color:rgba(0, 137, 254, 1);
  1247. border:none;
  1248. border-radius:63px;
  1249. -moz-box-shadow:none;
  1250. -webkit-box-shadow:none;
  1251. box-shadow:none;
  1252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1253. font-weight:400;
  1254. font-style:normal;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u179782 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:49px;
  1262. top:789px;
  1263. width:338px;
  1264. height:40px;
  1265. display:flex;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:14px;
  1270. color:#FFFFFF;
  1271. }
  1272. #u179782 .text {
  1273. position:absolute;
  1274. align-self:center;
  1275. padding:2px 2px 2px 2px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u179782_text {
  1280. border-width:0px;
  1281. word-wrap:break-word;
  1282. text-transform:none;
  1283. }
  1284. #u179783_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:113px;
  1290. height:20px;
  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. color:#000000;
  1302. }
  1303. #u179783 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:48px;
  1307. top:117px;
  1308. width:113px;
  1309. height:20px;
  1310. display:flex;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. color:#000000;
  1315. }
  1316. #u179783 .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. #u179783_text {
  1324. border-width:0px;
  1325. white-space:nowrap;
  1326. text-transform:none;
  1327. }
  1328. #u179784 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:0px;
  1334. height:0px;
  1335. }
  1336. #u179785_img {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:355px;
  1342. height:80px;
  1343. }
  1344. #u179785 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:39px;
  1348. top:147px;
  1349. width:355px;
  1350. height:80px;
  1351. display:flex;
  1352. }
  1353. #u179785 .text {
  1354. position:absolute;
  1355. align-self:center;
  1356. padding:2px 2px 2px 2px;
  1357. box-sizing:border-box;
  1358. width:100%;
  1359. }
  1360. #u179785_text {
  1361. border-width:0px;
  1362. word-wrap:break-word;
  1363. text-transform:none;
  1364. visibility:hidden;
  1365. }
  1366. #u179786_div {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:127px;
  1372. height:30px;
  1373. background:inherit;
  1374. background-color:rgba(255, 255, 255, 0);
  1375. border:none;
  1376. border-left:0px;
  1377. border-top:0px;
  1378. border-right:0px;
  1379. border-radius:0px;
  1380. border-bottom-right-radius:0px;
  1381. border-bottom-left-radius:0px;
  1382. -moz-box-shadow:none;
  1383. -webkit-box-shadow:none;
  1384. box-shadow:none;
  1385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1386. font-weight:400;
  1387. font-style:normal;
  1388. font-size:14px;
  1389. color:#7F7F7F;
  1390. line-height:30px;
  1391. }
  1392. #u179786 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:52px;
  1396. top:157px;
  1397. width:127px;
  1398. height:30px;
  1399. display:flex;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:14px;
  1404. color:#7F7F7F;
  1405. line-height:30px;
  1406. }
  1407. #u179786 .text {
  1408. position:absolute;
  1409. align-self:flex-start;
  1410. padding:0px 0px 0px 0px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u179786_text {
  1415. border-width:0px;
  1416. white-space:nowrap;
  1417. text-transform:none;
  1418. }
  1419. #u179787_div {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:141px;
  1425. height:30px;
  1426. background:inherit;
  1427. background-color:rgba(255, 255, 255, 0);
  1428. border:none;
  1429. border-left:0px;
  1430. border-top:0px;
  1431. border-right:0px;
  1432. border-radius:0px;
  1433. border-bottom-right-radius:0px;
  1434. border-bottom-left-radius:0px;
  1435. -moz-box-shadow:none;
  1436. -webkit-box-shadow:none;
  1437. box-shadow:none;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:14px;
  1442. color:#7F7F7F;
  1443. line-height:30px;
  1444. }
  1445. #u179787 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:52px;
  1449. top:187px;
  1450. width:141px;
  1451. height:30px;
  1452. display:flex;
  1453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1454. font-weight:400;
  1455. font-style:normal;
  1456. font-size:14px;
  1457. color:#7F7F7F;
  1458. line-height:30px;
  1459. }
  1460. #u179787 .text {
  1461. position:absolute;
  1462. align-self:flex-start;
  1463. padding:0px 0px 0px 0px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u179787_text {
  1468. border-width:0px;
  1469. white-space:nowrap;
  1470. text-transform:none;
  1471. }
  1472. #u179788 label {
  1473. left:0px;
  1474. width:100%;
  1475. }
  1476. #u179788_img {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:12px;
  1482. height:12px;
  1483. }
  1484. #u179788 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:370px;
  1488. top:165px;
  1489. width:24px;
  1490. height:16px;
  1491. display:flex;
  1492. }
  1493. #u179788 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:0px 2px 0px 2px;
  1497. box-sizing:border-box;
  1498. }
  1499. #u179788_img.selected {
  1500. }
  1501. #u179788.selected {
  1502. }
  1503. #u179788_img.disabled {
  1504. }
  1505. #u179788.disabled {
  1506. }
  1507. #u179788_img.selectedDisabled {
  1508. }
  1509. #u179788.selectedDisabled {
  1510. }
  1511. #u179788_text {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:14px;
  1515. top:0px;
  1516. width:8px;
  1517. word-wrap:break-word;
  1518. text-transform:none;
  1519. visibility:hidden;
  1520. }
  1521. #u179788_input {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:0px;
  1527. height:0px;
  1528. opacity:0;
  1529. }
  1530. #u179789 label {
  1531. left:0px;
  1532. width:100%;
  1533. }
  1534. #u179789_img {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:12px;
  1540. height:12px;
  1541. }
  1542. #u179789 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:370px;
  1546. top:197px;
  1547. width:24px;
  1548. height:16px;
  1549. display:flex;
  1550. }
  1551. #u179789 .text {
  1552. position:absolute;
  1553. align-self:center;
  1554. padding:0px 2px 0px 2px;
  1555. box-sizing:border-box;
  1556. }
  1557. #u179789_img.selected {
  1558. }
  1559. #u179789.selected {
  1560. }
  1561. #u179789_img.disabled {
  1562. }
  1563. #u179789.disabled {
  1564. }
  1565. #u179789_img.selectedDisabled {
  1566. }
  1567. #u179789.selectedDisabled {
  1568. }
  1569. #u179789_text {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:14px;
  1573. top:0px;
  1574. width:8px;
  1575. word-wrap:break-word;
  1576. text-transform:none;
  1577. visibility:hidden;
  1578. }
  1579. #u179789_input {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:0px;
  1585. height:0px;
  1586. opacity:0;
  1587. }
  1588. #u179790_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:57px;
  1594. height:20px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 0);
  1597. border:none;
  1598. border-radius:0px;
  1599. -moz-box-shadow:none;
  1600. -webkit-box-shadow:none;
  1601. box-shadow:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. color:#000000;
  1606. }
  1607. #u179790 {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:48px;
  1611. top:237px;
  1612. width:57px;
  1613. height:20px;
  1614. display:flex;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. color:#000000;
  1619. }
  1620. #u179790 .text {
  1621. position:absolute;
  1622. align-self:flex-start;
  1623. padding:0px 0px 0px 0px;
  1624. box-sizing:border-box;
  1625. width:100%;
  1626. }
  1627. #u179790_text {
  1628. border-width:0px;
  1629. white-space:nowrap;
  1630. text-transform:none;
  1631. }
  1632. #u179791 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:0px;
  1638. height:0px;
  1639. }
  1640. #u179792_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:349px;
  1646. height:440px;
  1647. background:inherit;
  1648. background-color:rgba(255, 255, 255, 1);
  1649. box-sizing:border-box;
  1650. border-width:1px;
  1651. border-style:solid;
  1652. border-color:rgba(242, 242, 242, 1);
  1653. border-radius:3px;
  1654. -moz-box-shadow:none;
  1655. -webkit-box-shadow:none;
  1656. box-shadow:none;
  1657. }
  1658. #u179792 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:45px;
  1662. top:267px;
  1663. width:349px;
  1664. height:440px;
  1665. display:flex;
  1666. }
  1667. #u179792 .text {
  1668. position:absolute;
  1669. align-self:center;
  1670. padding:2px 2px 2px 2px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u179792_text {
  1675. border-width:0px;
  1676. word-wrap:break-word;
  1677. text-transform:none;
  1678. visibility:hidden;
  1679. }
  1680. #u179793 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:0px;
  1686. height:0px;
  1687. }
  1688. #u179794_div {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:71px;
  1694. height:300px;
  1695. background:inherit;
  1696. background-color:rgba(255, 255, 255, 0);
  1697. border:none;
  1698. border-left:0px;
  1699. border-top:0px;
  1700. border-right:0px;
  1701. border-radius:0px;
  1702. border-bottom-right-radius:0px;
  1703. border-bottom-left-radius:0px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:14px;
  1711. line-height:30px;
  1712. }
  1713. #u179794 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:59px;
  1717. top:277px;
  1718. width:71px;
  1719. height:300px;
  1720. display:flex;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:14px;
  1725. line-height:30px;
  1726. }
  1727. #u179794 .text {
  1728. position:absolute;
  1729. align-self:flex-start;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u179794_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u179795_div {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:113px;
  1745. height:240px;
  1746. background:inherit;
  1747. background-color:rgba(255, 255, 255, 0);
  1748. border:none;
  1749. border-left:0px;
  1750. border-top:0px;
  1751. border-right:0px;
  1752. border-radius:0px;
  1753. border-bottom-right-radius:0px;
  1754. border-bottom-left-radius:0px;
  1755. -moz-box-shadow:none;
  1756. -webkit-box-shadow:none;
  1757. box-shadow:none;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. color:#AAAAAA;
  1763. line-height:30px;
  1764. }
  1765. #u179795 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:136px;
  1769. top:277px;
  1770. width:113px;
  1771. height:240px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:14px;
  1777. color:#AAAAAA;
  1778. line-height:30px;
  1779. }
  1780. #u179795 .text {
  1781. position:absolute;
  1782. align-self:flex-start;
  1783. padding:0px 0px 0px 0px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u179795_text {
  1788. border-width:0px;
  1789. white-space:nowrap;
  1790. text-transform:none;
  1791. }
  1792. #u179796_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:25px;
  1798. height:30px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 0);
  1801. border:none;
  1802. border-left:0px;
  1803. border-top:0px;
  1804. border-right:0px;
  1805. border-radius:0px;
  1806. border-bottom-right-radius:0px;
  1807. border-bottom-left-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#0089FE;
  1816. line-height:30px;
  1817. }
  1818. #u179796 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:351px;
  1822. top:427px;
  1823. width:25px;
  1824. height:30px;
  1825. display:flex;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#0089FE;
  1831. line-height:30px;
  1832. }
  1833. #u179796 .text {
  1834. position:absolute;
  1835. align-self:flex-start;
  1836. padding:0px 0px 0px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u179796_text {
  1841. border-width:0px;
  1842. white-space:nowrap;
  1843. text-transform:none;
  1844. }
  1845. #u179797_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:103px;
  1851. height:30px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border:none;
  1855. border-left:0px;
  1856. border-top:0px;
  1857. border-right:0px;
  1858. border-radius:0px;
  1859. border-bottom-right-radius:0px;
  1860. border-bottom-left-radius:0px;
  1861. -moz-box-shadow:none;
  1862. -webkit-box-shadow:none;
  1863. box-shadow:none;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:12px;
  1868. color:#D7D7D7;
  1869. line-height:30px;
  1870. }
  1871. #u179797 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:140px;
  1875. top:548px;
  1876. width:103px;
  1877. height:30px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:12px;
  1883. color:#D7D7D7;
  1884. line-height:30px;
  1885. }
  1886. #u179797 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:0px 0px 0px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u179797_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u179798_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:60px;
  1904. height:60px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 1);
  1907. box-sizing:border-box;
  1908. border-width:1px;
  1909. border-style:solid;
  1910. border-color:rgba(121, 121, 121, 1);
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:11px;
  1919. }
  1920. #u179798 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:65px;
  1924. top:584px;
  1925. width:60px;
  1926. height:60px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:11px;
  1932. }
  1933. #u179798 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u179798_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u179800_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:433px;
  1951. height:865px;
  1952. }
  1953. #u179800 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:455px;
  1957. top:0px;
  1958. width:433px;
  1959. height:865px;
  1960. display:flex;
  1961. }
  1962. #u179800 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u179800_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u179801_div {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:375px;
  1981. height:40px;
  1982. background:inherit;
  1983. background-color:rgba(255, 255, 255, 1);
  1984. box-sizing:border-box;
  1985. border-width:1px;
  1986. border-style:solid;
  1987. border-color:rgba(215, 215, 215, 1);
  1988. border-left:0px;
  1989. border-top:0px;
  1990. border-right:0px;
  1991. border-radius:0px;
  1992. border-bottom-right-radius:0px;
  1993. border-bottom-left-radius:0px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. }
  1998. #u179801 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:484px;
  2002. top:67px;
  2003. width:375px;
  2004. height:40px;
  2005. display:flex;
  2006. }
  2007. #u179801 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u179801_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u179802 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:0px;
  2026. height:0px;
  2027. }
  2028. #u179803_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:88px;
  2034. height:32px;
  2035. background:inherit;
  2036. background-color:rgba(255, 255, 255, 1);
  2037. box-sizing:border-box;
  2038. border-width:1px;
  2039. border-style:solid;
  2040. border-color:rgba(242, 242, 242, 1);
  2041. border-radius:33px;
  2042. -moz-box-shadow:none;
  2043. -webkit-box-shadow:none;
  2044. box-shadow:none;
  2045. }
  2046. #u179803 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:764px;
  2050. top:71px;
  2051. width:88px;
  2052. height:32px;
  2053. display:flex;
  2054. }
  2055. #u179803 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u179803_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u179804 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:0px;
  2074. height:0px;
  2075. }
  2076. #u179805_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:18px;
  2082. height:18px;
  2083. }
  2084. #u179805 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:827px;
  2088. top:78px;
  2089. width:18px;
  2090. height:18px;
  2091. display:flex;
  2092. }
  2093. #u179805 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 2px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u179805_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u179806_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:6px;
  2112. height:6px;
  2113. }
  2114. #u179806 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:833px;
  2118. top:84px;
  2119. width:6px;
  2120. height:6px;
  2121. display:flex;
  2122. }
  2123. #u179806 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 2px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u179806_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u179807 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:0px;
  2142. height:0px;
  2143. }
  2144. #u179808_img {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:5px;
  2150. height:5px;
  2151. }
  2152. #u179808 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:778px;
  2156. top:85px;
  2157. width:5px;
  2158. height:5px;
  2159. display:flex;
  2160. }
  2161. #u179808 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 2px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u179808_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. visibility:hidden;
  2173. }
  2174. #u179809_img {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:5px;
  2180. height:5px;
  2181. }
  2182. #u179809 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:794px;
  2186. top:85px;
  2187. width:5px;
  2188. height:5px;
  2189. display:flex;
  2190. }
  2191. #u179809 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 2px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u179809_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u179810_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:7px;
  2210. height:7px;
  2211. }
  2212. #u179810 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:785px;
  2216. top:84px;
  2217. width:7px;
  2218. height:7px;
  2219. display:flex;
  2220. }
  2221. #u179810 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 2px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u179810_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. visibility:hidden;
  2233. }
  2234. #u179811_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:19px;
  2240. height:2px;
  2241. }
  2242. #u179811 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:802px;
  2246. top:87px;
  2247. width:18px;
  2248. height:1px;
  2249. display:flex;
  2250. -webkit-transform:rotate(90deg);
  2251. -moz-transform:rotate(90deg);
  2252. -ms-transform:rotate(90deg);
  2253. transform:rotate(90deg);
  2254. }
  2255. #u179811 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 2px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u179811_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u179812_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:375px;
  2274. height:44px;
  2275. }
  2276. #u179812 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:484px;
  2280. top:24px;
  2281. width:375px;
  2282. height:44px;
  2283. display:flex;
  2284. }
  2285. #u179812 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u179812_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u179813_div {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:375px;
  2304. height:50px;
  2305. background:inherit;
  2306. background-color:rgba(255, 255, 255, 1);
  2307. box-sizing:border-box;
  2308. border-width:1px;
  2309. border-style:solid;
  2310. border-color:rgba(242, 242, 242, 1);
  2311. border-radius:26px;
  2312. border-top-left-radius:0px;
  2313. border-top-right-radius:0px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. }
  2318. #u179813 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:484px;
  2322. top:788px;
  2323. width:375px;
  2324. height:50px;
  2325. display:flex;
  2326. }
  2327. #u179813 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 2px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u179813_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u179814 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:0px;
  2346. height:0px;
  2347. }
  2348. #u179815_img {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:24px;
  2354. height:24px;
  2355. }
  2356. #u179815 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:524px;
  2360. top:792px;
  2361. width:24px;
  2362. height:24px;
  2363. display:flex;
  2364. font-size:8px;
  2365. }
  2366. #u179815 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u179815_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. }
  2378. #u179816_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:25px;
  2384. height:17px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 0);
  2387. border:none;
  2388. border-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u179816 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:524px;
  2401. top:817px;
  2402. width:25px;
  2403. height:17px;
  2404. display:flex;
  2405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:12px;
  2409. }
  2410. #u179816 .text {
  2411. position:absolute;
  2412. align-self:flex-start;
  2413. padding:0px 0px 0px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u179816_text {
  2418. border-width:0px;
  2419. white-space:nowrap;
  2420. text-transform:none;
  2421. }
  2422. #u179817 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:0px;
  2428. height:0px;
  2429. }
  2430. #u179818_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:24px;
  2436. height:24px;
  2437. }
  2438. #u179818 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:794px;
  2442. top:794px;
  2443. width:24px;
  2444. height:24px;
  2445. display:flex;
  2446. font-size:8px;
  2447. }
  2448. #u179818 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u179818_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. }
  2460. #u179819_div {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:25px;
  2466. height:17px;
  2467. background:inherit;
  2468. background-color:rgba(255, 255, 255, 0);
  2469. border:none;
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:12px;
  2478. }
  2479. #u179819 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:794px;
  2483. top:819px;
  2484. width:25px;
  2485. height:17px;
  2486. display:flex;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. }
  2492. #u179819 .text {
  2493. position:absolute;
  2494. align-self:flex-start;
  2495. padding:0px 0px 0px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u179819_text {
  2500. border-width:0px;
  2501. white-space:nowrap;
  2502. text-transform:none;
  2503. }
  2504. #u179820_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:375px;
  2510. height:681px;
  2511. background:inherit;
  2512. background-color:rgba(242, 242, 242, 0.462745098039216);
  2513. border:none;
  2514. border-radius:0px;
  2515. -moz-box-shadow:none;
  2516. -webkit-box-shadow:none;
  2517. box-shadow:none;
  2518. }
  2519. #u179820 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:484px;
  2523. top:107px;
  2524. width:375px;
  2525. height:681px;
  2526. display:flex;
  2527. }
  2528. #u179820 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 2px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u179820_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u179821 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:0px;
  2547. height:0px;
  2548. }
  2549. #u179822_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:24px;
  2555. height:24px;
  2556. }
  2557. #u179822 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:706px;
  2561. top:792px;
  2562. width:24px;
  2563. height:24px;
  2564. display:flex;
  2565. font-size:8px;
  2566. }
  2567. #u179822 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u179822_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u179823_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:37px;
  2585. height:17px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 0);
  2588. border:none;
  2589. border-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. }
  2598. #u179823 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:700px;
  2602. top:817px;
  2603. width:37px;
  2604. height:17px;
  2605. display:flex;
  2606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:12px;
  2610. }
  2611. #u179823 .text {
  2612. position:absolute;
  2613. align-self:flex-start;
  2614. padding:0px 0px 0px 0px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u179823_text {
  2619. border-width:0px;
  2620. white-space:nowrap;
  2621. text-transform:none;
  2622. }
  2623. #u179824 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:0px;
  2629. height:0px;
  2630. }
  2631. #u179825_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:24px;
  2637. height:24px;
  2638. }
  2639. #u179825 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:612px;
  2643. top:792px;
  2644. width:24px;
  2645. height:24px;
  2646. display:flex;
  2647. font-size:8px;
  2648. }
  2649. #u179825 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u179825_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u179826_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:37px;
  2667. height:17px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 0);
  2670. border:none;
  2671. border-radius:0px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. }
  2680. #u179826 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:606px;
  2684. top:817px;
  2685. width:37px;
  2686. height:17px;
  2687. display:flex;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:12px;
  2692. }
  2693. #u179826 .text {
  2694. position:absolute;
  2695. align-self:flex-start;
  2696. padding:0px 0px 0px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u179826_text {
  2701. border-width:0px;
  2702. white-space:nowrap;
  2703. text-transform:none;
  2704. }
  2705. #u179827_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:375px;
  2711. height:732px;
  2712. background:inherit;
  2713. background-color:rgba(242, 242, 242, 0.996078431372549);
  2714. border:none;
  2715. border-top:0px;
  2716. border-radius:28px;
  2717. border-top-left-radius:0px;
  2718. border-top-right-radius:0px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. }
  2723. #u179827 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:484px;
  2727. top:107px;
  2728. width:375px;
  2729. height:732px;
  2730. display:flex;
  2731. }
  2732. #u179827 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 2px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u179827_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. visibility:hidden;
  2744. }
  2745. #u179828_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:375px;
  2751. height:40px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 1);
  2754. box-sizing:border-box;
  2755. border-width:1px;
  2756. border-style:solid;
  2757. border-color:rgba(215, 215, 215, 1);
  2758. border-left:0px;
  2759. border-top:0px;
  2760. border-right:0px;
  2761. border-radius:0px;
  2762. border-bottom-right-radius:0px;
  2763. border-bottom-left-radius:0px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. }
  2768. #u179828 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:484px;
  2772. top:67px;
  2773. width:375px;
  2774. height:40px;
  2775. display:flex;
  2776. }
  2777. #u179828 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u179828_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u179829_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:375px;
  2796. height:44px;
  2797. }
  2798. #u179829 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:484px;
  2802. top:24px;
  2803. width:375px;
  2804. height:44px;
  2805. display:flex;
  2806. }
  2807. #u179829 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u179829_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u179830 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:0px;
  2826. height:0px;
  2827. }
  2828. #u179831_div {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:88px;
  2834. height:32px;
  2835. background:inherit;
  2836. background-color:rgba(255, 255, 255, 1);
  2837. box-sizing:border-box;
  2838. border-width:1px;
  2839. border-style:solid;
  2840. border-color:rgba(242, 242, 242, 1);
  2841. border-radius:33px;
  2842. -moz-box-shadow:none;
  2843. -webkit-box-shadow:none;
  2844. box-shadow:none;
  2845. }
  2846. #u179831 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:761px;
  2850. top:71px;
  2851. width:88px;
  2852. height:32px;
  2853. display:flex;
  2854. }
  2855. #u179831 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u179831_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u179832 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:0px;
  2874. height:0px;
  2875. }
  2876. #u179833_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:18px;
  2882. height:18px;
  2883. }
  2884. #u179833 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:824px;
  2888. top:78px;
  2889. width:18px;
  2890. height:18px;
  2891. display:flex;
  2892. }
  2893. #u179833 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 2px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u179833_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u179834_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:6px;
  2912. height:6px;
  2913. }
  2914. #u179834 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:830px;
  2918. top:84px;
  2919. width:6px;
  2920. height:6px;
  2921. display:flex;
  2922. }
  2923. #u179834 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u179834_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. visibility:hidden;
  2935. }
  2936. #u179835 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:0px;
  2942. height:0px;
  2943. }
  2944. #u179836_img {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:5px;
  2950. height:5px;
  2951. }
  2952. #u179836 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:775px;
  2956. top:85px;
  2957. width:5px;
  2958. height:5px;
  2959. display:flex;
  2960. }
  2961. #u179836 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 2px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u179836_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u179837_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:5px;
  2980. height:5px;
  2981. }
  2982. #u179837 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:791px;
  2986. top:85px;
  2987. width:5px;
  2988. height:5px;
  2989. display:flex;
  2990. }
  2991. #u179837 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u179837_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u179838_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:7px;
  3010. height:7px;
  3011. }
  3012. #u179838 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:782px;
  3016. top:84px;
  3017. width:7px;
  3018. height:7px;
  3019. display:flex;
  3020. }
  3021. #u179838 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 2px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u179838_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u179839_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:19px;
  3040. height:2px;
  3041. }
  3042. #u179839 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:799px;
  3046. top:87px;
  3047. width:18px;
  3048. height:1px;
  3049. display:flex;
  3050. -webkit-transform:rotate(90deg);
  3051. -moz-transform:rotate(90deg);
  3052. -ms-transform:rotate(90deg);
  3053. transform:rotate(90deg);
  3054. }
  3055. #u179839 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 2px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u179839_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u179840_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:73px;
  3074. height:25px;
  3075. background:inherit;
  3076. background-color:rgba(255, 255, 255, 0);
  3077. border:none;
  3078. border-radius:0px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:18px;
  3086. color:#000000;
  3087. text-align:center;
  3088. }
  3089. #u179840 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:635px;
  3093. top:75px;
  3094. width:73px;
  3095. height:25px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:18px;
  3101. color:#000000;
  3102. text-align:center;
  3103. }
  3104. #u179840 .text {
  3105. position:absolute;
  3106. align-self:flex-start;
  3107. padding:0px 0px 0px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u179840_text {
  3112. border-width:0px;
  3113. white-space:nowrap;
  3114. text-transform:none;
  3115. }
  3116. #u179841_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:12px;
  3122. height:12px;
  3123. background:inherit;
  3124. background-color:rgba(255, 255, 255, 0);
  3125. box-sizing:border-box;
  3126. border-width:2px;
  3127. border-style:solid;
  3128. border-color:rgba(51, 51, 51, 1);
  3129. border-right:0px;
  3130. border-bottom:0px;
  3131. border-radius:0px;
  3132. border-top-right-radius:0px;
  3133. border-bottom-left-radius:0px;
  3134. -moz-box-shadow:none;
  3135. -webkit-box-shadow:none;
  3136. box-shadow:none;
  3137. }
  3138. #u179841 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:499px;
  3142. top:81px;
  3143. width:12px;
  3144. height:12px;
  3145. display:flex;
  3146. -webkit-transform:rotate(315deg);
  3147. -moz-transform:rotate(315deg);
  3148. -ms-transform:rotate(315deg);
  3149. transform:rotate(315deg);
  3150. }
  3151. #u179841 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u179841_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u179842_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:338px;
  3170. height:40px;
  3171. background:inherit;
  3172. background-color:rgba(0, 137, 254, 1);
  3173. border:none;
  3174. border-radius:63px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:14px;
  3182. color:#FFFFFF;
  3183. }
  3184. #u179842 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:504px;
  3188. top:789px;
  3189. width:338px;
  3190. height:40px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:14px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u179842 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u179842_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u179843_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:113px;
  3216. height:20px;
  3217. background:inherit;
  3218. background-color:rgba(255, 255, 255, 0);
  3219. border:none;
  3220. border-radius:0px;
  3221. -moz-box-shadow:none;
  3222. -webkit-box-shadow:none;
  3223. box-shadow:none;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. color:#000000;
  3228. }
  3229. #u179843 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:503px;
  3233. top:117px;
  3234. width:113px;
  3235. height:20px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. color:#000000;
  3241. }
  3242. #u179843 .text {
  3243. position:absolute;
  3244. align-self:flex-start;
  3245. padding:0px 0px 0px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u179843_text {
  3250. border-width:0px;
  3251. white-space:nowrap;
  3252. text-transform:none;
  3253. }
  3254. #u179844 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:0px;
  3260. height:0px;
  3261. }
  3262. #u179845_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:355px;
  3268. height:80px;
  3269. }
  3270. #u179845 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:494px;
  3274. top:147px;
  3275. width:355px;
  3276. height:80px;
  3277. display:flex;
  3278. }
  3279. #u179845 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u179845_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u179846_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:127px;
  3298. height:30px;
  3299. background:inherit;
  3300. background-color:rgba(255, 255, 255, 0);
  3301. border:none;
  3302. border-left:0px;
  3303. border-top:0px;
  3304. border-right:0px;
  3305. border-radius:0px;
  3306. border-bottom-right-radius:0px;
  3307. border-bottom-left-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:14px;
  3315. color:#7F7F7F;
  3316. line-height:30px;
  3317. }
  3318. #u179846 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:507px;
  3322. top:157px;
  3323. width:127px;
  3324. height:30px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:14px;
  3330. color:#7F7F7F;
  3331. line-height:30px;
  3332. }
  3333. #u179846 .text {
  3334. position:absolute;
  3335. align-self:flex-start;
  3336. padding:0px 0px 0px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u179846_text {
  3341. border-width:0px;
  3342. white-space:nowrap;
  3343. text-transform:none;
  3344. }
  3345. #u179847_div {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:141px;
  3351. height:30px;
  3352. background:inherit;
  3353. background-color:rgba(255, 255, 255, 0);
  3354. border:none;
  3355. border-left:0px;
  3356. border-top:0px;
  3357. border-right:0px;
  3358. border-radius:0px;
  3359. border-bottom-right-radius:0px;
  3360. border-bottom-left-radius:0px;
  3361. -moz-box-shadow:none;
  3362. -webkit-box-shadow:none;
  3363. box-shadow:none;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:14px;
  3368. color:#7F7F7F;
  3369. line-height:30px;
  3370. }
  3371. #u179847 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:507px;
  3375. top:187px;
  3376. width:141px;
  3377. height:30px;
  3378. display:flex;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#7F7F7F;
  3384. line-height:30px;
  3385. }
  3386. #u179847 .text {
  3387. position:absolute;
  3388. align-self:flex-start;
  3389. padding:0px 0px 0px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u179847_text {
  3394. border-width:0px;
  3395. white-space:nowrap;
  3396. text-transform:none;
  3397. }
  3398. #u179848 label {
  3399. left:0px;
  3400. width:100%;
  3401. }
  3402. #u179848_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:12px;
  3408. height:12px;
  3409. }
  3410. #u179848 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:825px;
  3414. top:165px;
  3415. width:24px;
  3416. height:16px;
  3417. display:flex;
  3418. }
  3419. #u179848 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:0px 2px 0px 2px;
  3423. box-sizing:border-box;
  3424. }
  3425. #u179848_img.selected {
  3426. }
  3427. #u179848.selected {
  3428. }
  3429. #u179848_img.disabled {
  3430. }
  3431. #u179848.disabled {
  3432. }
  3433. #u179848_img.selectedDisabled {
  3434. }
  3435. #u179848.selectedDisabled {
  3436. }
  3437. #u179848_text {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:14px;
  3441. top:0px;
  3442. width:8px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u179848_input {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:0px;
  3453. height:0px;
  3454. opacity:0;
  3455. }
  3456. #u179849 label {
  3457. left:0px;
  3458. width:100%;
  3459. }
  3460. #u179849_img {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:12px;
  3466. height:12px;
  3467. }
  3468. #u179849 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:825px;
  3472. top:197px;
  3473. width:24px;
  3474. height:16px;
  3475. display:flex;
  3476. }
  3477. #u179849 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:0px 2px 0px 2px;
  3481. box-sizing:border-box;
  3482. }
  3483. #u179849_img.selected {
  3484. }
  3485. #u179849.selected {
  3486. }
  3487. #u179849_img.disabled {
  3488. }
  3489. #u179849.disabled {
  3490. }
  3491. #u179849_img.selectedDisabled {
  3492. }
  3493. #u179849.selectedDisabled {
  3494. }
  3495. #u179849_text {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:14px;
  3499. top:0px;
  3500. width:8px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u179849_input {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:0px;
  3511. height:0px;
  3512. opacity:0;
  3513. }
  3514. #u179850_div {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:57px;
  3520. height:20px;
  3521. background:inherit;
  3522. background-color:rgba(255, 255, 255, 0);
  3523. border:none;
  3524. border-radius:0px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. color:#000000;
  3532. }
  3533. #u179850 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:503px;
  3537. top:237px;
  3538. width:57px;
  3539. height:20px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. color:#000000;
  3545. }
  3546. #u179850 .text {
  3547. position:absolute;
  3548. align-self:flex-start;
  3549. padding:0px 0px 0px 0px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u179850_text {
  3554. border-width:0px;
  3555. white-space:nowrap;
  3556. text-transform:none;
  3557. }
  3558. #u179851 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:0px;
  3564. height:0px;
  3565. }
  3566. #u179852_div {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:349px;
  3572. height:120px;
  3573. background:inherit;
  3574. background-color:rgba(255, 255, 255, 1);
  3575. box-sizing:border-box;
  3576. border-width:1px;
  3577. border-style:solid;
  3578. border-color:rgba(242, 242, 242, 1);
  3579. border-radius:3px;
  3580. -moz-box-shadow:none;
  3581. -webkit-box-shadow:none;
  3582. box-shadow:none;
  3583. }
  3584. #u179852 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:500px;
  3588. top:267px;
  3589. width:349px;
  3590. height:120px;
  3591. display:flex;
  3592. }
  3593. #u179852 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 2px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u179852_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u179853 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:0px;
  3612. height:0px;
  3613. }
  3614. #u179854_div {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:57px;
  3620. height:30px;
  3621. background:inherit;
  3622. background-color:rgba(255, 255, 255, 0);
  3623. border:none;
  3624. border-left:0px;
  3625. border-top:0px;
  3626. border-right:0px;
  3627. border-radius:0px;
  3628. border-bottom-right-radius:0px;
  3629. border-bottom-left-radius:0px;
  3630. -moz-box-shadow:none;
  3631. -webkit-box-shadow:none;
  3632. box-shadow:none;
  3633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:14px;
  3637. line-height:30px;
  3638. }
  3639. #u179854 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:514px;
  3643. top:277px;
  3644. width:57px;
  3645. height:30px;
  3646. display:flex;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:14px;
  3651. line-height:30px;
  3652. }
  3653. #u179854 .text {
  3654. position:absolute;
  3655. align-self:flex-start;
  3656. padding:0px 0px 0px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u179854_text {
  3661. border-width:0px;
  3662. white-space:nowrap;
  3663. text-transform:none;
  3664. }
  3665. #u179855_div {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:99px;
  3671. height:30px;
  3672. background:inherit;
  3673. background-color:rgba(255, 255, 255, 0);
  3674. border:none;
  3675. border-left:0px;
  3676. border-top:0px;
  3677. border-right:0px;
  3678. border-radius:0px;
  3679. border-bottom-right-radius:0px;
  3680. border-bottom-left-radius:0px;
  3681. -moz-box-shadow:none;
  3682. -webkit-box-shadow:none;
  3683. box-shadow:none;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:14px;
  3688. color:#AAAAAA;
  3689. line-height:30px;
  3690. }
  3691. #u179855 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:591px;
  3695. top:277px;
  3696. width:99px;
  3697. height:30px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. color:#AAAAAA;
  3704. line-height:30px;
  3705. }
  3706. #u179855 .text {
  3707. position:absolute;
  3708. align-self:flex-start;
  3709. padding:0px 0px 0px 0px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u179855_text {
  3714. border-width:0px;
  3715. white-space:nowrap;
  3716. text-transform:none;
  3717. }
  3718. #u179857_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:433px;
  3724. height:865px;
  3725. }
  3726. #u179857 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:913px;
  3730. top:0px;
  3731. width:433px;
  3732. height:865px;
  3733. display:flex;
  3734. }
  3735. #u179857 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 2px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u179857_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u179858_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:375px;
  3754. height:40px;
  3755. background:inherit;
  3756. background-color:rgba(255, 255, 255, 1);
  3757. box-sizing:border-box;
  3758. border-width:1px;
  3759. border-style:solid;
  3760. border-color:rgba(215, 215, 215, 1);
  3761. border-left:0px;
  3762. border-top:0px;
  3763. border-right:0px;
  3764. border-radius:0px;
  3765. border-bottom-right-radius:0px;
  3766. border-bottom-left-radius:0px;
  3767. -moz-box-shadow:none;
  3768. -webkit-box-shadow:none;
  3769. box-shadow:none;
  3770. }
  3771. #u179858 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:942px;
  3775. top:67px;
  3776. width:375px;
  3777. height:40px;
  3778. display:flex;
  3779. }
  3780. #u179858 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u179858_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u179859 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u179860_div {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:88px;
  3807. height:32px;
  3808. background:inherit;
  3809. background-color:rgba(255, 255, 255, 1);
  3810. box-sizing:border-box;
  3811. border-width:1px;
  3812. border-style:solid;
  3813. border-color:rgba(242, 242, 242, 1);
  3814. border-radius:33px;
  3815. -moz-box-shadow:none;
  3816. -webkit-box-shadow:none;
  3817. box-shadow:none;
  3818. }
  3819. #u179860 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:1222px;
  3823. top:71px;
  3824. width:88px;
  3825. height:32px;
  3826. display:flex;
  3827. }
  3828. #u179860 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 2px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u179860_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. visibility:hidden;
  3840. }
  3841. #u179861 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:0px;
  3847. height:0px;
  3848. }
  3849. #u179862_img {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:18px;
  3855. height:18px;
  3856. }
  3857. #u179862 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:1285px;
  3861. top:78px;
  3862. width:18px;
  3863. height:18px;
  3864. display:flex;
  3865. }
  3866. #u179862 .text {
  3867. position:absolute;
  3868. align-self:center;
  3869. padding:2px 2px 2px 2px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u179862_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. visibility:hidden;
  3878. }
  3879. #u179863_img {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:6px;
  3885. height:6px;
  3886. }
  3887. #u179863 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:1291px;
  3891. top:84px;
  3892. width:6px;
  3893. height:6px;
  3894. display:flex;
  3895. }
  3896. #u179863 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u179863_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u179864 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:0px;
  3915. height:0px;
  3916. }
  3917. #u179865_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:5px;
  3923. height:5px;
  3924. }
  3925. #u179865 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:1236px;
  3929. top:85px;
  3930. width:5px;
  3931. height:5px;
  3932. display:flex;
  3933. }
  3934. #u179865 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u179865_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u179866_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:5px;
  3953. height:5px;
  3954. }
  3955. #u179866 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1252px;
  3959. top:85px;
  3960. width:5px;
  3961. height:5px;
  3962. display:flex;
  3963. }
  3964. #u179866 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u179866_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u179867_img {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:7px;
  3983. height:7px;
  3984. }
  3985. #u179867 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:1243px;
  3989. top:84px;
  3990. width:7px;
  3991. height:7px;
  3992. display:flex;
  3993. }
  3994. #u179867 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 2px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u179867_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u179868_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:19px;
  4013. height:2px;
  4014. }
  4015. #u179868 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:1260px;
  4019. top:87px;
  4020. width:18px;
  4021. height:1px;
  4022. display:flex;
  4023. -webkit-transform:rotate(90deg);
  4024. -moz-transform:rotate(90deg);
  4025. -ms-transform:rotate(90deg);
  4026. transform:rotate(90deg);
  4027. }
  4028. #u179868 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u179868_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u179869_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:375px;
  4047. height:44px;
  4048. }
  4049. #u179869 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:942px;
  4053. top:24px;
  4054. width:375px;
  4055. height:44px;
  4056. display:flex;
  4057. }
  4058. #u179869 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u179869_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u179870_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:375px;
  4077. height:50px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 1);
  4080. box-sizing:border-box;
  4081. border-width:1px;
  4082. border-style:solid;
  4083. border-color:rgba(242, 242, 242, 1);
  4084. border-radius:26px;
  4085. border-top-left-radius:0px;
  4086. border-top-right-radius:0px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. }
  4091. #u179870 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:942px;
  4095. top:788px;
  4096. width:375px;
  4097. height:50px;
  4098. display:flex;
  4099. }
  4100. #u179870 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 2px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u179870_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u179871 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:0px;
  4119. height:0px;
  4120. }
  4121. #u179872_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:24px;
  4127. height:24px;
  4128. }
  4129. #u179872 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:982px;
  4133. top:792px;
  4134. width:24px;
  4135. height:24px;
  4136. display:flex;
  4137. font-size:8px;
  4138. }
  4139. #u179872 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 2px 2px 2px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u179872_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. }
  4151. #u179873_div {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:25px;
  4157. height:17px;
  4158. background:inherit;
  4159. background-color:rgba(255, 255, 255, 0);
  4160. border:none;
  4161. border-radius:0px;
  4162. -moz-box-shadow:none;
  4163. -webkit-box-shadow:none;
  4164. box-shadow:none;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. }
  4170. #u179873 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:982px;
  4174. top:817px;
  4175. width:25px;
  4176. height:17px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:12px;
  4182. }
  4183. #u179873 .text {
  4184. position:absolute;
  4185. align-self:flex-start;
  4186. padding:0px 0px 0px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u179873_text {
  4191. border-width:0px;
  4192. white-space:nowrap;
  4193. text-transform:none;
  4194. }
  4195. #u179874 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:0px;
  4201. height:0px;
  4202. }
  4203. #u179875_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:24px;
  4209. height:24px;
  4210. }
  4211. #u179875 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:1252px;
  4215. top:794px;
  4216. width:24px;
  4217. height:24px;
  4218. display:flex;
  4219. font-size:8px;
  4220. }
  4221. #u179875 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u179875_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. }
  4233. #u179876_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:25px;
  4239. height:17px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. }
  4252. #u179876 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:1252px;
  4256. top:819px;
  4257. width:25px;
  4258. height:17px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:12px;
  4264. }
  4265. #u179876 .text {
  4266. position:absolute;
  4267. align-self:flex-start;
  4268. padding:0px 0px 0px 0px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u179876_text {
  4273. border-width:0px;
  4274. white-space:nowrap;
  4275. text-transform:none;
  4276. }
  4277. #u179877_div {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:375px;
  4283. height:681px;
  4284. background:inherit;
  4285. background-color:rgba(242, 242, 242, 0.462745098039216);
  4286. border:none;
  4287. border-radius:0px;
  4288. -moz-box-shadow:none;
  4289. -webkit-box-shadow:none;
  4290. box-shadow:none;
  4291. }
  4292. #u179877 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:942px;
  4296. top:107px;
  4297. width:375px;
  4298. height:681px;
  4299. display:flex;
  4300. }
  4301. #u179877 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 2px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u179877_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u179878 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:0px;
  4320. height:0px;
  4321. }
  4322. #u179879_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:24px;
  4328. height:24px;
  4329. }
  4330. #u179879 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:1164px;
  4334. top:792px;
  4335. width:24px;
  4336. height:24px;
  4337. display:flex;
  4338. font-size:8px;
  4339. }
  4340. #u179879 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 2px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u179879_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. }
  4352. #u179880_div {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:37px;
  4358. height:17px;
  4359. background:inherit;
  4360. background-color:rgba(255, 255, 255, 0);
  4361. border:none;
  4362. border-radius:0px;
  4363. -moz-box-shadow:none;
  4364. -webkit-box-shadow:none;
  4365. box-shadow:none;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. }
  4371. #u179880 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:1158px;
  4375. top:817px;
  4376. width:37px;
  4377. height:17px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. }
  4384. #u179880 .text {
  4385. position:absolute;
  4386. align-self:flex-start;
  4387. padding:0px 0px 0px 0px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u179880_text {
  4392. border-width:0px;
  4393. white-space:nowrap;
  4394. text-transform:none;
  4395. }
  4396. #u179881 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:0px;
  4402. height:0px;
  4403. }
  4404. #u179882_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:24px;
  4410. height:24px;
  4411. }
  4412. #u179882 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:1070px;
  4416. top:792px;
  4417. width:24px;
  4418. height:24px;
  4419. display:flex;
  4420. font-size:8px;
  4421. }
  4422. #u179882 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 2px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u179882_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. }
  4434. #u179883_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:37px;
  4440. height:17px;
  4441. background:inherit;
  4442. background-color:rgba(255, 255, 255, 0);
  4443. border:none;
  4444. border-radius:0px;
  4445. -moz-box-shadow:none;
  4446. -webkit-box-shadow:none;
  4447. box-shadow:none;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. }
  4453. #u179883 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:1064px;
  4457. top:817px;
  4458. width:37px;
  4459. height:17px;
  4460. display:flex;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:12px;
  4465. }
  4466. #u179883 .text {
  4467. position:absolute;
  4468. align-self:flex-start;
  4469. padding:0px 0px 0px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u179883_text {
  4474. border-width:0px;
  4475. white-space:nowrap;
  4476. text-transform:none;
  4477. }
  4478. #u179884_div {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:375px;
  4484. height:732px;
  4485. background:inherit;
  4486. background-color:rgba(242, 242, 242, 0.996078431372549);
  4487. border:none;
  4488. border-top:0px;
  4489. border-radius:28px;
  4490. border-top-left-radius:0px;
  4491. border-top-right-radius:0px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. }
  4496. #u179884 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:942px;
  4500. top:107px;
  4501. width:375px;
  4502. height:732px;
  4503. display:flex;
  4504. }
  4505. #u179884 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u179884_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u179885_div {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:375px;
  4524. height:40px;
  4525. background:inherit;
  4526. background-color:rgba(255, 255, 255, 1);
  4527. box-sizing:border-box;
  4528. border-width:1px;
  4529. border-style:solid;
  4530. border-color:rgba(215, 215, 215, 1);
  4531. border-left:0px;
  4532. border-top:0px;
  4533. border-right:0px;
  4534. border-radius:0px;
  4535. border-bottom-right-radius:0px;
  4536. border-bottom-left-radius:0px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. }
  4541. #u179885 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:942px;
  4545. top:67px;
  4546. width:375px;
  4547. height:40px;
  4548. display:flex;
  4549. }
  4550. #u179885 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 2px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u179885_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u179886_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:375px;
  4569. height:44px;
  4570. }
  4571. #u179886 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:942px;
  4575. top:24px;
  4576. width:375px;
  4577. height:44px;
  4578. display:flex;
  4579. }
  4580. #u179886 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 2px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u179886_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u179887 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:0px;
  4599. height:0px;
  4600. }
  4601. #u179888_div {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:88px;
  4607. height:32px;
  4608. background:inherit;
  4609. background-color:rgba(255, 255, 255, 1);
  4610. box-sizing:border-box;
  4611. border-width:1px;
  4612. border-style:solid;
  4613. border-color:rgba(242, 242, 242, 1);
  4614. border-radius:33px;
  4615. -moz-box-shadow:none;
  4616. -webkit-box-shadow:none;
  4617. box-shadow:none;
  4618. }
  4619. #u179888 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1219px;
  4623. top:71px;
  4624. width:88px;
  4625. height:32px;
  4626. display:flex;
  4627. }
  4628. #u179888 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u179888_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u179889 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:0px;
  4647. height:0px;
  4648. }
  4649. #u179890_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:18px;
  4655. height:18px;
  4656. }
  4657. #u179890 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:1282px;
  4661. top:78px;
  4662. width:18px;
  4663. height:18px;
  4664. display:flex;
  4665. }
  4666. #u179890 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u179890_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u179891_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:6px;
  4685. height:6px;
  4686. }
  4687. #u179891 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:1288px;
  4691. top:84px;
  4692. width:6px;
  4693. height:6px;
  4694. display:flex;
  4695. }
  4696. #u179891 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 2px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u179891_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u179892 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:0px;
  4715. height:0px;
  4716. }
  4717. #u179893_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:5px;
  4723. height:5px;
  4724. }
  4725. #u179893 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:1233px;
  4729. top:85px;
  4730. width:5px;
  4731. height:5px;
  4732. display:flex;
  4733. }
  4734. #u179893 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u179893_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u179894_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:5px;
  4753. height:5px;
  4754. }
  4755. #u179894 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:1249px;
  4759. top:85px;
  4760. width:5px;
  4761. height:5px;
  4762. display:flex;
  4763. }
  4764. #u179894 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u179894_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u179895_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:7px;
  4783. height:7px;
  4784. }
  4785. #u179895 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:1240px;
  4789. top:84px;
  4790. width:7px;
  4791. height:7px;
  4792. display:flex;
  4793. }
  4794. #u179895 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 2px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u179895_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u179896_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:19px;
  4813. height:2px;
  4814. }
  4815. #u179896 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:1257px;
  4819. top:87px;
  4820. width:18px;
  4821. height:1px;
  4822. display:flex;
  4823. -webkit-transform:rotate(90deg);
  4824. -moz-transform:rotate(90deg);
  4825. -ms-transform:rotate(90deg);
  4826. transform:rotate(90deg);
  4827. }
  4828. #u179896 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u179896_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u179897_div {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:73px;
  4847. height:25px;
  4848. background:inherit;
  4849. background-color:rgba(255, 255, 255, 0);
  4850. border:none;
  4851. border-radius:0px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:18px;
  4859. color:#000000;
  4860. text-align:center;
  4861. }
  4862. #u179897 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:1093px;
  4866. top:75px;
  4867. width:73px;
  4868. height:25px;
  4869. display:flex;
  4870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4871. font-weight:400;
  4872. font-style:normal;
  4873. font-size:18px;
  4874. color:#000000;
  4875. text-align:center;
  4876. }
  4877. #u179897 .text {
  4878. position:absolute;
  4879. align-self:flex-start;
  4880. padding:0px 0px 0px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u179897_text {
  4885. border-width:0px;
  4886. white-space:nowrap;
  4887. text-transform:none;
  4888. }
  4889. #u179898_div {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:12px;
  4895. height:12px;
  4896. background:inherit;
  4897. background-color:rgba(255, 255, 255, 0);
  4898. box-sizing:border-box;
  4899. border-width:2px;
  4900. border-style:solid;
  4901. border-color:rgba(51, 51, 51, 1);
  4902. border-right:0px;
  4903. border-bottom:0px;
  4904. border-radius:0px;
  4905. border-top-right-radius:0px;
  4906. border-bottom-left-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. }
  4911. #u179898 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:957px;
  4915. top:81px;
  4916. width:12px;
  4917. height:12px;
  4918. display:flex;
  4919. -webkit-transform:rotate(315deg);
  4920. -moz-transform:rotate(315deg);
  4921. -ms-transform:rotate(315deg);
  4922. transform:rotate(315deg);
  4923. }
  4924. #u179898 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u179898_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u179899_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:338px;
  4943. height:40px;
  4944. background:inherit;
  4945. background-color:rgba(0, 137, 254, 1);
  4946. border:none;
  4947. border-radius:63px;
  4948. -moz-box-shadow:none;
  4949. -webkit-box-shadow:none;
  4950. box-shadow:none;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. color:#FFFFFF;
  4956. }
  4957. #u179899 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:962px;
  4961. top:789px;
  4962. width:338px;
  4963. height:40px;
  4964. display:flex;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. color:#FFFFFF;
  4970. }
  4971. #u179899 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:2px 2px 2px 2px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u179899_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. }
  4983. #u179900_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:113px;
  4989. height:20px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 0);
  4992. border:none;
  4993. border-radius:0px;
  4994. -moz-box-shadow:none;
  4995. -webkit-box-shadow:none;
  4996. box-shadow:none;
  4997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. color:#000000;
  5001. }
  5002. #u179900 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:961px;
  5006. top:147px;
  5007. width:113px;
  5008. height:20px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. color:#000000;
  5014. }
  5015. #u179900 .text {
  5016. position:absolute;
  5017. align-self:flex-start;
  5018. padding:0px 0px 0px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u179900_text {
  5023. border-width:0px;
  5024. white-space:nowrap;
  5025. text-transform:none;
  5026. }
  5027. #u179901 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:0px;
  5033. height:0px;
  5034. }
  5035. #u179902_img {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:355px;
  5041. height:80px;
  5042. }
  5043. #u179902 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:952px;
  5047. top:177px;
  5048. width:355px;
  5049. height:80px;
  5050. display:flex;
  5051. }
  5052. #u179902 .text {
  5053. position:absolute;
  5054. align-self:center;
  5055. padding:2px 2px 2px 2px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u179902_text {
  5060. border-width:0px;
  5061. word-wrap:break-word;
  5062. text-transform:none;
  5063. visibility:hidden;
  5064. }
  5065. #u179903_div {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:127px;
  5071. height:30px;
  5072. background:inherit;
  5073. background-color:rgba(255, 255, 255, 0);
  5074. border:none;
  5075. border-left:0px;
  5076. border-top:0px;
  5077. border-right:0px;
  5078. border-radius:0px;
  5079. border-bottom-right-radius:0px;
  5080. border-bottom-left-radius:0px;
  5081. -moz-box-shadow:none;
  5082. -webkit-box-shadow:none;
  5083. box-shadow:none;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. color:#7F7F7F;
  5089. line-height:30px;
  5090. }
  5091. #u179903 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:965px;
  5095. top:187px;
  5096. width:127px;
  5097. height:30px;
  5098. display:flex;
  5099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:14px;
  5103. color:#7F7F7F;
  5104. line-height:30px;
  5105. }
  5106. #u179903 .text {
  5107. position:absolute;
  5108. align-self:flex-start;
  5109. padding:0px 0px 0px 0px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u179903_text {
  5114. border-width:0px;
  5115. white-space:nowrap;
  5116. text-transform:none;
  5117. }
  5118. #u179904_div {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:141px;
  5124. height:30px;
  5125. background:inherit;
  5126. background-color:rgba(255, 255, 255, 0);
  5127. border:none;
  5128. border-left:0px;
  5129. border-top:0px;
  5130. border-right:0px;
  5131. border-radius:0px;
  5132. border-bottom-right-radius:0px;
  5133. border-bottom-left-radius:0px;
  5134. -moz-box-shadow:none;
  5135. -webkit-box-shadow:none;
  5136. box-shadow:none;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. color:#7F7F7F;
  5142. line-height:30px;
  5143. }
  5144. #u179904 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:965px;
  5148. top:217px;
  5149. width:141px;
  5150. height:30px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:14px;
  5156. color:#7F7F7F;
  5157. line-height:30px;
  5158. }
  5159. #u179904 .text {
  5160. position:absolute;
  5161. align-self:flex-start;
  5162. padding:0px 0px 0px 0px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u179904_text {
  5167. border-width:0px;
  5168. white-space:nowrap;
  5169. text-transform:none;
  5170. }
  5171. #u179905 label {
  5172. left:0px;
  5173. width:100%;
  5174. }
  5175. #u179905_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:12px;
  5181. height:12px;
  5182. }
  5183. #u179905 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:1283px;
  5187. top:195px;
  5188. width:24px;
  5189. height:16px;
  5190. display:flex;
  5191. }
  5192. #u179905 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 2px 0px 2px;
  5196. box-sizing:border-box;
  5197. }
  5198. #u179905_img.selected {
  5199. }
  5200. #u179905.selected {
  5201. }
  5202. #u179905_img.disabled {
  5203. }
  5204. #u179905.disabled {
  5205. }
  5206. #u179905_img.selectedDisabled {
  5207. }
  5208. #u179905.selectedDisabled {
  5209. }
  5210. #u179905_text {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:14px;
  5214. top:0px;
  5215. width:8px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u179905_input {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:0px;
  5226. height:0px;
  5227. opacity:0;
  5228. }
  5229. #u179906 label {
  5230. left:0px;
  5231. width:100%;
  5232. }
  5233. #u179906_img {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:12px;
  5239. height:12px;
  5240. }
  5241. #u179906 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:1283px;
  5245. top:227px;
  5246. width:24px;
  5247. height:16px;
  5248. display:flex;
  5249. }
  5250. #u179906 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:0px 2px 0px 2px;
  5254. box-sizing:border-box;
  5255. }
  5256. #u179906_img.selected {
  5257. }
  5258. #u179906.selected {
  5259. }
  5260. #u179906_img.disabled {
  5261. }
  5262. #u179906.disabled {
  5263. }
  5264. #u179906_img.selectedDisabled {
  5265. }
  5266. #u179906.selectedDisabled {
  5267. }
  5268. #u179906_text {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:14px;
  5272. top:0px;
  5273. width:8px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u179906_input {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:0px;
  5284. height:0px;
  5285. opacity:0;
  5286. }
  5287. #u179907_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:57px;
  5293. height:20px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. color:#000000;
  5305. }
  5306. #u179907 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:961px;
  5310. top:267px;
  5311. width:57px;
  5312. height:20px;
  5313. display:flex;
  5314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. color:#000000;
  5318. }
  5319. #u179907 .text {
  5320. position:absolute;
  5321. align-self:flex-start;
  5322. padding:0px 0px 0px 0px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u179907_text {
  5327. border-width:0px;
  5328. white-space:nowrap;
  5329. text-transform:none;
  5330. }
  5331. #u179908 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:0px;
  5337. height:0px;
  5338. }
  5339. #u179909_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:349px;
  5345. height:440px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 1);
  5348. box-sizing:border-box;
  5349. border-width:1px;
  5350. border-style:solid;
  5351. border-color:rgba(242, 242, 242, 1);
  5352. border-radius:3px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. }
  5357. #u179909 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:958px;
  5361. top:297px;
  5362. width:349px;
  5363. height:440px;
  5364. display:flex;
  5365. }
  5366. #u179909 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u179909_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u179910 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:0px;
  5385. height:0px;
  5386. }
  5387. #u179911_div {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:71px;
  5393. height:300px;
  5394. background:inherit;
  5395. background-color:rgba(255, 255, 255, 0);
  5396. border:none;
  5397. border-left:0px;
  5398. border-top:0px;
  5399. border-right:0px;
  5400. border-radius:0px;
  5401. border-bottom-right-radius:0px;
  5402. border-bottom-left-radius:0px;
  5403. -moz-box-shadow:none;
  5404. -webkit-box-shadow:none;
  5405. box-shadow:none;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:14px;
  5410. line-height:30px;
  5411. }
  5412. #u179911 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:972px;
  5416. top:307px;
  5417. width:71px;
  5418. height:300px;
  5419. display:flex;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:14px;
  5424. line-height:30px;
  5425. }
  5426. #u179911 .text {
  5427. position:absolute;
  5428. align-self:flex-start;
  5429. padding:0px 0px 0px 0px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u179911_text {
  5434. border-width:0px;
  5435. white-space:nowrap;
  5436. text-transform:none;
  5437. }
  5438. #u179912_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:113px;
  5444. height:240px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 0);
  5447. border:none;
  5448. border-left:0px;
  5449. border-top:0px;
  5450. border-right:0px;
  5451. border-radius:0px;
  5452. border-bottom-right-radius:0px;
  5453. border-bottom-left-radius:0px;
  5454. -moz-box-shadow:none;
  5455. -webkit-box-shadow:none;
  5456. box-shadow:none;
  5457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:14px;
  5461. color:#AAAAAA;
  5462. line-height:30px;
  5463. }
  5464. #u179912 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:1049px;
  5468. top:307px;
  5469. width:113px;
  5470. height:240px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:14px;
  5476. color:#AAAAAA;
  5477. line-height:30px;
  5478. }
  5479. #u179912 .text {
  5480. position:absolute;
  5481. align-self:flex-start;
  5482. padding:0px 0px 0px 0px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u179912_text {
  5487. border-width:0px;
  5488. white-space:nowrap;
  5489. text-transform:none;
  5490. }
  5491. #u179913_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:25px;
  5497. height:30px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 0);
  5500. border:none;
  5501. border-left:0px;
  5502. border-top:0px;
  5503. border-right:0px;
  5504. border-radius:0px;
  5505. border-bottom-right-radius:0px;
  5506. border-bottom-left-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:#0089FE;
  5515. line-height:30px;
  5516. }
  5517. #u179913 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:1264px;
  5521. top:457px;
  5522. width:25px;
  5523. height:30px;
  5524. display:flex;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:12px;
  5529. color:#0089FE;
  5530. line-height:30px;
  5531. }
  5532. #u179913 .text {
  5533. position:absolute;
  5534. align-self:flex-start;
  5535. padding:0px 0px 0px 0px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u179913_text {
  5540. border-width:0px;
  5541. white-space:nowrap;
  5542. text-transform:none;
  5543. }
  5544. #u179914_div {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:103px;
  5550. height:30px;
  5551. background:inherit;
  5552. background-color:rgba(255, 255, 255, 0);
  5553. border:none;
  5554. border-left:0px;
  5555. border-top:0px;
  5556. border-right:0px;
  5557. border-radius:0px;
  5558. border-bottom-right-radius:0px;
  5559. border-bottom-left-radius:0px;
  5560. -moz-box-shadow:none;
  5561. -webkit-box-shadow:none;
  5562. box-shadow:none;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:12px;
  5567. color:#D7D7D7;
  5568. line-height:30px;
  5569. }
  5570. #u179914 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:1053px;
  5574. top:578px;
  5575. width:103px;
  5576. height:30px;
  5577. display:flex;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:12px;
  5582. color:#D7D7D7;
  5583. line-height:30px;
  5584. }
  5585. #u179914 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:0px 0px 0px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u179914_text {
  5593. border-width:0px;
  5594. white-space:nowrap;
  5595. text-transform:none;
  5596. }
  5597. #u179915_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:60px;
  5603. height:60px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 1);
  5606. box-sizing:border-box;
  5607. border-width:1px;
  5608. border-style:solid;
  5609. border-color:rgba(121, 121, 121, 1);
  5610. border-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:11px;
  5618. }
  5619. #u179915 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:1045px;
  5623. top:614px;
  5624. width:60px;
  5625. height:60px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:11px;
  5631. }
  5632. #u179915 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u179915_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. }
  5644. #u179916_div {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:375px;
  5650. height:30px;
  5651. background:inherit;
  5652. background-color:rgba(255, 255, 128, 0.0980392156862745);
  5653. border:none;
  5654. border-left:0px;
  5655. border-top:0px;
  5656. border-right:0px;
  5657. border-radius:0px;
  5658. border-bottom-right-radius:0px;
  5659. border-bottom-left-radius:0px;
  5660. -moz-box-shadow:none;
  5661. -webkit-box-shadow:none;
  5662. box-shadow:none;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:12px;
  5667. color:#F59A23;
  5668. }
  5669. #u179916 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:942px;
  5673. top:107px;
  5674. width:375px;
  5675. height:30px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:12px;
  5681. color:#F59A23;
  5682. }
  5683. #u179916 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:0px 0px 0px 20px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u179916_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. }
  5695. #u179917 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:0px;
  5701. height:0px;
  5702. }
  5703. #u179918_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:60px;
  5709. height:60px;
  5710. }
  5711. #u179918 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:972px;
  5715. top:614px;
  5716. width:60px;
  5717. height:60px;
  5718. display:flex;
  5719. }
  5720. #u179918 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:2px 2px 2px 2px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u179918_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u179919_img {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:11px;
  5739. height:11px;
  5740. }
  5741. #u179919 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:1021px;
  5745. top:614px;
  5746. width:11px;
  5747. height:11px;
  5748. display:flex;
  5749. }
  5750. #u179919 .text {
  5751. position:absolute;
  5752. align-self:center;
  5753. padding:2px 2px 2px 2px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u179919_text {
  5758. border-width:0px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. visibility:hidden;
  5762. }
  5763. #u179921_img {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:433px;
  5769. height:865px;
  5770. }
  5771. #u179921 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:1377px;
  5775. top:0px;
  5776. width:433px;
  5777. height:865px;
  5778. display:flex;
  5779. }
  5780. #u179921 .text {
  5781. position:absolute;
  5782. align-self:center;
  5783. padding:2px 2px 2px 2px;
  5784. box-sizing:border-box;
  5785. width:100%;
  5786. }
  5787. #u179921_text {
  5788. border-width:0px;
  5789. word-wrap:break-word;
  5790. text-transform:none;
  5791. visibility:hidden;
  5792. }
  5793. #u179922_div {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:375px;
  5799. height:40px;
  5800. background:inherit;
  5801. background-color:rgba(255, 255, 255, 1);
  5802. box-sizing:border-box;
  5803. border-width:1px;
  5804. border-style:solid;
  5805. border-color:rgba(215, 215, 215, 1);
  5806. border-left:0px;
  5807. border-top:0px;
  5808. border-right:0px;
  5809. border-radius:0px;
  5810. border-bottom-right-radius:0px;
  5811. border-bottom-left-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. }
  5816. #u179922 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1406px;
  5820. top:67px;
  5821. width:375px;
  5822. height:40px;
  5823. display:flex;
  5824. }
  5825. #u179922 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 2px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u179922_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. visibility:hidden;
  5837. }
  5838. #u179923 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:0px;
  5844. height:0px;
  5845. }
  5846. #u179924_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:88px;
  5852. height:32px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 1);
  5855. box-sizing:border-box;
  5856. border-width:1px;
  5857. border-style:solid;
  5858. border-color:rgba(242, 242, 242, 1);
  5859. border-radius:33px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. }
  5864. #u179924 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1686px;
  5868. top:71px;
  5869. width:88px;
  5870. height:32px;
  5871. display:flex;
  5872. }
  5873. #u179924 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 2px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u179924_text {
  5881. border-width:0px;
  5882. word-wrap:break-word;
  5883. text-transform:none;
  5884. visibility:hidden;
  5885. }
  5886. #u179925 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:0px;
  5892. height:0px;
  5893. }
  5894. #u179926_img {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:18px;
  5900. height:18px;
  5901. }
  5902. #u179926 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:1749px;
  5906. top:78px;
  5907. width:18px;
  5908. height:18px;
  5909. display:flex;
  5910. }
  5911. #u179926 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:2px 2px 2px 2px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u179926_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. visibility:hidden;
  5923. }
  5924. #u179927_img {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:6px;
  5930. height:6px;
  5931. }
  5932. #u179927 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:1755px;
  5936. top:84px;
  5937. width:6px;
  5938. height:6px;
  5939. display:flex;
  5940. }
  5941. #u179927 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 2px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u179927_text {
  5949. border-width:0px;
  5950. word-wrap:break-word;
  5951. text-transform:none;
  5952. visibility:hidden;
  5953. }
  5954. #u179928 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:0px;
  5960. height:0px;
  5961. }
  5962. #u179929_img {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:5px;
  5968. height:5px;
  5969. }
  5970. #u179929 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:1700px;
  5974. top:85px;
  5975. width:5px;
  5976. height:5px;
  5977. display:flex;
  5978. }
  5979. #u179929 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u179929_text {
  5987. border-width:0px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u179930_img {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:5px;
  5998. height:5px;
  5999. }
  6000. #u179930 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:1716px;
  6004. top:85px;
  6005. width:5px;
  6006. height:5px;
  6007. display:flex;
  6008. }
  6009. #u179930 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u179930_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. visibility:hidden;
  6021. }
  6022. #u179931_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:7px;
  6028. height:7px;
  6029. }
  6030. #u179931 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:1707px;
  6034. top:84px;
  6035. width:7px;
  6036. height:7px;
  6037. display:flex;
  6038. }
  6039. #u179931 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 2px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u179931_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u179932_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:19px;
  6058. height:2px;
  6059. }
  6060. #u179932 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:1724px;
  6064. top:87px;
  6065. width:18px;
  6066. height:1px;
  6067. display:flex;
  6068. -webkit-transform:rotate(90deg);
  6069. -moz-transform:rotate(90deg);
  6070. -ms-transform:rotate(90deg);
  6071. transform:rotate(90deg);
  6072. }
  6073. #u179932 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 2px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u179932_text {
  6081. border-width:0px;
  6082. word-wrap:break-word;
  6083. text-transform:none;
  6084. visibility:hidden;
  6085. }
  6086. #u179933_img {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:375px;
  6092. height:44px;
  6093. }
  6094. #u179933 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:1406px;
  6098. top:24px;
  6099. width:375px;
  6100. height:44px;
  6101. display:flex;
  6102. }
  6103. #u179933 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u179933_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u179934_div {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:375px;
  6122. height:50px;
  6123. background:inherit;
  6124. background-color:rgba(255, 255, 255, 1);
  6125. box-sizing:border-box;
  6126. border-width:1px;
  6127. border-style:solid;
  6128. border-color:rgba(242, 242, 242, 1);
  6129. border-radius:26px;
  6130. border-top-left-radius:0px;
  6131. border-top-right-radius:0px;
  6132. -moz-box-shadow:none;
  6133. -webkit-box-shadow:none;
  6134. box-shadow:none;
  6135. }
  6136. #u179934 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:1406px;
  6140. top:788px;
  6141. width:375px;
  6142. height:50px;
  6143. display:flex;
  6144. }
  6145. #u179934 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u179934_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u179935 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:0px;
  6164. height:0px;
  6165. }
  6166. #u179936_img {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:24px;
  6172. height:24px;
  6173. }
  6174. #u179936 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:1446px;
  6178. top:792px;
  6179. width:24px;
  6180. height:24px;
  6181. display:flex;
  6182. font-size:8px;
  6183. }
  6184. #u179936 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 2px 2px 2px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u179936_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. }
  6196. #u179937_div {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:25px;
  6202. height:17px;
  6203. background:inherit;
  6204. background-color:rgba(255, 255, 255, 0);
  6205. border:none;
  6206. border-radius:0px;
  6207. -moz-box-shadow:none;
  6208. -webkit-box-shadow:none;
  6209. box-shadow:none;
  6210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:12px;
  6214. }
  6215. #u179937 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:1446px;
  6219. top:817px;
  6220. width:25px;
  6221. height:17px;
  6222. display:flex;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:12px;
  6227. }
  6228. #u179937 .text {
  6229. position:absolute;
  6230. align-self:flex-start;
  6231. padding:0px 0px 0px 0px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u179937_text {
  6236. border-width:0px;
  6237. white-space:nowrap;
  6238. text-transform:none;
  6239. }
  6240. #u179938 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:0px;
  6246. height:0px;
  6247. }
  6248. #u179939_img {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:24px;
  6254. height:24px;
  6255. }
  6256. #u179939 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:1716px;
  6260. top:794px;
  6261. width:24px;
  6262. height:24px;
  6263. display:flex;
  6264. font-size:8px;
  6265. }
  6266. #u179939 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u179939_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u179940_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:25px;
  6284. height:17px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 0);
  6287. border:none;
  6288. border-radius:0px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:12px;
  6296. }
  6297. #u179940 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:1716px;
  6301. top:819px;
  6302. width:25px;
  6303. height:17px;
  6304. display:flex;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:12px;
  6309. }
  6310. #u179940 .text {
  6311. position:absolute;
  6312. align-self:flex-start;
  6313. padding:0px 0px 0px 0px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u179940_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u179941_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:375px;
  6328. height:681px;
  6329. background:inherit;
  6330. background-color:rgba(242, 242, 242, 0.462745098039216);
  6331. border:none;
  6332. border-radius:0px;
  6333. -moz-box-shadow:none;
  6334. -webkit-box-shadow:none;
  6335. box-shadow:none;
  6336. }
  6337. #u179941 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:1406px;
  6341. top:107px;
  6342. width:375px;
  6343. height:681px;
  6344. display:flex;
  6345. }
  6346. #u179941 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:2px 2px 2px 2px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u179941_text {
  6354. border-width:0px;
  6355. word-wrap:break-word;
  6356. text-transform:none;
  6357. visibility:hidden;
  6358. }
  6359. #u179942 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:0px;
  6365. height:0px;
  6366. }
  6367. #u179943_img {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:24px;
  6373. height:24px;
  6374. }
  6375. #u179943 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:1628px;
  6379. top:792px;
  6380. width:24px;
  6381. height:24px;
  6382. display:flex;
  6383. font-size:8px;
  6384. }
  6385. #u179943 .text {
  6386. position:absolute;
  6387. align-self:center;
  6388. padding:2px 2px 2px 2px;
  6389. box-sizing:border-box;
  6390. width:100%;
  6391. }
  6392. #u179943_text {
  6393. border-width:0px;
  6394. word-wrap:break-word;
  6395. text-transform:none;
  6396. }
  6397. #u179944_div {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:37px;
  6403. height:17px;
  6404. background:inherit;
  6405. background-color:rgba(255, 255, 255, 0);
  6406. border:none;
  6407. border-radius:0px;
  6408. -moz-box-shadow:none;
  6409. -webkit-box-shadow:none;
  6410. box-shadow:none;
  6411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:12px;
  6415. }
  6416. #u179944 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:1622px;
  6420. top:817px;
  6421. width:37px;
  6422. height:17px;
  6423. display:flex;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. }
  6429. #u179944 .text {
  6430. position:absolute;
  6431. align-self:flex-start;
  6432. padding:0px 0px 0px 0px;
  6433. box-sizing:border-box;
  6434. width:100%;
  6435. }
  6436. #u179944_text {
  6437. border-width:0px;
  6438. white-space:nowrap;
  6439. text-transform:none;
  6440. }
  6441. #u179945 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:0px;
  6447. height:0px;
  6448. }
  6449. #u179946_img {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:24px;
  6455. height:24px;
  6456. }
  6457. #u179946 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:1534px;
  6461. top:792px;
  6462. width:24px;
  6463. height:24px;
  6464. display:flex;
  6465. font-size:8px;
  6466. }
  6467. #u179946 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 2px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u179946_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. }
  6479. #u179947_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:37px;
  6485. height:17px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 0);
  6488. border:none;
  6489. border-radius:0px;
  6490. -moz-box-shadow:none;
  6491. -webkit-box-shadow:none;
  6492. box-shadow:none;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:12px;
  6497. }
  6498. #u179947 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:1528px;
  6502. top:817px;
  6503. width:37px;
  6504. height:17px;
  6505. display:flex;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:12px;
  6510. }
  6511. #u179947 .text {
  6512. position:absolute;
  6513. align-self:flex-start;
  6514. padding:0px 0px 0px 0px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u179947_text {
  6519. border-width:0px;
  6520. white-space:nowrap;
  6521. text-transform:none;
  6522. }
  6523. #u179948_div {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:375px;
  6529. height:732px;
  6530. background:inherit;
  6531. background-color:rgba(242, 242, 242, 0.996078431372549);
  6532. border:none;
  6533. border-top:0px;
  6534. border-radius:28px;
  6535. border-top-left-radius:0px;
  6536. border-top-right-radius:0px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. }
  6541. #u179948 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:1406px;
  6545. top:107px;
  6546. width:375px;
  6547. height:732px;
  6548. display:flex;
  6549. }
  6550. #u179948 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:2px 2px 2px 2px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u179948_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. visibility:hidden;
  6562. }
  6563. #u179949_div {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:375px;
  6569. height:40px;
  6570. background:inherit;
  6571. background-color:rgba(255, 255, 255, 1);
  6572. box-sizing:border-box;
  6573. border-width:1px;
  6574. border-style:solid;
  6575. border-color:rgba(215, 215, 215, 1);
  6576. border-left:0px;
  6577. border-top:0px;
  6578. border-right:0px;
  6579. border-radius:0px;
  6580. border-bottom-right-radius:0px;
  6581. border-bottom-left-radius:0px;
  6582. -moz-box-shadow:none;
  6583. -webkit-box-shadow:none;
  6584. box-shadow:none;
  6585. }
  6586. #u179949 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:1406px;
  6590. top:67px;
  6591. width:375px;
  6592. height:40px;
  6593. display:flex;
  6594. }
  6595. #u179949 .text {
  6596. position:absolute;
  6597. align-self:center;
  6598. padding:2px 2px 2px 2px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u179949_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. visibility:hidden;
  6607. }
  6608. #u179950_img {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:375px;
  6614. height:44px;
  6615. }
  6616. #u179950 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1406px;
  6620. top:24px;
  6621. width:375px;
  6622. height:44px;
  6623. display:flex;
  6624. }
  6625. #u179950 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u179950_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u179951 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:0px;
  6644. height:0px;
  6645. }
  6646. #u179952_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:88px;
  6652. height:32px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 1);
  6655. box-sizing:border-box;
  6656. border-width:1px;
  6657. border-style:solid;
  6658. border-color:rgba(242, 242, 242, 1);
  6659. border-radius:33px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. }
  6664. #u179952 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:1683px;
  6668. top:71px;
  6669. width:88px;
  6670. height:32px;
  6671. display:flex;
  6672. }
  6673. #u179952 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u179952_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u179953 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:0px;
  6692. height:0px;
  6693. }
  6694. #u179954_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:18px;
  6700. height:18px;
  6701. }
  6702. #u179954 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1746px;
  6706. top:78px;
  6707. width:18px;
  6708. height:18px;
  6709. display:flex;
  6710. }
  6711. #u179954 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u179954_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u179955_img {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:6px;
  6730. height:6px;
  6731. }
  6732. #u179955 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:1752px;
  6736. top:84px;
  6737. width:6px;
  6738. height:6px;
  6739. display:flex;
  6740. }
  6741. #u179955 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u179955_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. visibility:hidden;
  6753. }
  6754. #u179956 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:0px;
  6760. height:0px;
  6761. }
  6762. #u179957_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:5px;
  6768. height:5px;
  6769. }
  6770. #u179957 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:1697px;
  6774. top:85px;
  6775. width:5px;
  6776. height:5px;
  6777. display:flex;
  6778. }
  6779. #u179957 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 2px 2px 2px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u179957_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u179958_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:5px;
  6798. height:5px;
  6799. }
  6800. #u179958 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:1713px;
  6804. top:85px;
  6805. width:5px;
  6806. height:5px;
  6807. display:flex;
  6808. }
  6809. #u179958 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 2px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u179958_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u179959_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:7px;
  6828. height:7px;
  6829. }
  6830. #u179959 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1704px;
  6834. top:84px;
  6835. width:7px;
  6836. height:7px;
  6837. display:flex;
  6838. }
  6839. #u179959 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u179959_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u179960_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:19px;
  6858. height:2px;
  6859. }
  6860. #u179960 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1721px;
  6864. top:87px;
  6865. width:18px;
  6866. height:1px;
  6867. display:flex;
  6868. -webkit-transform:rotate(90deg);
  6869. -moz-transform:rotate(90deg);
  6870. -ms-transform:rotate(90deg);
  6871. transform:rotate(90deg);
  6872. }
  6873. #u179960 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:2px 2px 2px 2px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u179960_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u179961_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:73px;
  6892. height:25px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. border:none;
  6896. border-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:18px;
  6904. color:#000000;
  6905. text-align:center;
  6906. }
  6907. #u179961 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:1557px;
  6911. top:75px;
  6912. width:73px;
  6913. height:25px;
  6914. display:flex;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:18px;
  6919. color:#000000;
  6920. text-align:center;
  6921. }
  6922. #u179961 .text {
  6923. position:absolute;
  6924. align-self:flex-start;
  6925. padding:0px 0px 0px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u179961_text {
  6930. border-width:0px;
  6931. white-space:nowrap;
  6932. text-transform:none;
  6933. }
  6934. #u179962_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:12px;
  6940. height:12px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. box-sizing:border-box;
  6944. border-width:2px;
  6945. border-style:solid;
  6946. border-color:rgba(51, 51, 51, 1);
  6947. border-right:0px;
  6948. border-bottom:0px;
  6949. border-radius:0px;
  6950. border-top-right-radius:0px;
  6951. border-bottom-left-radius:0px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. }
  6956. #u179962 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:1421px;
  6960. top:81px;
  6961. width:12px;
  6962. height:12px;
  6963. display:flex;
  6964. -webkit-transform:rotate(315deg);
  6965. -moz-transform:rotate(315deg);
  6966. -ms-transform:rotate(315deg);
  6967. transform:rotate(315deg);
  6968. }
  6969. #u179962 .text {
  6970. position:absolute;
  6971. align-self:center;
  6972. padding:2px 2px 2px 2px;
  6973. box-sizing:border-box;
  6974. width:100%;
  6975. }
  6976. #u179962_text {
  6977. border-width:0px;
  6978. word-wrap:break-word;
  6979. text-transform:none;
  6980. visibility:hidden;
  6981. }
  6982. #u179963_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:167px;
  6988. height:40px;
  6989. background:inherit;
  6990. background-color:rgba(0, 137, 254, 1);
  6991. border:none;
  6992. border-radius:63px;
  6993. -moz-box-shadow:none;
  6994. -webkit-box-shadow:none;
  6995. box-shadow:none;
  6996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6997. font-weight:400;
  6998. font-style:normal;
  6999. font-size:14px;
  7000. color:#FFFFFF;
  7001. }
  7002. #u179963 {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:1426px;
  7006. top:789px;
  7007. width:167px;
  7008. height:40px;
  7009. display:flex;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:14px;
  7014. color:#FFFFFF;
  7015. }
  7016. #u179963 .text {
  7017. position:absolute;
  7018. align-self:center;
  7019. padding:2px 2px 2px 2px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u179963_text {
  7024. border-width:0px;
  7025. word-wrap:break-word;
  7026. text-transform:none;
  7027. }
  7028. #u179964_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:57px;
  7034. height:20px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. color:#000000;
  7046. }
  7047. #u179964 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:1425px;
  7051. top:118px;
  7052. width:57px;
  7053. height:20px;
  7054. display:flex;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. color:#000000;
  7059. }
  7060. #u179964 .text {
  7061. position:absolute;
  7062. align-self:flex-start;
  7063. padding:0px 0px 0px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u179964_text {
  7068. border-width:0px;
  7069. white-space:nowrap;
  7070. text-transform:none;
  7071. }
  7072. #u179965 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:0px;
  7078. height:0px;
  7079. }
  7080. #u179966_div {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:349px;
  7086. height:440px;
  7087. background:inherit;
  7088. background-color:rgba(255, 255, 255, 1);
  7089. box-sizing:border-box;
  7090. border-width:1px;
  7091. border-style:solid;
  7092. border-color:rgba(242, 242, 242, 1);
  7093. border-radius:3px;
  7094. -moz-box-shadow:none;
  7095. -webkit-box-shadow:none;
  7096. box-shadow:none;
  7097. }
  7098. #u179966 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:1422px;
  7102. top:148px;
  7103. width:349px;
  7104. height:440px;
  7105. display:flex;
  7106. }
  7107. #u179966 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u179966_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. visibility:hidden;
  7119. }
  7120. #u179967 {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:0px;
  7126. height:0px;
  7127. }
  7128. #u179968_div {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:71px;
  7134. height:300px;
  7135. background:inherit;
  7136. background-color:rgba(255, 255, 255, 0);
  7137. border:none;
  7138. border-left:0px;
  7139. border-top:0px;
  7140. border-right:0px;
  7141. border-radius:0px;
  7142. border-bottom-right-radius:0px;
  7143. border-bottom-left-radius:0px;
  7144. -moz-box-shadow:none;
  7145. -webkit-box-shadow:none;
  7146. box-shadow:none;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. line-height:30px;
  7152. }
  7153. #u179968 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:1436px;
  7157. top:158px;
  7158. width:71px;
  7159. height:300px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:14px;
  7165. line-height:30px;
  7166. }
  7167. #u179968 .text {
  7168. position:absolute;
  7169. align-self:flex-start;
  7170. padding:0px 0px 0px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u179968_text {
  7175. border-width:0px;
  7176. white-space:nowrap;
  7177. text-transform:none;
  7178. }
  7179. #u179969_div {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:113px;
  7185. height:240px;
  7186. background:inherit;
  7187. background-color:rgba(255, 255, 255, 0);
  7188. border:none;
  7189. border-left:0px;
  7190. border-top:0px;
  7191. border-right:0px;
  7192. border-radius:0px;
  7193. border-bottom-right-radius:0px;
  7194. border-bottom-left-radius:0px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:14px;
  7202. color:#AAAAAA;
  7203. line-height:30px;
  7204. }
  7205. #u179969 {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:1513px;
  7209. top:158px;
  7210. width:113px;
  7211. height:240px;
  7212. display:flex;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:14px;
  7217. color:#AAAAAA;
  7218. line-height:30px;
  7219. }
  7220. #u179969 .text {
  7221. position:absolute;
  7222. align-self:flex-start;
  7223. padding:0px 0px 0px 0px;
  7224. box-sizing:border-box;
  7225. width:100%;
  7226. }
  7227. #u179969_text {
  7228. border-width:0px;
  7229. white-space:nowrap;
  7230. text-transform:none;
  7231. }
  7232. #u179970_div {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:25px;
  7238. height:30px;
  7239. background:inherit;
  7240. background-color:rgba(255, 255, 255, 0);
  7241. border:none;
  7242. border-left:0px;
  7243. border-top:0px;
  7244. border-right:0px;
  7245. border-radius:0px;
  7246. border-bottom-right-radius:0px;
  7247. border-bottom-left-radius:0px;
  7248. -moz-box-shadow:none;
  7249. -webkit-box-shadow:none;
  7250. box-shadow:none;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:12px;
  7255. color:#0089FE;
  7256. line-height:30px;
  7257. }
  7258. #u179970 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:1728px;
  7262. top:308px;
  7263. width:25px;
  7264. height:30px;
  7265. display:flex;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:12px;
  7270. color:#0089FE;
  7271. line-height:30px;
  7272. }
  7273. #u179970 .text {
  7274. position:absolute;
  7275. align-self:flex-start;
  7276. padding:0px 0px 0px 0px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u179970_text {
  7281. border-width:0px;
  7282. white-space:nowrap;
  7283. text-transform:none;
  7284. }
  7285. #u179971_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:103px;
  7291. height:30px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 0);
  7294. border:none;
  7295. border-left:0px;
  7296. border-top:0px;
  7297. border-right:0px;
  7298. border-radius:0px;
  7299. border-bottom-right-radius:0px;
  7300. border-bottom-left-radius:0px;
  7301. -moz-box-shadow:none;
  7302. -webkit-box-shadow:none;
  7303. box-shadow:none;
  7304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:12px;
  7308. color:#D7D7D7;
  7309. line-height:30px;
  7310. }
  7311. #u179971 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:1517px;
  7315. top:429px;
  7316. width:103px;
  7317. height:30px;
  7318. display:flex;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:12px;
  7323. color:#D7D7D7;
  7324. line-height:30px;
  7325. }
  7326. #u179971 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:0px 0px 0px 0px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u179971_text {
  7334. border-width:0px;
  7335. white-space:nowrap;
  7336. text-transform:none;
  7337. }
  7338. #u179972_div {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:60px;
  7344. height:60px;
  7345. background:inherit;
  7346. background-color:rgba(255, 255, 255, 1);
  7347. box-sizing:border-box;
  7348. border-width:1px;
  7349. border-style:solid;
  7350. border-color:rgba(121, 121, 121, 1);
  7351. border-radius:0px;
  7352. -moz-box-shadow:none;
  7353. -webkit-box-shadow:none;
  7354. box-shadow:none;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:11px;
  7359. }
  7360. #u179972 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:1442px;
  7364. top:465px;
  7365. width:60px;
  7366. height:60px;
  7367. display:flex;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:11px;
  7372. }
  7373. #u179972 .text {
  7374. position:absolute;
  7375. align-self:center;
  7376. padding:2px 2px 2px 2px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u179972_text {
  7381. border-width:0px;
  7382. word-wrap:break-word;
  7383. text-transform:none;
  7384. }
  7385. #u179973_div {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:167px;
  7391. height:40px;
  7392. background:inherit;
  7393. background-color:rgba(0, 137, 254, 1);
  7394. border:none;
  7395. border-radius:63px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:14px;
  7403. color:#FFFFFF;
  7404. }
  7405. #u179973 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:1604px;
  7409. top:789px;
  7410. width:167px;
  7411. height:40px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:14px;
  7417. color:#FFFFFF;
  7418. }
  7419. #u179973 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:2px 2px 2px 2px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u179973_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. }