styles.css 184 KB

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